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

@woosal1337/stack

v0.2.0

Published

List every Claude Code, Claude Desktop, Codex, and Cursor plugin, skill, MCP, agent, command, and hook installed on this machine.

Downloads

40

Readme

stack

List every plugin, skill, MCP, agent, command, and hook installed for Claude Code, Claude Desktop, Codex, and Cursor on this machine.

ci npm license node

A single read-only command that answers "what is actually installed on this machine, across every coding-agent tool I use, and at what version?" Inspired by ccusage.

Why

The agentic-CLI surface has gotten wide. On one machine you can have:

  • Claude Code — plugins, skills (user / project / bundled-in-plugin), MCPs (user, project, plugin), agents, slash commands, hooks, settings overlays.
  • Claude Desktop — a separate MCP config and DXT extensions.
  • Codex — plugins via marketplace, hooks.
  • Cursor — MCPs, hooks.
  • Project overlays.claude/, .mcp.json, CLAUDE.md, AGENTS.md.

stack walks all of those locations and renders a compact, table-style inventory with versions, scopes, and sources. It never writes anything.

Install

No install needed:

npx @woosal1337/stack
# or
bunx @woosal1337/stack

To install globally as the stack command:

npm install -g @woosal1337/stack
stack

Running straight from the repo also works: bunx github:woosal1337/stack.

Works on macOS, Linux, and (experimentally) Windows — Claude Desktop config paths resolve per platform.

Demo

stack demo

Claude Code Plugins  (4)
┌──────────────────────────────────────┬────────────┬──────────┬────────────────────────────┐
│ NAME                                 │ VERSION    │ SCOPE    │ SOURCE                     │
├──────────────────────────────────────┼────────────┼──────────┼────────────────────────────┤
│ codex                                │ 1.0.4      │ user     │ openai-codex               │
│ compound-engineering                 │ 3.6.0      │ user     │ compound-engineering-plug… │
│ discord                              │ 0.0.4      │ user     │ claude-plugins-official    │
│ frontend-design                      │ —          │ project  │ claude-plugins-official    │
└──────────────────────────────────────┴────────────┴──────────┴────────────────────────────┘

Claude Code MCPs  (3)
┌──────────────────────────────┬────────────┬──────────┬─────────────────────────────────┐
│ NAME                         │ TRANSPORT  │ SCOPE    │ SOURCE                          │
├──────────────────────────────┼────────────┼──────────┼─────────────────────────────────┤
│ ebrain                       │ stdio      │ user     │ gbrain serve                    │
│ linear-server                │ http       │ user     │ https://mcp.linear.app/mcp      │
│ media-mcp                    │ stdio      │ user     │ node /…/media-mcp/dist/index.js │
└──────────────────────────────┴────────────┴──────────┴─────────────────────────────────┘

Usage

stack                       # full inventory, grouped by tool
stack --tool claude-code    # one tool only
stack --kind mcp            # MCPs across all tools
stack --kind skill --scope user
stack --search compound     # substring match against name + description
stack --versions-only       # tool/kind/name@version, one per line
stack --json                # machine-readable
stack --doctor              # surface warnings only
stack --no-project          # skip $PWD overlay

Flags

| Flag | Effect | |---|---| | --tool <name> | claude-code claude-desktop codex cursor project all (default) | | --kind <name> | plugin skill mcp agent command hook extension marketplace memory all (default) | | --scope <name> | user project bundled all (default) | | --search <q> | substring filter on name + description | | --json | JSON output | | --versions-only | compact tool/kind/name@version lines | | --doctor | only show warnings | | --no-project | skip $PWD overlay scan | | --no-color | disable ANSI colors | | --cwd <path> | override project root | | -h, --help | show help | | -v, --version | show version |

What it scans

| Tool | Locations | |---|---| | Claude Code | ~/.claude/plugins/installed_plugins.json, ~/.claude/skills/, ~/.claude/agents/, ~/.claude/commands/, ~/.claude/settings.json, ~/.claude.json (mcpServers + per-project), plugin-bundled agents/, commands/, and skills/ inside ~/.claude/plugins/cache/<marketplace>/<plugin>/<version>/ | | Claude Desktop | claude_desktop_config.json and Claude Extensions/ under ~/Library/Application Support/Claude (macOS), %APPDATA%\Claude (Windows), or $XDG_CONFIG_HOME/Claude (Linux) | | Codex | ~/.codex/config.toml (plugins + marketplaces), ~/.codex/skills/, ~/.codex/hooks.json | | Cursor | ~/.cursor/mcp.json, ~/.cursor/hooks.json | | Project overlay (current working directory) | .mcp.json, .claude/, CLAUDE.md, AGENTS.md |

Version resolution order per item: manifest .version → version segment in install path → marketplace lockfile → unknown.

Non-goals

  • Not a package manager. stack never installs, removes, updates, or modifies anything. Read-only by design.
  • Not a config validator. It surfaces what is installed, not whether it's wired up correctly. Use claude mcp list or per-tool diagnostics for that.
  • No telemetry. No network calls except an optional local git rev-parse for version resolution.

Develop

bun install
bun run dev          # run from source
bun test             # unit tests
bun run typecheck    # tsc --noEmit
bun run build        # bundle to dist/cli.js with shebang

See CONTRIBUTING.md for the workflow and code style. Security reports go to SECURITY.md.

License

MIT, see LICENSE.