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

@stuffbucket/skills

v0.2.7

Published

Agent skills, MCP skill-router server, and dev tooling for Claude, Copilot, and other AI assistants

Downloads

1,277

Readme

Stuffbucket Skills

Agent skills for Claude, Copilot, and other AI assistants, with a bundled MCP skill-router server.

Install as Plugin Marketplace

Claude Code

/plugin marketplace add stuffbucket/skills

Copilot CLI

/plugin marketplace add stuffbucket/skills

Setup

npm run setup    # install deps, create MCP symlinks, build skill index

Available Skills

| Skill | Description | | --- | --- | | skill-router | MCP server — find and load skills on demand (context window optimization) | | skill-creator | Guide for creating, validating, and packaging new skills | | example-skill | Demonstrates proper structure and format | | file-management-skill | File and directory operations | | code-analysis-skill | Code quality and pattern analysis |

MCP Server

The skill-router exposes two tools (list_skills, get_skill) instead of registering every skill separately — constant context window cost regardless of how many skills exist.

npm run test:repl    # interactive REPL

Or configure in any MCP client:

{
  "mcpServers": {
    "skill-router": {
      "command": "npx",
      "args": ["-y", "@stuffbucket/skills"]
    }
  }
}

Structure

plugins/stuffbucket/
├── .mcp.json                          # MCP server config (canonical)
└── skills/
    └── <skill-name>/
        ├── SKILL.md                   # Skill definition (required)
        ├── scripts/                   # Executable scripts (optional)
        ├── references/                # Reference documents (optional)
        └── assets/                    # Static resources (optional)
.mcp.json                              # Symlink → plugins/stuffbucket/.mcp.json
.vscode/mcp.json                       # Symlink → same (VS Code discovery)
.claude-plugin/marketplace.json        # Claude Code plugin manifest
.github/plugin/marketplace.json        # Copilot plugin manifest

Scripts

| Command | What it does | | --- | --- | | npm run setup | Install deps + create MCP symlinks + build index | | npm run build:index | Rebuild the skill-router index | | npm test | Build index + run MCP server smoke tests | | npm run test:repl | Build index + launch interactive REPL | | npm run lint | Lint markdown + JS + JSON schemas | | npm run validate | Validate all skills (frontmatter + content completeness) | | npm run validate:one -- <path> | Validate a single skill | | npm run new -- <name> | Scaffold a new skill | | npm run build:llms | Regenerate llms.txt from template |

Creating a New Skill

npm run new -- my-new-skill
# edit SKILL.md and resource files
npm run validate
npm run package -- plugins/stuffbucket/skills/my-new-skill
# open a New skill issue and attach the .skill file

Skills are auto-discovered. A workflow validates the package and opens a PR automatically. See CONTRIBUTING.md.

Docs