Install OpenCode and CLIProxyAPI
This is the practical install path for the setup currently documented in this repository: CLIProxyAPI as a local OpenAI-compatible endpoint in front of OpenCode. That said, OpenCode can also be used with direct providers such as opencode and opencode-go.
If your goal is specifically to place several Codex accounts behind one stable endpoint and let a proxy distribute requests, cliproxyapi is the right layer to add.
Prerequisites
Section titled “Prerequisites”- macOS (Apple Silicon / arm64)
- Homebrew
- Node.js 22+ with npm
Helpful local CLI tools for oh-my-openagent
Section titled “Helpful local CLI tools for oh-my-openagent”These are not required for OpenCode itself to launch, but they are very useful for oh-my-openagent workflows because they improve local search and structural code navigation.
Install ripgrep and ast-grep
Section titled “Install ripgrep and ast-grep”brew install ripgrep ast-grepWhy these help
Section titled “Why these help”ripgrep(rg) — very fast text search across the repoast-grep(sg) — syntax-aware structural code search
These tools are especially useful when agents or workflows rely on grep-style exploration, pattern discovery, and codebase-wide inspection.
Step 1: Install CLIProxyAPI
Section titled “Step 1: Install CLIProxyAPI”CLIProxyAPI wraps upstream providers into one local API endpoint that OpenCode can call.
brew install cliproxyapiStep 2: Configure CLIProxyAPI
Section titled “Step 2: Configure CLIProxyAPI”Edit /opt/homebrew/etc/cliproxyapi.conf and set at least these values.
API keys for local clients
Section titled “API keys for local clients”api-keys: - "your-api-key-1" - "your-api-key-2"Management panel secret
Section titled “Management panel secret”remote-management: allow-remote: false secret-key: "your-management-password-here" disable-control-panel: false panel-github-repository: "https://github.com/router-for-me/Cli-Proxy-API-Management-Center"After startup, the panel is available at:
http://localhost:8317/Enable usage statistics aggregation
Section titled “Enable usage statistics aggregation”This is optional. Enable it if you want CLIProxyAPI to aggregate in-memory usage statistics:
usage-statistics-enabled: trueDefault in the upstream example config is false.
Full cliproxyapi.conf reference
Section titled “Full cliproxyapi.conf reference”If you want a complete baseline instead of a minimal snippet, this is the current working reference pattern:
host: ""port: 8317
tls: enable: false cert: "" key: ""
remote-management: allow-remote: false secret-key: "your-management-password-here" disable-control-panel: false panel-github-repository: "https://github.com/router-for-me/Cli-Proxy-API-Management-Center"
auth-dir: "~/.cli-proxy-api"
api-keys: - "your-api-key-1" - "your-api-key-2" - "your-api-key-3"
debug: false
# Optional: enable in-memory usage statistics aggregationusage-statistics-enabled: true
request-retry: 3max-retry-credentials: 0max-retry-interval: 30
quota-exceeded: switch-project: true switch-preview-model: true
routing: strategy: "round-robin"
# After running `cliproxyapi -codex-login`, Codex credentials are stored# in ~/.cli-proxy-api/ and models become available automatically.# No codex-api-key section is needed for OAuth-based login.Step 3: Authenticate Codex / OpenAI
Section titled “Step 3: Authenticate Codex / OpenAI”Recommended:
cliproxyapi -codex-loginFor headless environments:
cliproxyapi -codex-device-loginStep 4: Start the service
Section titled “Step 4: Start the service”brew services start cliproxyapiUseful service commands:
brew services restart cliproxyapibrew services stop cliproxyapibrew services list | grep cliproxyapiStep 5: Verify models are visible
Section titled “Step 5: Verify models are visible”curl -s http://localhost:8317/v1/models \ -H "Authorization: Bearer your-api-key-1" | python3 -m json.toolIf login worked, you should see GPT-5.x models in the response.
Step 6: Install OpenCode
Section titled “Step 6: Install OpenCode”curl -fsSL https://opencode.ai/install | bashVerify the binary:
opencode --versionStep 7: Install the oh-my-openagent plugin dependency
Section titled “Step 7: Install the oh-my-openagent plugin dependency”The upstream project is now called oh-my-openagent, but the package and config names still commonly use the legacy oh-my-opencode naming.
mkdir -p ~/.config/opencodenpm --prefix ~/.config/opencode init -ynpm --prefix ~/.config/opencode install @opencode-ai/pluginYour ~/.config/opencode/package.json should include the plugin dependency, for example:
{ "dependencies": { "@opencode-ai/plugin": "1.2.26" }}Step 8: Install optional extensions
Section titled “Step 8: Install optional extensions”Superpowers
Section titled “Superpowers”Inside OpenCode, use:
Fetch and follow instructions from https://raw.githubusercontent.com/obra/superpowers/refs/heads/main/.opencode/INSTALL.mdManual alternative:
git clone https://github.com/obra/superpowers.git /tmp/superpowerscp -r /tmp/superpowers/.opencode your-project/What Superpowers adds:
- brainstorming support
- structured implementation planning
- subagent-driven development
- TDD-oriented workflow guidance
- systematic debugging and code review patterns
Verification tip: start a fresh OpenCode session and ask for help planning a feature. The skills should auto-trigger if installation worked.
Impeccable
Section titled “Impeccable”If you care about UI polish and frontend prompts, install it from the OpenCode package provided by the project:
Repository-based install:
git clone https://github.com/pbakaus/impeccable.git /tmp/impeccablecp -r /tmp/impeccable/dist/opencode/.opencode your-project/Useful commands once installed include /audit, /normalize, /polish, /distill, and targeted variants like /audit header.
What to do next
Section titled “What to do next”Once installation is done, continue with Configure providers, agents, and models.