Custom code review agents
npx claudepluginhub nokodoko/agentsSpecialized sub-agents for code review: Code Reviewer, Code Simplifier, Security Reviewer, Tech Lead, and UX Reviewer
Scaffolds new Claude Code plugins with interactive component selection
Generates Datadog Terraform infrastructure for new client engagements. Creates S3 backends, monitors, dashboards, roles, and API keys based on client questionnaire responses. Supports AWS, GCP, and Azure.
A collection of specialized agents, plugins, and tooling for Claude Code.
Five specialized sub-agents for comprehensive code review:
| Command | Agent | Model | Purpose |
|---|---|---|---|
/code-review <target> | Code Reviewer | sonnet | Code quality, DRY, architecture |
/security-review <target> | Security Reviewer | opus | OWASP vulnerabilities, threat analysis |
/tech-lead <target> | Tech Lead | opus | Architecture, tech debt, risk assessment |
/ux-review <target> | UX Reviewer | haiku | Accessibility, error handling, responsive design |
/code-simplify <target> | Code Simplifier | haiku | Reduce complexity, remove dead code |
/review-all <target> | All agents | mixed | Run all five in parallel |
Scaffold new Claude Code plugins interactively:
/plugin-generator:generate [plugin-name]
Creates plugins with:
agents/
├── agents/ # Agent prompt definitions
├── commands/ # Slash commands that invoke agents
├── plugins/ # Claude Code plugins
│ ├── code-review-agents/ # Plugin exposing review commands
│ └── plugin_generator/ # Plugin scaffolding tool
├── settings/ # User settings (LSP, MCP, hooks)
├── .claude-plugin/ # Marketplace registry
├── config.json # Agent metadata
└── run_agent.py # CLI helper for agent invocation
# Install code review agents
claude plugin install code-review-agents@agents
# Install plugin generator
claude plugin install plugin-generator@agents
Copy to your plugins directory:
cp -r plugins/plugin_generator ~/.claude/plugins/
cp -r plugins/code-review-agents ~/.claude/plugins/
# In a Claude Code session
/code-review ./src/
/security-review ./api/
/review-all ./project/
/plugin-generator:generate my-awesome-plugin
python run_agent.py --list # List available agents
python run_agent.py code_reviewer ./src/ # Get Task config for one agent
python run_agent.py --all ./src/ # Get Task configs for all agents
Create prompt file in agents/<agent_name>.md:
# Agent Name
**Model:** sonnet|opus|haiku
## System Prompt
<prompt content>
Add entry to config.json under agents
Create command in commands/<command-name>.md
MIT
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.