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

v0.4.0

Published

CLI marketplace for OpenCode plugins

Readme

OpenCode Marketplace

CLI for installing OpenCode plugins from local directories or GitHub repositories.

Features

  • 📦 Install from local directories or GitHub URLs
  • 🔄 Update remote plugins with one command
  • 🎯 Zero-config convention-based discovery
  • 🔐 Content-hash based change detection
  • 🎭 Support for commands, agents, and skills
  • 🌍 User-global or project-local scope

Installation

bunx opencode-marketplace <command>

Or install globally:

bun install -g opencode-marketplace

Quick Start

# Install from local directory
opencode-marketplace install /path/to/my-plugin

# Install from GitHub
opencode-marketplace install https://github.com/user/repo

# Install from subfolder
opencode-marketplace install https://github.com/user/repo/tree/main/plugins/foo

# Update a remote plugin
opencode-marketplace update my-plugin

# List installed plugins
opencode-marketplace list

# Scan before installing (dry-run)
opencode-marketplace scan https://github.com/user/repo

# Uninstall
opencode-marketplace uninstall my-plugin

Plugin Structure

A plugin is a directory with components in well-known locations:

my-plugin/
├── command/         # or .opencode/command/, .claude/commands/
│   └── reflect.md
├── agent/          # or .opencode/agent/, .claude/agents/
│   └── reviewer.md
└── skill/          # or .opencode/skill/, .claude/skills/
    └── code-review/
        ├── SKILL.md
        └── reference.md

Discovery Priority: .opencode/*.claude/*./command/./commands/

How It Works

  1. Discovery - Scans for components using convention-based paths
  2. Namespacing - Copies files with prefixes: my-plugin--reflect.md
  3. Registry - Tracks installations in ~/.config/opencode/plugins/installed.json
  4. Change Detection - Content hashing detects actual changes

Scopes

| Scope | Target | Registry | |-------|--------|----------| | user (default) | ~/.config/opencode/ | ~/.config/opencode/plugins/installed.json | | project | .opencode/ | .opencode/plugins/installed.json |

Use --scope project for project-local installations.

Example Output

$ opencode-marketplace install https://github.com/user/awesome-plugins/tree/main/misc

Installing misc [a1b2c3d4]...
  → command/misc--reflect.md
  → skill/misc--review/

Installed misc (1 command, 1 skill) to user scope.
$ opencode-marketplace list

User scope:
  misc [a1b2c3d4] (1 command, 1 skill)
    Source: https://github.com/user/awesome-plugins/tree/main/misc

Development

bun install          # Install dependencies
bun run dev          # Run locally
bun test             # Run tests
bun run lint         # Lint code

License

MIT