$git clone https://github.com/davepoon/buildwithclaudeA plugin marketplace and discovery platform for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). Browse curated plugins, discover community contributions, and extend your Claude Code workflows.
| 1 | # Build with Claude |
| 2 | |
| 3 | ## **Claude Skills, Agents, Commands, Hooks, Plugins, Marketplaces collections for and extend Claude Code** |
| 4 | |
| 5 | [](https://opensource.org/) |
| 6 | [](https://opensource.org/licenses/MIT) |
| 7 | [](CONTRIBUTING.md) |
| 8 | [](https://github.com/davepoon/buildwithclaude) |
| 9 | |
| 10 | |
| 11 | **A plugin marketplace and discovery platform for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). Browse curated plugins, discover community contributions, and extend your Claude Code workflows.** |
| 12 | |
| 13 | ## Quick Start |
| 14 | |
| 15 | ```bash |
| 16 | # Add the Build with Claude marketplace |
| 17 | /plugin marketplace add davepoon/buildwithclaude |
| 18 | |
| 19 | # Browse available plugins |
| 20 | /plugin search @buildwithclaude |
| 21 | |
| 22 | # Install plugins |
| 23 | /plugin install <plugin-name>@buildwithclaude |
| 24 | ``` |
| 25 | |
| 26 | ## What's Included |
| 27 | |
| 28 | ### Build with Claude Plugins |
| 29 | |
| 30 | Curated collections maintained in this repository: |
| 31 | |
| 32 | | Type | Count | Description | |
| 33 | |------|-------|-------------| |
| 34 | | **Agents** | 117 | Specialized AI experts (Python, Go, DevOps, Security, etc.) | |
| 35 | | **Commands** | 175 | Slash commands for automation (`/commit`, `/docs`, `/tdd`) | |
| 36 | | **Hooks** | 28 | Event-driven automation (notifications, git, formatting) | |
| 37 | | **Skills** | 26 | Reusable capabilities from plugins | |
| 38 | | **Plugins** | 51 | Bundled plugin packages by category | |
| 39 | |
| 40 | ### Community Discovery |
| 41 | |
| 42 | The platform indexes plugins from the broader Claude Code ecosystem: |
| 43 | |
| 44 | - **20k+ Community Plugins** from external marketplaces |
| 45 | - **4,500+ MCP Servers** for database, API, and tool connections |
| 46 | - **1,100+ Plugin Marketplaces** from the community |
| 47 | |
| 48 | |
| 49 | ## Web UI |
| 50 | |
| 51 | Browse, search, and explore everything at **[buildwithclaude.com](https://www.buildwithclaude.com)** |
| 52 | |
| 53 |  |
| 54 | |
| 55 |  |
| 56 | |
| 57 |  |
| 58 | |
| 59 |  |
| 60 | |
| 61 |  |
| 62 | |
| 63 | ### Features |
| 64 | |
| 65 | - Browse all plugin types with filtering |
| 66 | - Search across plugins, agents, commands, hooks, skills |
| 67 | - Copy install commands with one click |
| 68 | - View full documentation and usage examples |
| 69 | - Discover MCP servers and community plugins |
| 70 | |
| 71 | ## Installation Options |
| 72 | |
| 73 | ### Option 1: Plugin Marketplace (Recommended) |
| 74 | |
| 75 | ```bash |
| 76 | # Add marketplace |
| 77 | /plugin marketplace add davepoon/buildwithclaude |
| 78 | |
| 79 | # Install specific plugins |
| 80 | /plugin install agents-python-expert@buildwithclaude |
| 81 | /plugin install commands-version-control-git@buildwithclaude |
| 82 | /plugin install hooks-notifications@buildwithclaude |
| 83 | |
| 84 | # Or install everything |
| 85 | /plugin install all-agents@buildwithclaude |
| 86 | /plugin install all-commands@buildwithclaude |
| 87 | /plugin install all-hooks@buildwithclaude |
| 88 | ``` |
| 89 | |
| 90 | ### Option 2: Manual Installation |
| 91 | |
| 92 | ```bash |
| 93 | # Clone repository |
| 94 | git clone https://github.com/davepoon/buildwithclaude.git |
| 95 | cd buildwithclaude |
| 96 | |
| 97 | # Install agents |
| 98 | find plugins/agents-*/agents -name "*.md" -exec cp {} ~/.claude/agents/ \; |
| 99 | |
| 100 | # Install commands |
| 101 | find plugins/commands-*/commands -name "*.md" -exec cp {} ~/.claude/commands/ \; |
| 102 | |
| 103 | # Restart Claude Code |
| 104 | ``` |
| 105 | |
| 106 | ## Available Plugin Categories |
| 107 | |
| 108 | ### Agents (11 categories) |
| 109 | |
| 110 | - **Development & Architecture** - Backend, frontend, mobile, GraphQL experts |
| 111 | - **Language Specialists** - Python, Go, Rust, TypeScript, C/C++ experts |
| 112 | - **Quality & Security** - Code review, security audit, debugging |
| 113 | - **Infrastructure & Operations** - DevOps, cloud, database optimization |
| 114 | - **Data & AI** - ML engineering, data pipelines, AI development |
| 115 | - **Crypto & Blockchain** - Trading systems, DeFi, Web3 development |
| 116 | |
| 117 | [Browse all agents →](https://www.buildwithclaude.com/subagents) |
| 118 | |
| 119 |  |
| 120 | |
| 121 | ### Commands (22 categories) |
| 122 | |
| 123 | - **Version Control** - Commit, PR cre |