claude-code-subagents-collection

by davepoon

Pending

Claude Code Subagents & Commands Collection + CLI Tool

2,097stars
232forks
TypeScript
Added 12/27/2025
AI Agentsclaudeclaude-codeclaude-code-commandscli-toolcommandsmcpmcp-servermcp-toolssubagents
Installation
# Add to your Claude Code skills
git clone https://github.com/davepoon/claude-code-subagents-collection
README.md

Claude Code Subagents & Commands Collection

Open Source npm version License: MIT PRs Welcome GitHub stars

A comprehensive collection of specialized AI subagents and slash commands for Claude Code, designed to enhance development workflows with domain-specific expertise and powerful automation.

🌐 Now with a Web UI and CLI Tool!

Browse, search, and install both subagents and commands instantly at buildwithclaude.com

Claude Code Subagents Homepage

Browse Subagents

Browse Commands

🚀 CLI Tool for Easy Installation

Install and manage subagents and commands directly from your terminal with our new CLI tool:

# Install the CLI for current user
npm install -g bwc-cli

# Initialize user configuration (default)
bwc init

# Or initialize project configuration (team sharing)
bwc init --project

# Add subagents or commands (goes to project if project config exists)
bwc add --agent python-pro
bwc add --command dockerize

# Browse and install interactively
bwc add

# Check configuration status
bwc status
bwc status --verify-mcp  # Deep MCP server verification

# List available items
bwc list --agents
bwc list --commands
bwc list --mcps

# Search for specific tools
bwc search python

Learn more about the CLI tool at buildwithclaude.com/docs/cli

🔌 MCP Server Support (New!) - Docker & Remote

Connect Claude to external tools through two providers:

  • Docker MCP: 100+ containerized servers for local tools
  • Remote MCP: SSE/HTTP endpoints for cloud services

MCP Servers

# Docker MCP Servers (requires Docker Desktop)
bwc add --mcp postgres --docker-mcp --scope project
bwc add --mcp redis --docker-mcp --scope user

# Remote MCP Servers (SSE/HTTP)
bwc add --mcp linear-server --transport sse \
  --url https://mcp.linear.app/sse --scope project

bwc add --mcp api-server --transport http \
  --url https://api.example.com --header "Authorization: Bearer token" \
  --scope project

# Verify installations
bwc status --verify-mcp

# List servers by scope
bwc list --mcps              # All servers
bwc list --mcps --user       # User-installed
bwc list --mcps --project    # Project-installed

Installation Scopes

  • Local Scope: Current machine only ...