Warning
This plugin comes with no guarantees. You might be banned for breaking the TOS, you might not be. I don't work at Anthropic, nor am I an attorney.
Use your best judgment and don't try to abuse the subscriptions. Plugins like oh-my-openagent are known to trigger bans. Please be careful when using Ralph loops or insanely heavy usage patterns.
Important
If you are seeing issues, please try to rm -rf ~/.cache/opencode/packages/@suiramdev and check your opencode.json config to make sure you're on the latest version.
Try this FIRST before making an Issue. Thanks!
An OpenCode plugin that provides Anthropic OAuth authentication, enabling Claude Pro/Max users to use their subscription directly with OpenCode.
Important
This is a fork of @ex-machina/opencode-anthropic-auth targeting OpenCode v2; it will not load on v1. The v1 plugin API (auth.loader returning a custom fetch) was removed in v2 — see Porting notes. For OpenCode v1, use the upstream package.
Add the plugin to your OpenCode configuration:
{
"plugins": ["@suiramdev/opencode-anthropic-auth"]
}Then connect an account with opencode auth login and pick Claude Pro/Max.
Tip
It is STRONGLY advised that you pin the plugin to a version. This will keep you from getting automatic updates; however, this will protect you from nefarious updates.
This holds true for ANY OpenCode plugin. If you do not pin them, OpenCode will automatically update them on startup. It's a massive vulnerability waiting to happen.
{
"plugins": ["@suiramdev/opencode-anthropic-auth@2.0.0"]
}The plugin's id is suiramdev.anthropic-auth; disable it without removing the entry using "-suiramdev.anthropic-auth".
The plugin adds two OAuth methods to OpenCode's built-in anthropic integration:
- Claude Pro/Max — OAuth flow via
claude.aifor Pro/Max subscribers. Uses your existing subscription at no additional API cost. - Create an API Key — OAuth flow via
console.anthropic.comthat creates an API key on your behalf.
OpenCode already ships Manually enter API Key for the anthropic integration, so the plugin no longer registers its own.
The plugin supports the following environment variables:
| Variable | Description |
|---|---|
ANTHROPIC_BASE_URL |
Override the API origin (e.g. for proxying). Must be a valid HTTP(S) URL; only the origin is used, the /v1 prefix is preserved. |
ANTHROPIC_INSECURE |
Set to 1 or true to skip TLS certificate verification. Only effective when ANTHROPIC_BASE_URL is also set. Applies process-wide — see the warning below. |
Warning
On v2 the request goes through OpenCode's Effect HTTP client, which offers no per-request TLS control. ANTHROPIC_INSECURE therefore sets NODE_TLS_REJECT_UNAUTHORIZED=0 for the whole OpenCode process, not just Anthropic traffic. Use it only against a local proxy you control.
For Claude Pro/Max authentication, the plugin:
- Registers an OAuth method on OpenCode's
anthropicintegration and runs a PKCE flow against Anthropic's authorization endpoint - Exchanges the authorization code for access and refresh tokens, tagged with an auth-mode marker in the credential metadata
- Lets OpenCode refresh expired tokens through the method's
refreshcallback - Repoints the
anthropicprovider at the plugin's own native provider package - Injects the required OAuth headers and beta flags into API requests
- Sanitizes the system prompt for compatibility (see below)
- Renames tools to Claude Code's
mcp_+PascalCase convention on the way out and back on the way in - Zeros out model costs (since usage is covered by the subscription)
The Anthropic API for Max subscriptions has specific requirements for the system prompt to identify as Claude Code. The plugin rewrites the system prompt on each request using an anchor-based approach that minimizes what gets changed:
- Identity swap — The OpenCode identity line is removed and replaced with the Claude Code identity.
- Paragraph removal by anchor — Any paragraph containing a known URL anchor (e.g.
github.com/anomalyco/opencode,opencode.ai/docs) is removed entirely. This is resilient to upstream rewording — as long as the anchor URL appears somewhere in the paragraph, the removal works regardless of surrounding text changes. - Inline text replacements — Short branded strings inside paragraphs we want to keep are replaced (e.g. "OpenCode" → "the assistant" in the professional objectivity section).
Everything else in the system prompt is preserved: tone/style guidance, task management instructions, tool usage policy, environment info, skills, user/project instructions, and file paths containing "opencode". The sanitized system prompt is structured as three blocks in system[]: the billing header, the Claude Code identity line, and the remaining system content.
OpenCode v2 removed the auth plugin surface this project was built on. The v2 equivalents:
| v1 | v2 |
|---|---|
auth.methods |
ctx.integration.transform → method.update({ authorize, refresh }) |
| Manual token refresh with an inflight-promise guard | OpenCode's own refresh scheduling, via the method's refresh callback |
auth.loader zeroing provider.models[].cost |
ctx.catalog.transform |
auth.loader returning a wrapped fetch |
A plugin-owned native provider package (src/provider.ts) |
The last row is the interesting one. In v2 the anthropic provider is served by OpenCode's own AnthropicMessages route rather than the Vercel AI SDK, and the plugin API exposes no response-side hook — session.request can mutate an outbound request but nothing can touch the response stream. Prefixing tool names on the way out without un-prefixing them on the way back makes every tool call fail with Unknown tool.
So the plugin points the provider's package at dist/provider.js (a file:// specifier, which OpenCode imports directly). That module rebuilds the stock Anthropic route with one wrapped transport: outbound requests get the Claude Code headers, URL, and body treatment, and inbound SSE frames get the tool prefix stripped back off. src/tests/integration.test.ts drives a real LLM.stream through that stack against a local server to catch breaking changes in those (beta, unstable) internals.
Because that package builds on OpenCode's own runtime, @opencode-ai/ai, @opencode-ai/plugin, @opencode-ai/schema, and effect are pinned to exact versions matching one OpenCode next build. Bump all four together when retargeting a newer OpenCode, and re-run bun test — the integration test is what tells you whether the internals still line up.
A version range cannot stand in for those pins. OpenCode publishes as
0.0.0-next-<build>, and next-16741 is a single alphanumeric SemVer
prerelease identifier, so builds are ordered lexically rather than
numerically. ^0.0.0-next-16741 therefore resolves to whichever prerelease
sorts highest as text — in practice a stray branch build:
| dependency | ^0.0.0-next-16741 resolves to |
|---|---|
@opencode-ai/ai |
0.0.0-next-16745 |
@opencode-ai/plugin |
0.0.0-windows-fix-202511131842 |
@opencode-ai/schema |
0.0.0-reserved.0 |
w and r both sort above n. The same lexical rule means the range would
stop matching entirely at a six-digit build (next-100000 < next-99999).
The next dist-tag does resolve cleanly, but OpenCode installs plugins into
~/.cache/opencode/packages/<name>/ and writes a package-lock.json there, so
a tag would be frozen to whatever happened to be newest at each user's first
install — different per machine, unreproducible, and still able to go stale.
It would also defeat the point of pinning the plugin version, since the pinned
release would no longer describe what actually gets installed.
peerDependencies — normally the right answer for host-coupled packages — is
not available either: the host ships as a single compiled binary with
@opencode-ai/ai bundled inside it, so there is no copy for a plugin to
share. Every plugin installs its own.
So the pins stay exact and .github/workflows/retarget-opencode.yml does the
bumping instead: weekly, it moves all three to the build @opencode-ai/cli
currently ships on next, runs the full suite, and opens a PR only if that
passes. Dependabot ignores these packages — it follows latest, which for
them points at the v1 line and at placeholder releases.
Use bun run dev to test plugin changes locally without publishing to npm:
bun run devThis does three things:
- Builds the plugin
- Symlinks
dist/into.opencode/plugins/anthropic-authso OpenCode loads it as a local plugin package. The whole directory is linked, not justindex.js, because the plugin resolvesprovider.jsrelative to its own module URL. - Starts
tsc --watchfor automatic rebuilds on source changes
After starting the dev script, restart OpenCode in this project directory to pick up the local build. Any edits to src/ will trigger a rebuild — restart OpenCode again to load the new version.
Ctrl+C stops the watcher and cleans up the symlink. If the process was killed without cleanup (e.g. kill -9), you can manually remove the symlink:
bun run dev:cleanNote
If you also have the published package in your global OpenCode config, both will load. Disable the published one with "-suiramdev.anthropic-auth" — the two share an id, so the later entry wins.
This project uses changesets for versioning and publishing. See the changeset README for more details.
bun change # create a changeset describing your changesWhen changesets are merged to main, CI will automatically open a release PR. Merging that PR publishes to npm.
.github/workflows/publish.yml publishes with provenance and reads NODE_AUTH_TOKEN from the NPM_TOKEN secret. Leave that secret unset to publish via npm trusted publishing (OIDC) instead — the workflow already requests id-token: write.
Trusted publishing cannot bootstrap a package that does not exist yet, so the first version of a newly named package must be published from a machine with npm login credentials:
npm login
bun run release # build + changeset publishAfterwards, register suiramdev/opencode-anthropic-auth / publish.yml (no environment) as the package's trusted publisher on npmjs.com, and every later release goes through CI with no long-lived token.
MIT