OpenCode server plugin that selects the active CPA provider from CPA_PROVIDER
and rewrites configured model provider prefixes in memory at startup.
Supported provider IDs:
cpa-localcpa-jp-edgecpa-van-base
The plugin rewrites known CPA provider prefixes and the literal
{env:CPA_PROVIDER} placeholder. Model IDs, variants, prompts, permissions, and
unrelated providers remain unchanged.
OpenCode expands {env:VAR} references in opencode.json before parsing, but
it does not expand them inside agent Markdown frontmatter. To keep agent
files environment-neutral, write the literal placeholder as the model prefix:
---
mode: subagent
model: "{env:CPA_PROVIDER}/gpt-5.6-sol"
---The unexpanded {env:CPA_PROVIDER} prefix reaches this plugin at startup and is
rewritten to the selected provider, exactly like a concrete cpa-local,
cpa-jp-edge, or cpa-van-base prefix. Agent files therefore never name a
specific endpoint and switching environments creates no Git diff.
Add the unpinned package to ~/.config/opencode/opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"plugin": [
"opencode-agent-cpa-env-switcher-plugin"
]
}OpenCode installs the current package release when it resolves the plugin.
Set the selected provider before starting OpenCode:
export CPA_PROVIDER="cpa-van-base"The plugin does not load .env files. Source your environment file before
launching OpenCode.
Example shell function:
opencode() {
source "$HOME/.config/opencode/.env"
command opencode --auto "$@"
}The selected provider must exist in the resolved OpenCode configuration. Raw environment substitution happens before JSON parsing, so the provider ID and display name can both be environment-driven:
{
"model": "{env:CPA_PROVIDER}/gpt-5.6-sol",
"small_model": "{env:CPA_PROVIDER}/gpt-5.6-luna",
"provider": {
"{env:CPA_PROVIDER}": {
"name": "{env:CPA_PROVIDER_NAME}",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "{env:CPA_BASE_URL}/v1",
"apiKey": "{env:CPA_API_KEY}"
},
"models": {
"gpt-5.6-sol": {
"name": "GPT-5.6 Sol"
},
"gpt-5.6-luna": {
"name": "GPT-5.6 Luna"
}
}
}
}
}At startup the plugin updates the provider prefix for:
- the top-level
model small_model- every primary agent and subagent model
- deprecated
modeagent entries - command-specific models
A prefix is rewritten when it is cpa-local, cpa-jp-edge, cpa-van-base, or
the literal {env:CPA_PROVIDER} placeholder. For example, with
CPA_PROVIDER=cpa-van-base:
cpa-jp-edge/claude-fable-5
{env:CPA_PROVIDER}/claude-fable-5
both resolve in memory as:
cpa-van-base/claude-fable-5
Tracked agent files are not modified, so switching environments does not create a Git diff.
Models belonging to providers other than cpa-local, cpa-jp-edge, and
cpa-van-base are left unchanged.
OpenCode startup fails clearly when:
CPA_PROVIDERis missingCPA_PROVIDERis not one of the supported IDs- the selected provider is absent from the resolved provider configuration
Credentials are never read or logged by this plugin.
npm install
npm run check
npm pack --dry-runCI runs on pushes and pull requests using supported Node.js versions.
Publishing runs automatically when a matching version tag is pushed:
npm version patch
git push origin main --follow-tagsThe package version must match the tag (0.1.1 requires v0.1.1). The publish
workflow uses npm trusted publishing with GitHub Actions OIDC and provenance.
After the initial npm publication, configure the package's npm trusted publisher:
- Provider: GitHub Actions
- GitHub owner:
caoool - Repository:
opencode-agent-cpa-env-switcher-plugin - Workflow filename:
publish.yml - Allowed action:
npm publish