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

skillbox

v0.3.4

Published

Local-first, agent-agnostic skills manager

Readme

Skillbox

Local-first, agent-agnostic skills manager for AI coding agents.

CI npm version

Install

npm install -g skillbox

On first run, Skillbox auto-detects your installed agents and configures itself.

Quick start: Install the skillbox skill to teach your agent how to manage skills:

skillbox add christiananagnostou/skillbox

Golden Workflow

These three commands cover most use cases:

skillbox list              # see installed skills
skillbox status            # check for updates
skillbox update [name]     # update skills

Adding Skills

| Command | Description | |---------|-------------| | skillbox add owner/repo | Install all skills from a GitHub repo | | skillbox add owner/repo --list | List available skills in a repo | | skillbox add owner/repo --skill name | Install a specific skill from a repo | | skillbox add <url> | Install skill from a direct URL | | skillbox add <url> --name my-skill | Install with custom name |

Note: GitHub unauthenticated API limit is 60 requests/hour per IP.

All Commands

Skills

| Command | Description | |---------|-------------| | skillbox list | List installed skills | | skillbox status | Check for outdated skills | | skillbox update [name] | Update all or one skill | | skillbox remove <name> | Remove a skill | | skillbox import <path> | Import existing skill directory | | skillbox import --global | Import all skills from agent folders |

Config

| Command | Description | |---------|-------------| | skillbox config get | Show current config | | skillbox config set --add-agent <name> | Add an agent | | skillbox config set --default-scope <scope> | Set default scope (user or project) | | skillbox config set --install-mode <mode> | Set install mode (symlink or copy) |

Projects

| Command | Description | |---------|-------------| | skillbox project add <path> | Register a project and auto-import skills from skills/ and agent directories | | skillbox project list | List registered projects | | skillbox project inspect <path> | Show project details and skills | | skillbox project sync <path> | Re-sync skills to a project |

Supported Agents

| Agent | User Path | Project Path | |-------|-----------|--------------| | Claude | ~/.claude/skills/ | .claude/skills/ | | Cursor | ~/.cursor/skills/ | .cursor/skills/ | | Codex | ~/.codex/skills/ | .codex/skills/ | | OpenCode | ~/.config/opencode/skills/ | .opencode/skills/ | | Amp | ~/.config/agents/skills/ | .agents/skills/ | | Antigravity | ~/.gemini/antigravity/skills/ | .agent/skills/ |

JSON Mode

All commands support --json for machine-readable output:

skillbox list --json
skillbox status --json
skillbox update my-skill --json

For AI Agents

Install the skillbox skill to teach your agent how to use skillbox:

skillbox add christiananagnostou/skillbox

Or add this to your CLAUDE.md / AGENTS.md:

Use `skillbox` to manage skills. Run `skillbox --help` for commands.

File Locations

| Path | Purpose | |------|---------| | ~/.config/skillbox/skills/ | Canonical skill store | | ~/.config/skillbox/config.json | Configuration | | ~/.config/skillbox/index.json | Skill index |

Development

git clone https://github.com/christiananagnostou/skillbox
cd skillbox
npm install
npm run build
npm link

License

MIT