{
  "markdown": "# Build with Claude\n\n## **Claude Skills, Agents, Commands, Hooks, Plugins, Marketplaces collections for and extend Claude Code**\n\n[![Open Source](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://opensource.org/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)\n[![GitHub stars](https://img.shields.io/github/stars/davepoon/buildwithclaude.svg?style=social&label=Star)](https://github.com/davepoon/buildwithclaude)\n\n\n**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.**\n\n## Quick Start\n\n```bash\n# Add the Build with Claude marketplace\n/plugin marketplace add davepoon/buildwithclaude\n\n# Browse available plugins\n/plugin search @buildwithclaude\n\n# Install plugins\n/plugin install <plugin-name>@buildwithclaude\n```\n\n## What's Included\n\n### Build with Claude Plugins\n\nCurated collections maintained in this repository:\n\n| Type | Count | Description |\n|------|-------|-------------|\n| **Agents** | 117 | Specialized AI experts (Python, Go, DevOps, Security, etc.) |\n| **Commands** | 175 | Slash commands for automation (`/commit`, `/docs`, `/tdd`) |\n| **Hooks** | 28 | Event-driven automation (notifications, git, formatting) |\n| **Skills** | 26 | Reusable capabilities from plugins |\n| **Plugins** | 51 | Bundled plugin packages by category |\n\n### Community Discovery\n\nThe platform indexes plugins from the broader Claude Code ecosystem:\n\n- **20k+ Community Plugins** from external marketplaces\n- **4,500+ MCP Servers** for database, API, and tool connections\n- **1,100+ Plugin Marketplaces** from the community\n\n\n## Web UI\n\nBrowse, search, and explore everything at **[buildwithclaude.com](https://www.buildwithclaude.com)**\n\n![Build with Claude Homepage](buildwithclaude-homepage.png)\n\n![Browse Plugins](buildwithclaude-plugins.png)\n\n![Browse Skills](buildwithclaude-skills.png)\n\n![Browse MCP Servers](buildwithclaude-mcp.png)\n\n![Browse Plugin Marketplaces](buildwithclaude-plugin-marketplaces.png)\n\n### Features\n\n- Browse all plugin types with filtering\n- Search across plugins, agents, commands, hooks, skills\n- Copy install commands with one click\n- View full documentation and usage examples\n- Discover MCP servers and community plugins\n\n## Installation Options\n\n### Option 1: Plugin Marketplace (Recommended)\n\n```bash\n# Add marketplace\n/plugin marketplace add davepoon/buildwithclaude\n\n# Install specific plugins\n/plugin install agents-python-expert@buildwithclaude\n/plugin install commands-version-control-git@buildwithclaude\n/plugin install hooks-notifications@buildwithclaude\n\n# Or install everything\n/plugin install all-agents@buildwithclaude\n/plugin install all-commands@buildwithclaude\n/plugin install all-hooks@buildwithclaude\n```\n\n### Option 2: Manual Installation\n\n```bash\n# Clone repository\ngit clone https://github.com/davepoon/buildwithclaude.git\ncd buildwithclaude\n\n# Install agents\nfind plugins/agents-*/agents -name \"*.md\" -exec cp {} ~/.claude/agents/ \\;\n\n# Install commands\nfind plugins/commands-*/commands -name \"*.md\" -exec cp {} ~/.claude/commands/ \\;\n\n# Restart Claude Code\n```\n\n## Available Plugin Categories\n\n### Agents (11 categories)\n\n- **Development & Architecture** - Backend, frontend, mobile, GraphQL experts\n- **Language Specialists** - Python, Go, Rust, TypeScript, C/C++ experts\n- **Quality & Security** - Code review, security audit, debugging\n- **Infrastructure & Operations** - DevOps, cloud, database optimization\n- **Data & AI** - ML engineering, data pipelines, AI development\n- **Crypto & Blockchain** - Trading systems, DeFi, Web3 development\n\n[Browse all agents →](https://www.buildwithclaude.com/subagents)\n\n![Browse Subagents](buildwithclaude-subagents.png)\n\n### Commands (22 categories)\n\n- **Version Control** - Commit, PR creation, branch management\n- **Code Analysis** - Testing, review, optimization\n- **Documentation** - Docs generation, changelogs, API specs\n- **Project Management** - Todos, PRDs, task tracking\n\n[Browse all commands →](https://www.buildwithclaude.com/commands)\n\n![Browse Commands](buildwithclaude-commands.png)\n\n### Hooks (8 categories)\n\n- **Notifications** - Slack, Discord, Telegram alerts\n- **Git** - Auto-staging, smart commits\n- **Development** - Lint on save, auto-format\n- **Security** - File protection, vulnerability scanning\n\n[Browse all hooks →](https://www.buildwithclaude.com/hooks)\n\n![Browse Hooks](buildwithclaude-hooks.png)\n\n## Usage Examples\n\n### Using Agents\n\nAgents are automatically invoked based on context, or explicitly called:\n\n```\n\"Use the python-pro to optimize this function\"\n\"@agent-security-auditor review this authentication code\"\n\"Have the devops-troubleshooter help debug this deployment\"\n```\n\n### Using Commands\n\nCommands use the `/` prefix:\n\n```\n/commit                    # Create conventional commit\n/create-pr                 # Create pull request\n/docs                      # Generate documentation\n/tdd                       # Start test-driven development\n/code_analysis             # Analyze code quality\n```\n\n### Using Hooks\n\nHooks run automatically on events like tool calls or session start.\n\n## Contributing\n\nWe welcome contributions!\n\n### Adding Plugins\n\n1. Create a new directory in `plugins/` following the naming convention\n2. Add your plugin files (agents, commands, hooks)\n3. Run `npm test` to validate\n4. Submit a pull request\n\n### Plugin Format\n\n**Agent** (`plugins/agents-*/agents/*.md`):\n```markdown\n---\nname: agent-name\ndescription: When to invoke this agent\ncategory: category-name\ntools: Read, Write, Bash\n---\n\nYou are a [role description]...\n```\n\n**Command** (`plugins/commands-*/commands/*.md`):\n```markdown\n---\ndescription: What this command does\ncategory: category-name\nargument-hint: <args>\n---\n\nCommand implementation...\n```\n\n**Hook** (`plugins/hooks-*/hooks/*.md`):\n```markdown\n---\nhooks: PreToolUse, PostToolUse\ndescription: What this hook does\n---\n\nHook implementation...\n```\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.\n\n## Links\n\n- **Web UI**: [buildwithclaude.com](https://www.buildwithclaude.com)\n- **Documentation**: [Claude Code Docs](https://docs.anthropic.com/en/docs/claude-code)\n- **Plugin Marketplaces**: [Plugin Docs](https://code.claude.com/docs/en/plugin-marketplaces)\n- **Issues**: [GitHub Issues](https://github.com/davepoon/buildwithclaude/issues)\n- **Visual Index**: [Vexilo · A field guide to Claude Code](https://vexilo.app/?lang=en) — Interactive index of 31 agents · 99 commands · 123 skills · 13 rules, organized around the 5-step workflow. ([companion repo](https://github.com/lilhawk7077/claude-code-resources))\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details.\n\n---\n\nMade with ❤️ by Dave Poon\n",
  "bytes": 6917,
  "sha": "00d965b55e129a6f085143213a7100b284dca3de38e4a20d5ae7fead8723b9a4",
  "repo_slug": "davepoon/buildwithclaude",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_davepoon_buildwithclaude_plugins_all_ski_b7c08f65/readme"
}