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

claude-agentpool

v0.1.0

Published

Package manager for the AI Skills Registry — Ink TUI edition (list, search, add, remove skills, commands, and agents for Claude Code)

Readme

agenticpool

Package manager for the AI Skills Registry — the Ink TUI edition of skillpool. Installs three kinds of Claude Code resources into your project's .claude/ folder:

| 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 claude-agentpool
# or
npx claude-agentpool <command>

(npm package is claude-agentpool; the installed command is agenticpool.)

Commands

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

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

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

TUI controls

agenticpool list (in a TTY) and agenticpool add with no argument open a full-screen picker: tabs across the top (Skills | Commands | Agents), each with its own paginated, multi-select list.

| Key | Action | |---|---| | Tab / Shift+Tab / | switch tab (wraps) | | | move cursor (wraps within the current page) | | [ ] | previous / next page in the current tab | | Space | toggle selection of the highlighted item | | a | toggle select-all for the current tab only | | Enter | install the selection | | q / Esc | cancel |

a selects everything on the active tab, not globally — this keeps you from accidentally bulk-installing resources on a tab you haven't even looked at. Hit a on each tab you want to select-all on.

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.

Interoperability with skillpool

agenticpool and skillpool read/write the exact same .claude/skills/manifest.json. You can install a resource with one and remove/update it with the other — they track the same state.

Registry source

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

agenticpool --registry ./path/to/ai-skills-registry list   # local folder
AGENTICPOOL_REGISTRY=https://raw.githubusercontent.com/you/repo/main agenticpool 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 agenticpool list sees it automatically.