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