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

skillbee

v1.0.0

Published

Skill manager, catalog, and deployment toolkit for AI coding CLIs.

Downloads

180

Readme

🐝 Skillbee

Personal skill manager, catalog, and deployment toolkit — for Codex / Claude / OpenCode / Gemini / Hermes / Cursor / Copilot.

License: MIT Node

English quick start: docs/README.en.md


Table of Contents


Quick Start

npm install -g skillbee
skillbee

Or without installing:

npx skillbee@latest

That's it — the Dashboard TUI opens in your terminal. Browse 56+ skills, filter by target or tag, select multiple, and install them all at once.

To install everything to all CLIs:

npx skillbee@latest bootstrap

Dashboard TUI

Press ? anytime for the full command reference.

| Key | Action | |-----|--------| | | Navigate skill list | | space | Multi-select / deselect | | i u | Install / uninstall selected to targets | | t | Open target multi-select panel | | tab | Cycle single target (within selected set) | | f | Open multi-dimension filter (status / target / tag) | | v | Toggle list / matrix overview view | | / | Search skills by name, tag, or description | | x | Archive / unarchive selected skill | | g | Toggle global / project scope | | a | Toggle archived skill visibility | | T | Cycle theme (bee / monokai / nord) | | ? | Show keyboard shortcut reference | | q | Quit |

After install/uninstall, a report overlay shows per-target × per-skill results (✓ success, ○ skipped, ✗ failed).


CLI Commands

# Open Dashboard TUI
skillbee

# Search catalog
skillbee search paper --scope project

# Install to specific target
skillbee install academic-paper-workflow --target claude --scope project

# Install to all selected targets at once
skillbee install code-guidelines --target codex --target opencode --scope global

# Full bootstrap to all CLIs
skillbee bootstrap

# Bootstrap to specific targets
skillbee bootstrap --targets codex,claude,opencode,gemini,hermes,cursor,copilot

# Dry-run (no files touched)
skillbee bootstrap --dry-run --json

# List installed skills per target
skillbee list --scope global

# Inspect a target's skill directory
skillbee inspect --target codex --scope project

# Health check
skillbee doctor --scope global

# Reset Cursor skills (clean + reinstall active)
skillbee reset --target cursor --scope all --project "$PWD" --install-all --yes

Architecture

skills/
  owned/<skill-id>/SKILL.md     # Self-authored skills (17 owned)
  archived/                      # Archived skills (hidden by default)
catalog/
  skills/*.yaml                  # External skill sources (GitHub, command)
  plugins/*.yaml                 # Plugin/extension sources
  taxonomy.yaml                  # Global tags & classification
dist/                            # Compiled CLI output
docs/
  CATALOG-CONFIG.md              # YAML catalog configuration
  README.en.md                   # English quick start

Core flow: Normalize assets from owned + catalog sources → Plan installs per target → Materialize to user-level directories (e.g., ~/.claude/skills, ~/.config/opencode/skills, ~/.gemini/extensions).

Install state is tracked via a bootstrap manifest at ~/.local/state/aimagician-skills/manifest.json. Re-running bootstrap updates existing installs without duplicating.


Support Matrix

| Capability | Status | Notes | |---|---|---| | Owned skills | ✅ | skills/owned/* synced to all targets | | GitHub skill sources | ✅ | Cloned from remote, installed per target | | Command sources | ✅ | Delegated to upstream installer | | Codex | ✅ | ~/.codex/skills | | Claude Code | ✅ | ~/.claude/skills | | OpenCode skills | ✅ | ~/.config/opencode/skills | | OpenCode plugins | ✅ | ~/.config/opencode/plugins | | Gemini extensions | ✅ | ~/.gemini/extensions | | Hermes | ✅ | ~/.hermes/skills | | Cursor | ✅ | ~/.cursor/skills | | Copilot | ✅ | ~/.copilot/skills | | Claude plugins | ⏭️ | Skipped — uses marketplace flow | | Gemini plugin catalog | ⏭️ | Skipped — extension-only |

User install paths:

| Target | Path | |--------|------| | Codex | ~/.codex/skills | | Claude | ~/.claude/skills | | OpenCode (skills) | ~/.config/opencode/skills | | OpenCode (plugins) | ~/.config/opencode/plugins | | Gemini | ~/.gemini/extensions | | Hermes | ~/.hermes/skills | | Cursor | ~/.cursor/skills | | Copilot | ~/.copilot/skills |

Bootstrap state: ~/.local/state/aimagician-skills/manifest.json (Linux) / %LOCALAPPDATA%\aimagician-skills (Windows).


Contributing

  • PRs and issues welcome.
  • npm run build to compile, npm test to run tests.
  • README changes: sync with docs/README.en.md.

License

MIT — see LICENSE.