Auth CLI reference
Connect, inspect, and revoke the provider credentials used by the paired Computer runtime.
On this page
Use this page to inspect every public atoi auth command, its accepted flags, and one runnable example. Return to the CLI reference index to choose another command group.
atoi authConnect, inspect, and revoke the provider credentials used by the paired Computer runtime.
| Command | What it does |
|---|---|
atoi auth login | Connect a supported model provider through its source-defined flow. |
atoi auth logout | Revoke one provider connection. |
atoi auth status | List active and pending provider connections. |
#auth login
Connect a supported model provider through its source-defined flow.
atoi auth login --provider <provider> [--convex-site-url <url>] [--dry-run] [--manual] [--non-interactive] [--api-key <key>]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--provider required | string | anthropic, openai_codex, google, github_copilot | Choose the provider. | |
--convex-site-url | string | Override the Atoi HTTP endpoint. | ||
--dry-run | boolean | Validate the provider and print the planned endpoint without connecting. | ||
--manual | boolean | Paste the OpenAI Codex callback instead of using the loopback callback. | ||
--non-interactive | boolean | Require an Anthropic API key flag instead of prompting. | ||
--api-key | string | Provide an Anthropic API key in non-interactive mode. | ||
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run auth login
atoi auth login --provider google
#auth logout
Revoke one provider connection.
atoi auth logout --provider <provider> [--convex-site-url <url>] [--dry-run]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--provider required | string | anthropic, openai_codex, google, github_copilot | Choose the provider. | |
--convex-site-url | string | Override the Atoi HTTP endpoint. | ||
--dry-run | boolean | Validate the provider and print the planned endpoint without revoking. | ||
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run auth logout
atoi auth logout --provider google --json
#auth status
List active and pending provider connections.
atoi auth status [--provider <provider>] [--convex-site-url <url>] [--dry-run]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--provider | string | anthropic, openai_codex, google, github_copilot | Filter to one provider. | |
--convex-site-url | string | Override the Atoi HTTP endpoint. | ||
--dry-run | boolean | Print the planned endpoint without reading connection state. | ||
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run auth status
atoi auth status --provider google --json
Was this useful?