npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

commandcode-go-opencode-provider

v0.4.0

Published

Command Code API provider for opencode — use Claude, GPT, Gemini, DeepSeek, Qwen, Kimi, GLM, MiniMax, and Step models via Command Code

Downloads

1,019

Readme

commandcode-go-opencode-provider

Command Code API provider for opencode. Use Claude, GPT, Gemini, DeepSeek, Qwen, Kimi, GLM, MiniMax, Step, and other models through a single API key.

Quick Start

1. Install

opencode plugin commandcode-go-opencode-provider

This installs the provider and registers all available models automatically.

2. Connect

Run /connect in opencode, search for Command Code, and enter your API key:

/connect

3. Select a model

Run /models to pick from available models:

/models

Manual Configuration

If you prefer to configure manually, add this to your opencode.json:

{
  "plugin": ["commandcode-go-opencode-provider/server"],
  "provider": {
    "commandcode": {
      "npm": "commandcode-go-opencode-provider",
      "name": "Command Code",
      "env": ["COMMANDCODE_API_KEY"]
    }
  },
  "model": "commandcode/deepseek-v4-flash"
}

The plugin auto-registers models from models.json at startup. You only need the provider.commandcode block — no need to list individual models.

Environment Variable

Set COMMANDCODE_API_KEY instead of using /connect:

COMMANDCODE_API_KEY=your-key opencode

Available Models

| Model ID | Name | Tier | Reasoning | Context | |---|---|---|---|---| | claude-haiku-4-5-20251001 | Claude Haiku 4.5 | premium | no | 200K | | claude-opus-4-7 | Claude Opus 4.7 | premium | yes | 1M | | claude-sonnet-4-6 | Claude Sonnet 4.6 | premium | yes | 1M | | gpt-5.3-codex | GPT-5.3 Codex | premium | yes | 400K | | gpt-5.4 | GPT-5.4 | premium | yes | 400K | | gpt-5.4-mini | GPT-5.4 Mini | premium | yes | 400K | | gpt-5.5 | GPT-5.5 | premium | yes | 256K | | deepseek/deepseek-v4-flash | DeepSeek V4 Flash | open-source | yes | 1M | | deepseek/deepseek-v4-pro | DeepSeek V4 Pro | open-source | yes | 1M | | google/gemini-3.1-flash-lite | Gemini 3.1 Flash Lite | open-source | yes | 1M | | google/gemini-3.5-flash | Gemini 3.5 Flash | open-source | yes | 1M | | zai-org/GLM-5 | GLM-5 | open-source | no | 200K | | zai-org/GLM-5.1 | GLM-5.1 | open-source | no | 200K | | moonshotai/Kimi-K2.5 | Kimi K2.5 | open-source | no | 256K | | moonshotai/Kimi-K2.6 | Kimi K2.6 | open-source | no | 256K | | MiniMaxAI/MiniMax-M2.5 | MiniMax M2.5 | open-source | no | 200K | | MiniMaxAI/MiniMax-M2.7 | MiniMax M2.7 | open-source | no | 1M | | Qwen/Qwen3.6-Max-Preview | Qwen 3.6 Max Preview | open-source | yes | 1M | | Qwen/Qwen3.6-Plus | Qwen 3.6 Plus | open-source | yes | 1M | | Qwen/Qwen3.7-Max | Qwen 3.7 Max | open-source | yes | 1M | | stepfun/Step-3.5-Flash | Step 3.5 Flash | open-source | yes | 1M |

Full model list is maintained in models.json. Run bun run sync to refresh from the latest Command Code CLI release on npm.

Development

git clone https://github.com/brent-weatherall/commandcode-go-opencode-provider.git
cd commandcode-go-opencode-provider
bun install

For local testing, create opencode.local.json (gitignored) with file:// paths:

{
  "plugin": ["file:///path/to/commandcode-go-opencode-provider/server"],
  "provider": {
    "commandcode": {
      "npm": "file:///path/to/commandcode-go-opencode-provider",
      "name": "Command Code (local)",
      "env": ["COMMANDCODE_API_KEY"]
    }
  }
}

Run opencode --config opencode.local.json to test with your local build.

Sync Models

bun run sync              # update models.json from Command Code
bun run sync:global       # update models.json + write to ~/.config/opencode/opencode.jsonc

License

MIT