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-claude-marketplace-bridge

v3.2.0

Published

Native plugin marketplace tools for OpenCode with Claude Code compatibility and verified CLI bridge operations

Downloads

16

Readme

opencode-claude-marketplace-bridge

npm version License: MIT

Browse, inspect, and manage Claude Code plugins from OpenCode without leaving the conversation.

This plugin reads the same data Claude Code uses under ~/.claude/plugins/ and delegates mutating operations to the Claude CLI (claude plugin ...).

Why this exists

OpenCode does not yet have Claude Code's native /plugin marketplace UX in core. This bridge provides native discovery and management tools while staying fully compatible with Claude Code's plugin system.

Installation

Add to your ~/.config/opencode/opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "plugin": [
    "opencode-claude-marketplace-bridge@latest"
  ]
}

That's it — OpenCode will install the plugin automatically on next startup.

Requirements

  • OpenCode with plugin support
  • Claude Code CLI (claude command in PATH) — required for install/uninstall/update operations

Tools Provided

| Tool | Purpose | |------|---------| | plugin_search | Search available plugins across marketplaces | | plugin_info | Inspect plugin metadata and install details | | plugin_list | List installed plugins | | plugin_status | Show plugin system health and marketplace coverage | | plugin_install | Install via Claude CLI + file-state verification | | plugin_uninstall | Uninstall via Claude CLI + file-state verification | | plugin_update | Update single plugin to latest + version/timestamp verification | | plugin_enable | Enable via Claude CLI + output verification | | plugin_disable | Disable via Claude CLI + output verification | | marketplace_list | List registered marketplaces | | marketplace_add | Add marketplace via Claude CLI + verification | | marketplace_update | Update marketplace(s) via Claude CLI + verification | | marketplace_remove | Remove marketplace via Claude CLI + verification | | update_all | Update all marketplaces + all plugins in one shot |

Usage Examples

# Discover plugins
> plugin_search query="code review"

# Get details
> plugin_info plugin="feature-dev@claude-plugins-official"

# Install
> plugin_install plugin="feature-dev@claude-plugins-official"

# Update everything
> update_all

# Check system status
> plugin_status

Verification Model

Mutating tools always execute in two phases:

  1. Run Claude CLI (claude plugin ...)
  2. Re-read ~/.claude/plugins/*.json and verify expected state transition

If CLI success does not match on-disk state, tools return an explicit warning instead of silently claiming success.

Development

# Install dependencies
npm install

# Smoke test
node -e "import('./index.js').then(m => m.default({}).then(h => console.log(Object.keys(h.tool))))"

For local development, use a file:// path in your opencode.json:

{
  "plugin": [
    "file:///path/to/opencode-claude-marketplace-bridge"
  ]
}

License

MIT