A custom provider for pi that connects to the Command Code Provider API.
Disclaimer: This is an unofficial, community-maintained integration. It is not affiliated with, endorsed by, or supported by Command Code. You need your own Command Code account, API key, and a plan with Provider API access. Command Code's terms, availability, and pricing apply.
The extension uses one provider and automatically selects the transport supported by the authenticated account:
GET /provider/v1/modelsfor model discoveryPOST /provider/v1/chat/completionsfor non-Claude models with Provider API accessPOST /provider/v1/messagesfor Claude models with Provider API access/alpha/generateafter the Provider API explicitly returns403 upgrade_required, which currently identifies Go-plan accounts
The detected transport is remembered only for the running process and is re-evaluated when the credential changes. Other authentication, permission, rate-limit, network, and server errors never trigger the fallback.
pi install npm:pi-commandcode-providerStart or reload pi, then authenticate:
/loginSelect Use a subscription, then Command Code. Choose browser login or paste an API key, then select a model with /model.
Install the same package in Oh My Pi:
omp plugin install pi-commandcode-providerRestart OMP or run /reload, then use /login and select Use a subscription followed by Command Code.
Run /login in pi or OMP. Select Use a subscription, then Command Code. Press Enter for browser login, type key to open a paste prompt, or paste the API key directly. The selected credential is stored in the host's auth file.
If automatic transfer from the browser fails, copy the API key shown by Command Code and paste it into the terminal prompt.
export COMMANDCODE_API_KEY="user_..."The provider also reads existing credentials from:
~/.commandcode/auth.json~/.pi/agent/auth.json~/.omp/agent/auth.json
Supported examples:
{
"apiKey": "user_..."
}{
"command-code": {
"type": "api",
"key": "user_..."
}
}{
"commandcode": "user_..."
}Open /model and select one of the models provided by Command Code. Model availability changes over time and is refreshed from the Provider API when the extension loads.
Reasoning metadata is enriched only for models whose Command Code effort support is known. Those models register a model-specific thinkingLevelMap, so pi and OMP expose only supported levels. Pi's native OpenAI- and Anthropic-compatible providers translate the selected level for Provider API accounts; the existing Command Code generate transport sends the matching reasoning_effort for Go accounts. Unsupported levels and newly discovered models without metadata do not claim reasoning support.
List Command Code models from the terminal:
pi --list-models commandcodeIn OMP, use:
omp modelsFor non-interactive OMP requests, use a provider-qualified model ID shown by omp models. For example:
omp -p "hello" --model commandcode/deepseek/deepseek-v4-flashThe provider fetches the current model catalog from:
https://api.commandcode.ai/provider/v1/modelsThe last successful catalog is cached at <agent-dir>/commandcode-models.json. For pi this is ~/.pi/agent/commandcode-models.json by default. Compatible hosts such as OMP use their own agent directory.
If the endpoint is temporarily unavailable, the provider uses the cached catalog. On a first offline start without a cache, pi still loads, but Command Code models remain unavailable until the connection is restored and /commandcode-refresh succeeds.
While pi is running, use these provider commands without restarting:
/commandcode-refreshfetches and re-registers the current model catalog. Overlapping refreshes are coalesced, and a failed refresh keeps the last valid catalog active./commandcode-statusshows redacted discovery diagnostics, including the source, model count, timestamps, cache path, endpoint, and warning.
Set COMMANDCODE_ZDR=1 to send Command Code's documented x-cmd-zdr: 1 zero-data-retention header.
The following environment variables are intended for tests, local mocks, and compatible API endpoints:
COMMANDCODE_API_BASECOMMANDCODE_MODELS_URLCOMMANDCODE_MODELS_CACHECOMMANDCODE_MODELS_TIMEOUT_MS(defaults to 10 seconds; invalid or non-positive values use the default)
The provider advertises image input only for models marked with the image input modality in the official Command Code CLI model catalog. The capability snapshot currently follows command-code@1.15.1; unknown models default to text-only until their upstream metadata is reviewed.
For vision-capable models, Pi's native provider adapters forward image blocks from user messages and tool results using the documented OpenAI or Anthropic message schema. Unknown and text-only models remain marked text-only in Pi.
The Command Code Provider API does not currently include prices in its model catalog. This extension therefore keeps a static table for models with known prices so pi can display estimated request costs. DeepSeek V4 uses time-dependent rates; pi displays the documented off-peak rate, which applies for 17 hours per day.
Models missing from that table display zero cost in pi. This does not mean that Command Code will bill the request at zero. The Command Code Usage page remains authoritative for each request. Check the current Command Code pricing before relying on the displayed value.
Update installed pi packages:
pi update --extensionsRemove the provider:
pi remove npm:pi-commandcode-providerFor OMP:
omp plugin upgrade pi-commandcode-provider
omp plugin uninstall pi-commandcode-providerStart an isolated pi instance with only the current checkout installed and no existing Command Code credentials:
npm run pi:isolatedRun /login inside pi. Temporary credentials, configuration, and sessions are deleted when pi exits.
Start the current checkout with your existing pi credentials and only Command Code models in the model picker:
npm run pi:authenticatedBoth commands accept additional pi arguments after --, for example npm run pi:authenticated -- --model claude-sonnet-4-6.
Keep the Go-plan and Provider-API test keys in separate secret-manager entries. Pass them through protected files so the keys do not enter shell history:
COMMANDCODE_E2E_GO_API_KEY_FILE=/path/to/go-key \
npm run test:e2e:live:go
COMMANDCODE_E2E_PROVIDER_API_KEY_FILE=/path/to/provider-key \
npm run test:e2e:live:provider
COMMANDCODE_E2E_GO_API_KEY_FILE=/path/to/go-key \
COMMANDCODE_E2E_PROVIDER_API_KEY_FILE=/path/to/provider-key \
npm run test:e2e:live:allEach profile runs with an isolated Pi agent directory and asserts the selected transport through /commandcode-status: Go must select generate, while a Provider API account must select provider. The profile-specific *_API_KEY environment variables are also supported for CI secrets, but key files are preferred for local use.
Override the default DeepSeek test model with COMMANDCODE_E2E_GO_MODEL or COMMANDCODE_E2E_PROVIDER_MODEL. A successful live Anthropic /provider/v1/messages test requires a Provider API account whose plan includes the selected Claude model.
See CONTRIBUTING.md for local setup and tests. See RELEASE.md for the release process.
MIT