Skip to content
DevelopersTerminal

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.

CommandWhat it does
atoi auth loginConnect a supported model provider through its source-defined flow.
atoi auth logoutRevoke one provider connection.
atoi auth statusList 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>]

FlagTypeDefaultValuesWhat it does
--provider requiredstringanthropic, openai_codex, google, github_copilotChoose the provider.
--convex-site-urlstringOverride the Atoi HTTP endpoint.
--dry-runbooleanValidate the provider and print the planned endpoint without connecting.
--manualbooleanPaste the OpenAI Codex callback instead of using the loopback callback.
--non-interactivebooleanRequire an Anthropic API key flag instead of prompting.
--api-keystringProvide an Anthropic API key in non-interactive mode.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run auth login

bash
atoi auth login --provider google

#auth logout

Revoke one provider connection.

atoi auth logout --provider <provider> [--convex-site-url <url>] [--dry-run]

FlagTypeDefaultValuesWhat it does
--provider requiredstringanthropic, openai_codex, google, github_copilotChoose the provider.
--convex-site-urlstringOverride the Atoi HTTP endpoint.
--dry-runbooleanValidate the provider and print the planned endpoint without revoking.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run auth logout

bash
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]

FlagTypeDefaultValuesWhat it does
--providerstringanthropic, openai_codex, google, github_copilotFilter to one provider.
--convex-site-urlstringOverride the Atoi HTTP endpoint.
--dry-runbooleanPrint the planned endpoint without reading connection state.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run auth status

bash
atoi auth status --provider google --json

Was this useful?