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

# Connect your machine

> Link your computer to Notiky as a runtime so agents can execute tasks locally — install the CLI, start the daemon, and verify supported AI providers.

Agents execute on **your machine** through the Notiky CLI and daemon. This page covers the minimum setup; power users can follow the full [CLI install guide](/cli/installation).

<Frame>
  <img src="https://mintcdn.com/notiky-mintlify-1bfaa373/rUBkzlP36lq4vgqa/images/diagrams/runtime-flow.svg?fit=max&auto=format&n=rUBkzlP36lq4vgqa&q=85&s=d964b38b5157ecde136f60700f6a387a" alt="CLI daemon connects machine to Notiky Cloud" width="920" height="280" data-path="images/diagrams/runtime-flow.svg" />
</Frame>

***

## One-command setup

```bash theme={null}
curl -fsSL https://get.notiky.com | bash && notiky setup
```

`notiky setup` logs you into Notiky Cloud, discovers your workspaces, and starts the daemon.

Prefer an agent-driven install? Use [Setup with AI](/developers/setup-with-ai).

***

## Verify

```bash theme={null}
notiky daemon status
notiky daemon status --output json
```

You should see:

* Status: **running**
* Agent CLIs detected among: `claude`, `codex`, `opencode`, `cursor-agent`, `copilot`, `openclaw`, `hermes`, `gemini`, `pi`
* At least one **workspace** watched

In the web app, open **Settings → Runtimes** — your machine should appear as active.

***

## Install an agent provider

The daemon runs whatever coding agent CLIs you have installed. Install at least one:

* [Claude Code](https://docs.anthropic.com/en/docs/claude-code)
* [Codex](https://github.com/openai/codex)
* [Cursor Agent](https://cursor.com) (`cursor-agent` on PATH)
* [Gemini CLI](https://github.com/google-gemini/gemini-cli)
* OpenCode, Copilot, OpenClaw, Hermes, or Pi on your PATH

After installing a new CLI:

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

***

## Self-hosted

Connecting to your own Notiky instance? Set URLs before login:

```bash theme={null}
notiky config set app_url https://app.example.com
notiky config set server_url wss://api.example.com/ws
notiky login
notiky daemon start
```

***

## Full reference

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

  <Card title="CLI reference" href="/cli/reference" />

  <Card title="Troubleshooting" href="/troubleshooting" />

  <Card title="Contributing on GitHub" href="https://github.com/notiky/notiky/blob/main/CONTRIBUTING.md" />
</CardGroup>
