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-plugin-browser

v1.0.0-alpha.3

Published

Sidebar section listing OpenCode plugins with installed/uninstalled status, below MCPs and Skills.

Readme

opencode-plugin-manager

An OpenCode sidebar section listing plugins with installed/uninstalled status — placed below the built-in MCP section and the Skills list, mirroring the built-in sidebar widgets.

What it shows

  • Installed plugins from the plugin registry (same list opencode2 plugin list shows; built-ins excluded) with their activation state: ✓ active, ✗ failed, ○ inactive.
  • LOCAL group mixes registered plugins (✓ … installed) with workspace plugin projects discovered by scanning the workspace root for sibling directories whose package.json depends on @opencode-ai/plugin (private monorepo roots and shared libraries excluded) — those show dimmed with ○ … uninstalled and a [+] to register them, same status column as everything else.
  • Built-in plugins are listed by default (group collapsed to keep the sidebar short) and can be hidden/shown with /plugins-builtins — a view toggle only, persisted; built-ins always run. They can't be disabled individually: the runtime has no per-built-in disable mechanism — the only switch is the all-or-nothing OPENCODE_DISABLE_DEFAULT_PLUGINS env var, whose state the widget shows when the BUILT-IN group is visible. Per-built-in disable requires upstream support in OpenCode's plugin host.
  • Plugin descriptions — the registry exposes no human metadata, so the plugin ships its own catalog (builtins.ts): curated descriptions for well-known built-ins plus per-category generation (provider.*, tool.*, config.*, websearch.*). Click any row to inspect its details.

Collapsed header shows PLUGINS (installed/total); more than two entries collapse, click (or expand) to list them — same interaction as the built-in MCP/Skills sections.

Install

# in opencode.jsonc
{ "plugins": ["./opencode-usage-quota-tracker", "./opencode-skill-lister", "./opencode-plugin-manager", "./opencode-model-recommender"] }

Order matters: plugins sharing the sidebar.content slot render in plugins array order — keep this entry after opencode-skill-lister (and before anything you want below it) so the section sits directly under MCP and Skills.

Data sources

  • Plugin registry: client.plugin.list() (activation state included)
  • Workspace scan: sibling directories of the current location, one package.json read per candidate; result is cached through opencode-plugin-kit's createCachedStore so the sidebar restores instantly after a TUI restart.

License

GNU Affero General Public License v3.0 — see LICENSE.