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

@gobing-ai/superskill

v0.2.19

Published

A manager for multi-agent skill, slash command, subagent, hook, MCP and etc.

Readme

superskill

Multi-agent skill, command, subagent, hook, and MCP config distribution and authoring CLI. Install a Claude Code plugin to any coding agent, and create / validate / evaluate / refine / evolve agent-facing content from the command line.

Install

npm i -g @gobing-ai/superskill

# or go with bun
bun add -g @gobing-ai/superskill

From source (contributors):

proto use          # install pinned tool versions (Bun, etc.)
bun install
bun run build
cd apps/cli && bun link

Requires Bun ≥ 1.3.14. See Installation guide for details and troubleshooting.

Quick start

# Distribute a plugin cc in current repo to every supported target
superskill install cc --targets all

# Author a skill: scaffold → validate → evaluate → refine
superskill skill scaffold my-skill --description "Deploy a Cloudflare Worker"
superskill skill validate my-skill
superskill skill evaluate my-skill --save
superskill skill refine my-skill --auto

# Package a skill for distribution, or merge skills
superskill skill package my-skill
superskill skill migrate ./source-skill-1 ./source-skill-2 ./dest-skill

# Emit a hook to a single target agent
superskill hook emit my-hook --target pi

Full walkthrough: Quick start guide.

Supported agents

| Agent | Skills | Commands | Subagents | Hooks | |-------|:------:|:--------:|:---------:|:-----:| | Claude Code | ✓ | ✓ | ✓ | ✓ | | Codex | ✓ | ✓ | ✓ | — | | Pi | ✓ | ✓ | ✓ | — | | omp | ✓ | ✓ | ✓ | — | | OpenCode | ✓ | ✓ | ✓ | — | | Antigravity IDE | ✓ | ✓ | — | — | | Antigravity CLI | ✓ | — | — | — | | Hermes | ✓ | ✓ | — | ✓ | | OpenClaw | ✓ | — | — | — |

See entity locations for the exact install directories per agent.

Agents that don't natively support some entity types still get them. superskill install adapts commands and subagents as Skills 2.0 skill directories for targets that lack them — so every agent receives the full plugin surface, regardless of native feature set.

Commands

| Command | What it does | Docs | |---------|-------------|------| | install | Distribute a plugin's skills, commands, subagents, hooks, MCP to target agents | cmd_install.md | | agent | Manage subagent definitions (scaffold / validate / evaluate / refine / evolve) | cmd_agent.md | | skill | Manage skill definitions (+ package, migrate) | cmd_skill.md | | command | Manage slash command definitions | cmd_command.md | | hook | Manage hook definitions (+ emit) | cmd_hook.md | | magent | Manage main-agent configurations | cmd_magent.md |

The five type commands share a common lifecycle: scaffold → validate → evaluate → refine → evolve, with type-specific quality dimensions and rubrics.

Further reading

| Topic | Document | |-------|----------| | Full help index | docs/help/index.md | | Quality system (rubrics, scoring, evolve gate) | docs/help/quality_system.md | | Entity locations per target agent | docs/help/entity_locations.md | | Bundled cc plugin | docs/help/bundled_plugin.md | | Development guide (stack, build, tests) | docs/help/development.md | | Architecture decisions (authoritative) | docs/00_ADR.md | | Product scope | docs/01_PRD.md | | CLI surface reference | docs/04_DESIGN.md |

License

Apache 2.0