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

bbr-claude-skills

v1.3.0

Published

Community-driven skill collection for Claude Code

Downloads

38

Readme

BBR Claude Skills

Community-driven skill collection for Claude Code — Anthropic's CLI for Claude.

Skills teach Claude Code how to handle specific tasks better. They load on-demand, preserve context, and work across all your projects.

What's Inside

| Skill | Description | |-------|-------------| | subagent-orchestration | Patterns for deploying subagents efficiently — parallel research, context priming, background test writing, log monitoring, memory extraction, and isolating verbose operations. | | house-party-protocol | Multi-agent team orchestration with study group swarming, model-per-role strategy, consensus voting, and hook-based quality gates. Goes beyond vanilla agent teams. |

Contribute yours!

Install

npx bbr-claude-skills

That's it. You'll be asked to choose a scope:

  Where should skills be installed?

  1  Global (~/.claude/skills/)
     Available in all your projects

  2  Project (.claude/skills/)
     Only this project, can commit to git for team sharing

  Choose [1/2]:

Update

npx bbr-claude-skills update

Other Commands

| Command | What it does | |---------|--------------| | npx bbr-claude-skills | Interactive install with scope selection | | npx bbr-claude-skills update | Pull latest from GitHub | | npx bbr-claude-skills list | Show installed skills | | npx bbr-claude-skills version | Show version info | | npx bbr-claude-skills uninstall | Remove all managed skills |

Usage in Claude Code

Automatic

Claude Code automatically discovers installed skills and uses them when relevant. Just work normally — Claude will apply the right skill when a task matches.

Manual Invocation

Invoke any skill directly with its slash command:

/subagent-orchestration

How It Works

Skills follow the Agent Skills open standard adopted by Anthropic.

GitHub Repo                        Your Machine
────────────                       ────────────
skills/                            ~/.bbr-claude-skills/repo/  (cloned)
  subagent-orchestration/              ↓ symlinked
    SKILL.md              ───→     ~/.claude/skills/subagent-orchestration/
                                   (or .claude/skills/ for project scope)

The installer clones the repo once, then creates symlinks. Updates pull latest and re-link — no files copied, always up to date.

Each skill has a SKILL.md with:

  • YAML frontmattername and description for discovery
  • Markdown body — Instructions Claude follows when the skill activates

Included Skills

Subagent Orchestration

Teaches Claude Code efficient patterns for deploying subagents:

| Pattern | When to Use | Agent Type | |---------|-------------|------------| | Context Priming | Before implementing a feature | Explore (background) | | Parallel Research | Multiple independent lookups | Explore (background) | | Memory Extraction | Context window filling up | general-purpose (background) | | Server Log Monitoring | Testing with local server | Bash background task | | Background Test Writing | Feature + tests simultaneously | general-purpose (background) | | Isolating Verbose Ops | Running test suites/builds | general-purpose (foreground) |

Core principle: Your main conversation is expensive real estate. Delegate verbose, exploratory, or independent work to subagents.

House Party Protocol

Multi-agent team orchestration that goes beyond vanilla agent teams:

| Feature | What It Adds | |---------|-------------| | Study Group Swarming | Free agents join busy ones — guided subtask splitting, not random task claiming | | Model-per-Role | Opus for specialists, Sonnet for workers, Haiku for scouts | | Consensus Voting | Adversarial debate, parallel+judge, majority agreement | | Quality Gates | TeammateIdle and TaskCompleted hook enforcement | | Party Compositions | Pre-built team templates (Research, Build, Debug, Review) with model assignments |

Core principle: Better orchestration beats smarter models. Break work into focused subtasks, let agents solve them in parallel, and when someone finishes — they join whoever needs help most.

Project Structure

bbr-claude-skills/
├── README.md
├── LICENSE                 # MIT
├── CONTRIBUTING.md         # How to add skills
├── package.json            # npm package (enables npx)
├── bin/
│   └── cli.js              # CLI entrypoint
├── skills/
│   ├── subagent-orchestration/
│   │   └── SKILL.md
│   └── house-party-protocol/
│       └── SKILL.md
└── docs/
    └── skill-authoring.md  # Guide for creating new skills

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

To add a skill:

  1. Fork this repo
  2. Create skills/your-skill-name/SKILL.md
  3. Test locally with ln -s $(pwd)/skills/your-skill-name ~/.claude/skills/your-skill-name
  4. Open a Pull Request

Resources

License

MIT — see LICENSE


Built by BlackBodyRad with Claude Code.