By nokodoko
Scaffolds new Claude Code plugins with interactive component selection
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
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub nokodoko/agents --plugin plugin-generatorSpecialized sub-agents for code review: Code Reviewer, Code Simplifier, Security Reviewer, Tech Lead, and UX Reviewer
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.
Claude Agent SDK Development Plugin
Create skills, subagents, hooks, commands, and plugins for Claude Code
Complete plugin development toolkit for creating, refactoring, and validating Claude Code plugins and agents. Use when creating new plugins/skills/agents, refactoring existing plugins/skills, validating frontmatter, or restructuring plugin components. Includes specialized agents for assessment, planning, execution, and validation workflows.
Interactive plugin builder for Claude Code - serves as both an example plugin and a tool to create new plugins through guided prompts with specialized builder skills for each component type
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.