bydustywalker· 1 MCP server
Plugin marketplace for Claude Code featuring production-ready AI agents.
$git clone https://github.com/dustywalker/claude-code-marketplaceInstalls into the current project.
Install claude-code-marketplace by running `git clone https://github.com/dustywalker/claude-code-marketplace`, then use it for the current task and follow its documentation at https://github.com/dustywalker/claude-code-marketplace.
| 1 | # Claude Code Marketplace |
| 2 | |
| 3 | Plugin marketplace for Claude Code featuring production-ready AI agents. |
| 4 | |
| 5 | ## Installation |
| 6 | |
| 7 | ```bash |
| 8 | # Add marketplace |
| 9 | /plugin marketplace add https://github.com/DustyWalker/claude-code-marketplace |
| 10 | |
| 11 | # Install plugin |
| 12 | /plugin install production-agents-suite@claude-code-marketplace |
| 13 | ``` |
| 14 | |
| 15 | ## Production Agents Suite |
| 16 | |
| 17 | 16 specialized AI agents for software development and productivity: |
| 18 | |
| 19 | ### Code Quality (5 agents) |
| 20 | - **code-reviewer** - Code review and best practices validation |
| 21 | - **security-auditor** - OWASP security compliance auditing |
| 22 | - **test-suite-generator** - Unit, integration, and E2E test generation |
| 23 | - **performance-optimizer** - Performance analysis and optimization |
| 24 | - **architecture-checker** - SOLID principles and design pattern validation |
| 25 | |
| 26 | ### Development (4 agents) |
| 27 | - **backend-typescript-architect** - Node.js/TypeScript backend development |
| 28 | - **frontend-developer** - React/Next.js/Vue component development |
| 29 | - **api-designer** - RESTful/GraphQL API specification |
| 30 | - **database-architect** - Database schema design and migrations |
| 31 | |
| 32 | ### Testing (2 agents) |
| 33 | - **test-automator** - E2E test automation with Playwright/Cypress |
| 34 | - **qa-engineer** - QA testing and regression analysis |
| 35 | |
| 36 | ### DevOps (4 agents) |
| 37 | - **deployment-engineer** - Multi-cloud deployment automation |
| 38 | - **cicd-automation** - CI/CD pipeline configuration |
| 39 | - **docker-specialist** - Container optimization |
| 40 | - **refactoring-specialist** - Code refactoring and cleanup |
| 41 | |
| 42 | ### Productivity (1 agent) |
| 43 | - **prompt-builder** - Transform thoughts into structured AI prompts using conversation protocols |
| 44 | |
| 45 | ### Slash Commands |
| 46 | |
| 47 | - `/review` - Code review |
| 48 | - `/test` - Generate tests |
| 49 | - `/security-scan` - Security audit |
| 50 | - `/deploy` - Deploy to staging/production |
| 51 | - `/build-prompt` - Build structured prompts from ideas |
| 52 | |
| 53 | ## Usage |
| 54 | |
| 55 | Agents activate automatically based on context: |
| 56 | |
| 57 | ``` |
| 58 | "Review the authentication code" → security-auditor |
| 59 | "Create a user API" → backend-typescript-architect |
| 60 | "Optimize slow queries" → performance-optimizer |
| 61 | ``` |
| 62 | |
| 63 | Or invoke explicitly: |
| 64 | |
| 65 | ```bash |
| 66 | /review src/auth/ |
| 67 | /test src/services/user.service.ts |
| 68 | /security-scan |
| 69 | ``` |
| 70 | |
| 71 | ## Repository Structure |
| 72 | |
| 73 | ``` |
| 74 | claude-code-marketplace/ |
| 75 | ├── .claude-plugin/ |
| 76 | │ ├── marketplace.json # Marketplace manifest |
| 77 | │ └── plugin.json # Plugin manifest |
| 78 | ├── agents/ # 16 agent files |
| 79 | ├── commands/ # 5 slash commands |
| 80 | ├── hooks/ # Quality gate hooks |
| 81 | ├── settings.json # Security permissions |
| 82 | └── mcp.json # MCP server config |
| 83 | ``` |
| 84 | |
| 85 | ## Contributing |
| 86 | |
| 87 | To add a plugin: |
| 88 | |
| 89 | 1. Create `.claude-plugin/plugin.json` manifest |
| 90 | 2. Add agents/commands with `./` prefix paths |
| 91 | 3. Add entry to `.claude-plugin/marketplace.json` |
| 92 | 4. Test locally |
| 93 | 5. Submit PR |
| 94 | |
| 95 | ## License |
| 96 | |
| 97 | MIT License - See [LICENSE](LICENSE) |
| 98 | |
| 99 | ## Links |
| 100 | |
| 101 | - [Issues](https://github.com/DustyWalker/claude-code-marketplace/issues) |
| 102 | - [Discussions](https://github.com/DustyWalker/claude-code-marketplace/discussions) |