> ## 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 cursor

> Connect Cursor provider auth by importing your local cursor-agent login

Manage authentication for the Cursor agent provider. Connecting imports the OAuth tokens written by your local `cursor-agent login` and uploads them so the Cursor agent can run in Aether workspaces. See [connect agent providers](/guides/connect-agent-providers).

<Note>
  Log in with `cursor-agent login` first. On macOS the tokens are read from the login keychain (`cursor-access-token` / `cursor-refresh-token`); on Linux from `${XDG_CONFIG_HOME:-~/.config}/cursor/auth.json`. Automatic import is supported only on macOS and Linux.
</Note>

## Usage

```bash theme={null}
aether cursor <subcommand> [flags]
```

## Subcommands

| Subcommand   | Description                                      |
| ------------ | ------------------------------------------------ |
| `connect`    | Import and upload your local Cursor OAuth tokens |
| `status`     | Show Cursor auth status                          |
| `disconnect` | Remove Cursor auth                               |

## aether cursor connect

Reads the OAuth tokens from your local Cursor installation and uploads them.

```bash theme={null}
aether cursor connect
```

```
Cursor subscription connected (from macOS keychain (cursor-access-token, cursor-refresh-token)).
```

## aether cursor status

Show whether Cursor auth is configured.

```bash theme={null}
aether cursor status
```

```
Cursor: configured (subscription)
```

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

## aether cursor disconnect

Remove the stored Cursor auth.

```bash theme={null}
aether cursor 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)
