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

plugins

v1.2.5

Published

Install open-plugin format plugins into agent tools

Readme

plugins

Install plugins into agent tools. Works with Claude Code and Cursor.

npx plugins add owner/repo

Usage

Add plugins from a GitHub repo

# GitHub shorthand
npx plugins add vercel/vercel-plugin

# Full HTTPS URL
npx plugins add https://github.com/vercel/vercel-plugin

# SSH URL (auto-retries via HTTPS if SSH auth fails)
npx plugins add [email protected]:vercel/vercel-plugin.git

Add plugins from a local directory

npx plugins add ./my-plugins
npx plugins add /absolute/path/to/plugins

Discover plugins without installing

npx plugins discover owner/repo

List detected agent tools

npx plugins targets

Commands

| Command | Description | |---|---| | plugins add <source> | Discover and install plugins from a source | | plugins discover <source> | Inspect plugins without installing (dry run) | | plugins targets | List available agent tools and their detection status |

If no subcommand is given, plugins <source> defaults to add.

Flags

| Flag | Short | Default | Description | |---|---|---|---| | --target | -t | auto-detect | Install to a specific agent tool (claude-code, cursor) | | --scope | -s | user | Installation scope: user, project, or local | | --yes | -y | false | Skip the confirmation prompt | | --help | -h | | Show usage information |

Supported targets

The CLI auto-detects which agent tools are installed and installs to all of them.

| Target | Detection | |---|---| | Claude Code | claude binary on PATH | | Cursor | cursor + claude binaries on PATH |

How it works

Source resolution

The CLI accepts GitHub shorthand (owner/repo), HTTPS URLs, SSH URLs, or local paths. Remote repos are shallow-cloned to ~/.cache/plugins/<slug>. SSH URLs that fail automatically retry via HTTPS.

Plugin discovery

Discovery follows a 3-step fallback:

  1. Marketplace index — looks for a marketplace.json that indexes multiple plugins
  2. Root plugin — checks if the repo root itself is a plugin
  3. Recursive scan — scans subdirectories (up to 2 levels deep) for plugin directories

A plugin is any directory containing skills, commands, agents, rules, hooks, MCP servers, or LSP servers.

Installation

The CLI translates the vendor-neutral .plugin/ format into target-specific formats, then installs via the target's native plugin system. Plugin authors write once; the CLI handles the rest.

Environment variables

| Variable | Purpose | |---|---| | DISABLE_TELEMETRY | Disable anonymous install telemetry | | DO_NOT_TRACK | Disable anonymous install telemetry (standard) | | NO_COLOR | Disable color output | | FORCE_COLOR | Force color output |

Development

npm install
npm run build
node dist/index.js --help

Zero runtime dependencies. Built with tsup as a single bundled ESM file targeting Node.js 18+.

License

Apache 2.0