> ## Documentation Index
> Fetch the complete documentation index at: https://docs.runaether.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# aether claude-code

> Connect Claude Code provider auth with a setup token

Manage authentication for the Claude Code agent provider. Connecting runs `claude setup-token` locally and stores the resulting setup token so the Claude Code agent can run headless in Aether workspaces. See [connect agent providers](/guides/connect-agent-providers).

<Note>
  `connect` requires the Claude Code CLI on your machine. If it is missing, install it with `npm install -g @anthropic-ai/claude-code`, then rerun the command.
</Note>

## Usage

```bash theme={null}
aether claude-code <subcommand> [flags]
```

## Subcommands

| Subcommand   | Description                                  |
| ------------ | -------------------------------------------- |
| `connect`    | Run `claude setup-token` and store the token |
| `status`     | Show Claude Code auth status                 |
| `disconnect` | Remove Claude Code auth                      |

## aether claude-code connect

Runs `claude setup-token`, captures the printed setup token, and uploads it. Follow the prompts from the Claude Code CLI to complete the flow.

```bash theme={null}
aether claude-code connect
```

```
Claude Code setup token connected.
```

## aether claude-code status

Show whether a setup token is configured.

```bash theme={null}
aether claude-code status
```

```
Claude Code: configured (setupToken)
```

When nothing is configured, the command prints `Claude Code: not configured` and points you to `connect`.

## aether claude-code disconnect

Remove the stored Claude Code auth.

```bash theme={null}
aether claude-code disconnect [flags]
```

| Flag      | Description                  |
| --------- | ---------------------------- |
| `--force` | Skip the confirmation prompt |

## See also

* [Connect agent providers](/guides/connect-agent-providers)
* [Agents and models](/concepts/agents-and-models)
