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

skillpool

v2.1.0

Published

Package manager for the AI Skills Registry — list, search, add, remove skills, commands, and agents for Claude Code

Readme

skillpool

Package manager for the AI Skills Registry. Installs three kinds of Claude Code resources into your project's .claude/ folder so Claude Code (and compatible agents) can use them:

| Type | Installs to | What it is | |------|-------------|------------| | skill | .claude/skills/<name>/ | A folder of prompt files + skill.json — the model auto-invokes it by description. | | command | .claude/commands/<name>.md | A slash command (/<name>) the user triggers manually. | | agent | .claude/agents/<name>.md | A subagent the model delegates to, in its own context with its own tools. |

Install

npm i -g skillpool
# or
npx skillpool <command>

Commands

skillpool list                  # interactive multi-select picker (installs your selection)
skillpool list --long           # plain list with version + description
skillpool list --type agent     # filter by type: skill | command | agent
skillpool search react          # search all types by name / description / tag

skillpool add                   # no arg → open the picker
skillpool add react-architect   # install by name (when unique across types)
skillpool add command:commit    # disambiguate with type:name
skillpool add agent:[email protected]

skillpool info command:commit   # details + file list
skillpool remove command:commit # remove an installed resource
skillpool update                # update all installed
skillpool update skill:docx

Picker controls

skillpool list (in a TTY) and skillpool add with no argument open a multi-select picker:

↑↓ move · space select · a all · enter install · q quit

Names and collisions

A name may exist in more than one type (e.g. a code-reviewer skill and a code-reviewer agent). Use a bare name when it's unique; otherwise prefix the type: skill:code-reviewer, command:commit, agent:code-reviewer. Installs are tracked in .claude/skills/manifest.json keyed by type:name.

Registry source

By default the CLI reads registry.json from the public GitHub raw URL. Override for testing or private registries:

skillpool --registry ./path/to/ai-skills-registry list   # local folder
SKILLPOOL_REGISTRY=https://raw.githubusercontent.com/you/repo/main skillpool list

How it works

The CLI never hardcodes the resource list. At runtime it fetches registry.json, which lists every skill, command, and agent plus the files each contains, and downloads them by raw URL. Adding a new resource to the registry repo requires no CLI release — the next skillpool list sees it automatically.