by davepoon
Claude Code Subagents & Commands Collection + CLI Tool
# Add to your Claude Code skills
git clone https://github.com/davepoon/claude-code-subagents-collectionA comprehensive collection of specialized AI subagents and slash commands for Claude Code, designed to enhance development workflows with domain-specific expertise and powerful automation.
Browse, search, and install both subagents and commands instantly at buildwithclaude.com



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
No comments yet. Be the first to share your thoughts!
Learn more about the CLI tool at buildwithclaude.com/docs/cli
Connect Claude to external tools through two providers:

# 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
~/.bwc/config.json)./bwc.config.json and ./.mcp.json)
Note: When bwc init --project is used, all subagents and commands default to project installation
Docker MCP:
Remote MCP (Claude CLI):
Learn more: buildwithclaude.com/mcp-servers
This repository contains:
💡 Tip: For easier installation and management, use our CLI tool (
npm install -g bwc-cli)
# Clone the repository
git clone https://github.com/davepoon/claude-code-subagents-collection.git
cd claude-code-subagents-collection
# Install all subagents
find subagents -name "*.md" -exec cp {} ~/.claude/agents/ \;
# Install all commands
find commands -name "*.md" -exec cp {} ~/.claude/commands/ \;
# Restart Claude Code to load everything
# Clone and install subagents
git clone https://github.com/davepoon/claude-code-subagents-collection.git
find claude-code-subagents-collection/subagents -name "*.md" -exec cp {} ~/.claude/agents/ \;
# Clone and install commands
git clone https://github.com/davepoon/claude-code-subagents-collection.git
find claude-code-subagents-collection/commands -name "*.md" -exec cp {} ~/.claude/commands/ \;
~/.claude/agents/ and ~/.claude/commands/ directoriesVisit our Web UI to browse all subagents and commands:
Note: The Web UI automatically syncs with the main branch. Newly merged subagents and commands appear within minutes of PR merge.
Clone this repository:
git clone https://github.com/davepoon/claude-code-subagents-collection.git
cd claude-code-subagents-collection
Install Subagents:
Option A: Install as User Subagents (available in all projects):
# macOS/Linux - Copy a