by routatic
Use your OpenCode Go subscription with Claude Code.
# Add to your Claude Code skills
git clone https://github.com/routatic/proxyGuides for using cli tools skills like proxy.
Last scanned: 6/19/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-06-19T09:05:34.502Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}proxy is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by routatic. Use your OpenCode Go subscription with Claude Code. It has 724 GitHub stars.
Yes. proxy passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/routatic/proxy" and add it to your Claude Code skills directory (see the Installation section above).
proxy is primarily written in Go. It is open-source under routatic on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh proxy against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
A Go CLI proxy that lets you use your OpenCode Go or OpenCode Zen subscription with Claude Code.
routatic-proxy sits between Claude Code and OpenCode, intercepting Anthropic API requests, transforming them to the appropriate format (OpenAI, Responses, or Gemini), and forwarding them to OpenCode's endpoints. Claude Code thinks it's talking to Anthropic — but your requests go to affordable open models instead.
oc-go-cc remains available as a compatibility alias, and existing OC_GO_CC_* environment variables and ~/.config/oc-go-cc/config.json files are still recognized.
OpenCode Go gives you access to powerful open coding models for $5/month (then $10/month). OpenCode Zen provides curated, tested models with pay-as-you-go pricing. This proxy makes both work seamlessly with Claude Code's interface — no patches, no forks, just set two environment variables and go.
${VAR} interpolation# macOS / Linux
brew tap routatic/tap && brew install routatic-proxy
# Windows
scoop bucket add routatic https://github.com/routatic/scoop-bucket && scoop install routatic-proxy
# Docker (with Makefile)
cp .env.example .env # then put your API key in .env
make docker-up
# Docker (manual)
cp .env.example .env
docker build -t routatic-proxy .
docker run -d --restart unless-stopped --name routatic-proxy --env-file .env -p 3456:3456 routatic-proxy
# Docker from GitHub Container Registry
docker pull ghcr.io/routatic/proxy:latest
docker run -d --restart unless-stopped --name routatic-proxy --env-file .env -p 3456:3456 ghcr.io/routatic/proxy:latest
Or see INSTALLATION.md for more options.
routatic-proxy init
Creates a default config at ~/.config/routatic-proxy/config.json. Edit it to add your API key, or set the environment variable:
export ROUTATIC_PROXY_API_KEY=sk-opencode-your-key-here
routatic-proxy serve
Stop the Docker container (if using Docker):
make docker-stop
export ANTHROPIC_BASE_URL=http://127.0.0.1:3456
export ANTHROPIC_AUTH_TOKEN=unused
claude
routatic-proxy serve Start the proxy server
routatic-proxy serve -b Start in background (detached from terminal)
routatic-proxy serve --port 8080 Start on a custom port
routatic-proxy stop Stop the running proxy server
routatic-proxy status Check if the proxy is running
routatic-proxy init Create default configuration file
routatic-proxy validate Validate configuration file
routatic-proxy models List all available models (Go + Zen)
routatic-proxy autostart enable Enable auto-start on login
routatic-proxy autostart disable Disable auto-start on login
routatic-proxy autostart status Check autostart status
routatic-proxy --version Show version
| Document | Description |
|---|---|
| INSTALLATION.md | Homebrew, Scoop, build from source, release binaries |
| CONFIGURATION.md | Config file reference, env vars, model routing, fallback chains |
| MODELS.md | Model capabilities, costs, and routing recommendations |
| CONTRIBUTING.md | Development setup, architecture, how it works |
| TROUBLESHOOTING.md | Common issues and debug mode |