bbr-claude-skills
v1.3.0
Published
Community-driven skill collection for Claude Code
Downloads
38
Maintainers
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. |
Install
npx bbr-claude-skillsThat'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 updateOther 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-orchestrationHow 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 frontmatter —
nameanddescriptionfor 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 skillsContributing
We welcome contributions! See CONTRIBUTING.md for guidelines.
To add a skill:
- Fork this repo
- Create
skills/your-skill-name/SKILL.md - Test locally with
ln -s $(pwd)/skills/your-skill-name ~/.claude/skills/your-skill-name - Open a Pull Request
Resources
- Claude Code Skills Documentation
- Claude Code Subagents Documentation
- Agent Skills Open Standard
- Anthropic Skills Repository
License
MIT — see LICENSE
Built by BlackBodyRad with Claude Code.
