From claude-code-dev
Creates Claude Code agents with YAML frontmatter for name, description, tools, model selection, and color. Use when adding specialized agents to plugins.
npx claudepluginhub jpoutrin/product-forge --plugin claude-code-devThis skill uses the workspace's default tool permissions.
Create new Claude Code agents with proper configuration and structure.
Guides creation of autonomous agents for Claude Code plugins, covering Markdown file structure, YAML frontmatter (name, description, model, color, tools), system prompts, triggering examples, and best practices.
Generates custom Claude Code agent.md files from purpose-based templates (Reviewer, Generator, Fixer, Tester, Documenter, Orchestrator). Configures tools, model, color; saves to .claude/agents/ and validates.
Guides creation of Claude Code agents including frontmatter fields like name, description with triggering examples, model, tools, system prompts, and file structure.
Share bugs, ideas, or general feedback.
Create new Claude Code agents with proper configuration and structure.
Agents are markdown files in the agents/ directory with YAML frontmatter:
---
name: agent-name
description: Full description of what the agent does and when to use it
tools: Glob, Grep, Read, Write, Edit, Bash, WebFetch, WebSearch, TodoWrite
model: sonnet
color: green
---
# Agent Title
Agent prompt content goes here...
| Field | Description | Example |
|---|---|---|
name | Unique identifier (kebab-case) | code-reviewer |
description | One-line summary of agent's purpose | Reviews code for quality and best practices |
tools | Comma-separated list of available tools | Glob, Grep, Read, Write, Edit, Bash |
model | Model to use: opus, sonnet, or haiku | sonnet |
color | Status line color | green, blue, purple, red, orange, cyan, magenta, yellow, pink, teal, violet |
Common tool combinations by agent type:
Glob, Grep, Read, Write, Edit, Bash, TodoWrite
Glob, Grep, Read, WebFetch, WebSearch, TodoWrite
Glob, Grep, Read, Write, Edit, Bash, WebFetch, WebSearch, TodoWrite
plugins/<plugin-name>/agents/<agent-name>.md---
name: code-reviewer
description: Reviews code changes for quality, security, and best practices. Use when user wants code reviewed, needs security audit, or asks about code quality.
tools: Glob, Grep, Read, TodoWrite
model: sonnet
color: yellow
---
# Code Reviewer Agent
You are an expert code reviewer focused on quality, security, and maintainability.
## Review Checklist
- Code correctness and logic
- Security vulnerabilities
- Performance considerations
- Code style and consistency
- Test coverage
- Documentation
## Output Format
Provide structured feedback with:
1. Summary of changes
2. Issues found (categorized by severity)
3. Recommendations
4. Approval status