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

opencode-dynamic-custom-providers

v2.0.0

Published

Dynamic model discovery for OpenAI-compatible providers in OpenCode with models.dev enrichment

Readme

OpenCode Dynamic Custom Providers

This plugin extends OpenCode with dynamic model discovery for OpenAI-compatible providers, enriched with metadata from models.dev.

Features

1. Automatic Model Discovery at Startup

The server plugin's config hook discovers models from any provider with a baseURL on every OpenCode startup. Models are always up-to-date without manual intervention.

2. models.dev Metadata Enrichment

Discovered models are cross-referenced against the models.dev catalog (the same source OpenCode uses natively) to enrich them with accurate context windows, output limits, costs, capabilities (tool calling, reasoning, temperature), and input/output modalities.

3. /add-provider Slash Command

A TUI slash command for interactively adding new providers:

  • Prompts for Provider ID, Base URL, and API Key
  • Validates inputs and checks for duplicates
  • Discovers models to confirm the endpoint works before saving
  • Writes dynamic: true so models are re-discovered on each startup

4. /reload-models Slash Command

A TUI slash command (also available as /refresh-models) that re-discovers models from all providers with a baseURL without restarting OpenCode. Clears the models.dev cache and updates the live config in one step.

5. refresh-models Agent Tool

An in-session tool the agent can call to clear the models.dev metadata cache. Restart OpenCode after to re-discover all models with fresh metadata.

Installation

opencode plugin opencode-dynamic-custom-providers

Alternative: Install from GitHub

opencode plugin git+ssh://[email protected]/b3nw/opencode-dynamic-custom-providers.git

Alternative: Local Clone (for Development)

git clone https://github.com/b3nw/opencode-dynamic-custom-providers
opencode plugin ./opencode-dynamic-custom-providers

Configuration

Adding a Provider via TUI

Run /add-provider in the OpenCode TUI and follow the prompts. The provider will be added with dynamic: true so models are discovered automatically on each startup.

Adding a Provider Manually

Add a provider to opencode.json with a baseURL. Models will be discovered automatically:

{
  "provider": {
    "my-proxy": {
      "name": "My Proxy",
      "options": {
        "baseURL": "https://api.proxy.com/v1"
      }
    }
  }
}

For explicit opt-in, set "dynamic": true:

{
  "provider": {
    "my-proxy": {
      "name": "My Proxy",
      "dynamic": true,
      "options": {
        "baseURL": "https://api.proxy.com/v1"
      }
    }
  }
}

API Key Authentication

API keys can be set in three ways:

  1. Via the /add-provider TUI command (stored securely via OpenCode's auth system)
  2. In config under options.apiKey:
    {
      "provider": {
        "my-proxy": {
          "options": {
            "baseURL": "https://api.proxy.com/v1",
            "apiKey": "sk-..."
          }
        }
      }
    }
  3. Via environment variable using the pattern OPENCODE_LOCAL_<PROVIDER_ID>_API_KEY:
    export OPENCODE_LOCAL_MY_PROXY_API_KEY=sk-...

How It Works

  1. On startup, the server plugin's config hook iterates all providers with a baseURL
  2. For each eligible provider (no models defined, or dynamic: true), it fetches /v1/models
  3. Each discovered model ID is cross-referenced against the models.dev catalog
  4. Matching models get enriched metadata (context window, costs, capabilities, modalities)
  5. Enriched models are injected into the live config before OpenCode loads providers
  6. The provider is set to use @ai-sdk/openai-compatible as the SDK package

Discovery Trigger

A provider is eligible for discovery when it has options.baseURL and either:

  • Has dynamic: true set in config, or
  • Has no models key (or empty models) in config

Providers that already have models defined in config are left unchanged unless dynamic: true is set.

Limitations

  • Startup latency: Each dynamic provider adds a network request at startup (15s timeout per endpoint, plus models.dev fetch on first run)
  • models.dev coverage: Models not in the models.dev catalog get sensible defaults (128k context window, 4096 output limit, text-only modalities)
  • Capabilities detection: Endpoint-reported capabilities (supported_parameters, capabilities) are merged with models.dev data; neither source alone is complete for all proxies

Development

git clone https://github.com/b3nw/opencode-dynamic-custom-providers
cd opencode-dynamic-custom-providers
npm install
npm run build