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-regolo

v1.0.2

Published

OpenCode plugin for Regolo AI — adds regolo.ai as a provider with API key setup, model registration, and oh-my-openagent integration

Readme

opencode-regolo

An OpenCode plugin that adds Regolo AI as an LLM provider — EU-hosted, zero data retention, 100% green energy.

It automatically downloads the latest provider configuration and model definitions from regolo-ai/opencode-configs, handles API key authorization, and optionally configures oh-my-openagent to use Regolo models.

⚠️ One-Time Setup Plugin

This plugin is needed only for initial setup. Once the provider configuration is saved to your local files:

  1. The plugin can be removed from opencode.json
  2. Regolo will continue to work because the config lives in ~/.config/opencode/opencode.json

Features

  • First-run setup — downloads model definitions from the official repo, writes to local config
  • API key authorization — guides the user through getting and validating a Regolo API key
  • Model registration — adds all available Regolo models to OpenCode's provider config
  • oh-my-openagent integration — detects if oh-my-openagent is installed and merges the companion config for agent/category model assignments
  • One-time download — after first setup, the plugin removes itself from opencode.json (zero network on subsequent runs)

Models

The plugin registers these models:

| Model ID | Context | Best For | |----------|---------|----------| | qwen3.5-122b | 120K | Main reasoning, multimodal (text + image) | | qwen3-coder-next | 240K | Fast coding, tool use | | mistral-small-4-119b | 120K | Balanced reasoning, multimodal (text + image) | | minimax-m2.5 | 130K | Large context tasks | | gpt-oss-120b | 120K | Alternative reasoning |

Models are referenced as regolo/<model-id> in OpenCode (e.g., regolo/qwen3-coder-next).

Setup

1. Get a Regolo API Key

  1. Sign up at dashboard.regolo.ai
  2. Navigate to Virtual Keys
  3. Create a new key (select "All models" for full access)
  4. Copy the key

2. Install the Plugin

Option A: From npm (if published)

Add to your opencode.json:

{
  "plugin": ["opencode-regolo@latest"]
}

Option B: Local development

  1. Clone this repository:

    git clone https://github.com/regolo-ai/opencode-regolo.git
    cd opencode-regolo
  2. Copy or symlink into your OpenCode plugins directory:

    ln -s $(pwd) ~/.config/opencode/plugins/opencode-regolo
  3. Reference in opencode.json:

    {
      "plugin": ["./plugins/opencode-regolo"]
    }

3. First Run (One-Time)

  1. Restart OpenCode — the plugin:
    • Downloads the config and writes it to ~/.config/opencode/opencode.json
    • Merges oh-my-openagent config if present
    • Automatically removes itself from opencode.json
  2. Run /connect regolo and enter your API key when prompted
  3. OpenCode stores it securely in its built-in vault — no environment variables needed

That's it! The Regolo provider is now saved in your local config and works without the plugin.

5. Set Default Model

In your opencode.json:

{
  "model": "regolo/qwen3.5-122b",
  "small_model": "regolo/qwen3-coder-next"
}

oh-my-openagent Integration

If you use oh-my-openagent (formerly oh-my-opencode), this plugin provides a companion config that assigns Regolo models to each specialized agent:

| Agent | Model | Role | |-------|-------|------| | sisyphus | minimax-m2.5 | Main orchestrator | | oracle | qwen3.5-122b | Read-only consultation | | librarian | qwen3.5-122b | External documentation search | | explore | qwen3-coder-next | Codebase exploration | | prometheus | minimax-m2.5 | Planning | | metis | mistral-small-4-119b | Pre-planning analysis | | momus | qwen3-coder-next | Quality review | | hephaestus | minimax-m2.5 | Code generation | | atlas | qwen3.5-122b | Knowledge management | | multimodal-looker | mistral-small-4-119b | Visual analysis |

On first run, if oh-my-openagent.json exists in your OpenCode config directory (~/.config/opencode/), the plugin automatically merges the Regolo model assignments into it — overwriting agents, categories, and background_task while preserving any other settings you have.

Requirements