From 6998bfe58b1de3c0718240ec8f48a32156597cec Mon Sep 17 00:00:00 2001 From: mesutoezdil Date: Sat, 23 May 2026 17:02:08 +0300 Subject: [PATCH] docs(providers): note that ANTHROPIC_API_KEY requires an API account, not a subscription Anthropic subscription users authenticate via OAuth, not an API key, causing a silent failure when creating the provider. Adds a Note callout in the provider type table and quickstart guide directing subscription users to generate an API key from console.anthropic.com. Closes #620 --- docs/get-started/quickstart.mdx | 4 ++++ docs/sandboxes/manage-providers.mdx | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/get-started/quickstart.mdx b/docs/get-started/quickstart.mdx index 0955c7673..46123f6a2 100644 --- a/docs/get-started/quickstart.mdx +++ b/docs/get-started/quickstart.mdx @@ -60,6 +60,10 @@ The CLI prompts you to create a provider from local credentials. Type `yes` to continue. If `ANTHROPIC_API_KEY` is set in your environment, the CLI picks it up automatically. If not, you can configure it from inside the sandbox after it launches. + + +`ANTHROPIC_API_KEY` is an API key from [console.anthropic.com](https://console.anthropic.com), not a Claude.ai subscription token. Claude Max and Pro subscription users must generate a separate API key. + diff --git a/docs/sandboxes/manage-providers.mdx b/docs/sandboxes/manage-providers.mdx index 7bc1f977f..5e31ab64c 100644 --- a/docs/sandboxes/manage-providers.mdx +++ b/docs/sandboxes/manage-providers.mdx @@ -246,6 +246,10 @@ The following provider types are supported. |---|---|---| | `anthropic` | `ANTHROPIC_API_KEY` | Anthropic API | | `claude` | `ANTHROPIC_API_KEY`, `CLAUDE_API_KEY` | Claude Code, Anthropic API | + + +`ANTHROPIC_API_KEY` is an API key from [console.anthropic.com](https://console.anthropic.com), not a Claude.ai subscription token. Claude Max and Pro subscription users must generate a separate API key from the Anthropic Console. + | `codex` | `OPENAI_API_KEY` | OpenAI Codex | | `copilot` | `COPILOT_GITHUB_TOKEN`, `GH_TOKEN`, `GITHUB_TOKEN` | GitHub Copilot CLI | | `generic` | User-defined | Any service with custom credentials |