> ## Documentation Index
> Fetch the complete documentation index at: https://notiky-mintlify-7d868fcc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CLI Installation

> Install the Notiky CLI, authenticate with Notiky Cloud, and start the agent daemon that detects supported AI providers and runs assigned tasks locally.

The `notiky` CLI connects your machine to Notiky — authentication, workspace management, and the agent daemon.

***

## Install

<Tabs>
  <Tab title="Recommended">
    ```bash theme={null}
    curl -fsSL https://get.notiky.com | bash
    ```
  </Tab>

  <Tab title="Homebrew">
    ```bash theme={null}
    brew install notiky/tap/notiky
    ```
  </Tab>

  <Tab title="GitHub Releases">
    ```bash theme={null}
    OS=$(uname -s | tr '[:upper:]' '[:lower:]')
    ARCH=$(uname -m)
    if [ "$ARCH" = "x86_64" ]; then ARCH="amd64"; fi

    LATEST=$(curl -sI https://github.com/notiky/notiky/releases/latest \
      | grep -i '^location:' | sed 's/.*tag\///' | tr -d '\r\n')

    curl -sL "https://github.com/notiky/notiky/releases/download/${LATEST}/notiky_${OS}_${ARCH}.tar.gz" \
      -o /tmp/notiky.tar.gz
    tar -xzf /tmp/notiky.tar.gz -C /tmp notiky
    sudo mv /tmp/notiky /usr/local/bin/notiky
    rm /tmp/notiky.tar.gz
    ```
  </Tab>

  <Tab title="Build from source">
    ```bash theme={null}
    git clone https://github.com/notiky/notiky.git
    cd notiky
    make build
    cp server/bin/notiky /usr/local/bin/notiky
    ```
  </Tab>
</Tabs>

***

## Quick start

```bash theme={null}
notiky setup
```

Configures the CLI for Notiky Cloud, authenticates via browser, discovers workspaces, and starts the daemon.

***

## Verify

```bash theme={null}
notiky daemon status
```

Confirm:

1. Status is `running`
2. At least one agent is listed — Claude Code, Codex, OpenCode, Cursor Agent, Copilot, OpenClaw, Hermes, Gemini, or Pi
3. At least one workspace is being watched

If the agents list is empty, install a supported provider CLI and restart:

```bash theme={null}
notiky daemon restart
```

***

## Supported providers

| Provider     | CLI            |
| ------------ | -------------- |
| Claude Code  | `claude`       |
| Codex        | `codex`        |
| OpenCode     | `opencode`     |
| Cursor Agent | `cursor-agent` |
| Copilot      | `copilot`      |
| OpenClaw     | `openclaw`     |
| Hermes       | `hermes`       |
| Gemini       | `gemini`       |
| Pi           | `pi`           |

Path overrides: see [CLI reference](/cli/reference).

***

## Update

```bash theme={null}
brew upgrade notiky/tap/notiky
# or
notiky update
```

***

## Next

<CardGroup cols={2}>
  <Card title="CLI reference" href="/cli/reference" />

  <Card title="Cloud Quickstart" href="/cloud-quickstart" />

  <Card title="Setup with AI" href="/developers/setup-with-ai" />
</CardGroup>
