This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
/plugin marketplace add sjnims/plugin-dev/plugin install plugin-dev@plugin-dev-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/agent-creation-prompt.mdexamples/complete-agent-examples.mdreferences/agent-creation-system-prompt.mdreferences/system-prompt-design.mdreferences/triggering-examples.mdscripts/create-agent-skeleton.shscripts/test-agent-trigger.shscripts/validate-agent.shAgents are autonomous subprocesses that handle complex, multi-step tasks independently. Master agent structure, triggering conditions, and system prompt design to create powerful autonomous capabilities.
Key concepts:
Important - Field Name Difference: Agents use
toolsto restrict tool access. Skills useallowed-toolsfor the same purpose. Don't confuse these when switching between component types.Note on Official Documentation: The
colorfield documented in this skill is supported by Claude Code and is generated by the built-in/agentscommand, but it is not yet reflected in the official sub-agents documentation. See anthropics/claude-code#8501 for tracking. The plugins-reference.md may show an older agent format using acapabilitiesfield; for Claude Code plugins, prefer the structure documented in this skill which usestoolsfor tool restrictions.
Minimal working agent (copy-paste ready):
---
name: my-reviewer
description: Use this agent when the user asks to review code. Examples:
<example>
Context: User wrote new code
user: "Review my changes"
assistant: "I'll use the my-reviewer agent to analyze the code."
<commentary>
Code review request triggers the agent.
</commentary>
</example>
model: inherit
color: blue
---
You are a code reviewer. Analyze code for issues and provide feedback.
**Process:**
1. Read the code
2. Identify issues
3. Provide recommendations
**Output:** Summary with file:line references for each finding.
For complete format with all options, see Agent File Structure.
| Component | Best For | Triggering | Example Use Case |
|---|---|---|---|
| Agents | Autonomous multi-step tasks | Proactive or description-matched | Code review after implementation |
| Commands | User-initiated actions | Explicit /command invocation | /deploy production |
| Skills | Knowledge and guidance | Model-invoked based on context | Domain expertise for PDF processing |
See also: For command development, load the
command-developmentskill. For skill development, load theskill-developmentskill.
For command development guidance, see the command-development skill.
For skill development guidance, see the skill-development skill.
---
name: agent-identifier
description: Use this agent when [triggering conditions]. Examples:
<example>
Context: [Situation description]
user: "[User request]"
assistant: "[How assistant should respond and use this agent]"
<commentary>
[Why this agent should be triggered]
</commentary>
</example>
<example>
[Additional example...]
</example>
model: inherit
color: blue
tools: Read, Write, Grep
---
You are [agent role description]...
**Your Core Responsibilities:**
1. [Responsibility 1]
2. [Responsibility 2]
**Analysis Process:**
[Step-by-step workflow]
**Output Format:**
[What to return]
Agent identifier used for namespacing and invocation.
Format: lowercase, numbers, hyphens only Length: 3-50 characters Pattern: Must start and end with alphanumeric
Good examples:
code-reviewertest-generatorapi-docs-writersecurity-analyzerBad examples:
helper (too generic)-agent- (starts/ends with hyphen)my_agent (underscores not allowed)ag (too short, < 3 chars)Defines when Claude should trigger this agent. This is the most critical field.
Must include:
<example> blocks showing usage<commentary> explaining why agent triggersFormat:
Use this agent when [conditions]. Examples:
<example>
Context: [Scenario description]
user: "[What user says]"
assistant: "[How Claude should respond]"
<commentary>
[Why this agent is appropriate]
</commentary>
</example>
[More examples...]
Best practices:
Which model the agent should use.
Options:
inherit - Use same model as parent (recommended)sonnet - Claude Sonnet (balanced)opus - Claude Opus (most capable, expensive)haiku - Claude Haiku (fast, cheap)When to choose:
haiku - Fast, simple tasks; quick analysis; cost-sensitive operationssonnet - Balanced performance; most use cases (default recommendation)opus - Complex reasoning; detailed analysis; highest capability neededRecommendation: Use inherit (recommended default) unless the agent specifically needs:
haiku for fast, cost-sensitive operationsopus for complex reasoning requiring maximum capabilityVisual identifier for agent in UI.
Note: This field is supported by Claude Code but not yet in official documentation. See the Overview note for details.
Options: blue, cyan, green, yellow, magenta, red
Guidelines:
Restrict agent to specific tools.
Format: Comma-separated tool names
tools: Read, Write, Grep, Bash
Default: If omitted, agent has access to all tools
Best practice: Limit tools to minimum needed (principle of least privilege)
Common tool sets:
Read, Grep, GlobRead, Write, GrepRead, Bash, GrepImportant: Agents use
toolswhile Skills useallowed-tools. The field names differ between component types. For skill tool restrictions, see theskill-developmentskill.
The markdown body becomes the agent's system prompt. Write in second person, addressing the agent directly.
Standard template:
You are [role] specializing in [domain].
**Your Core Responsibilities:**
1. [Primary responsibility]
2. [Secondary responsibility]
3. [Additional responsibilities...]
**Analysis Process:**
1. [Step one]
2. [Step two]
3. [Step three]
[...]
**Quality Standards:**
- [Standard 1]
- [Standard 2]
**Output Format:**
Provide results in this format:
- [What to include]
- [How to structure]
**Edge Cases:**
Handle these situations:
- [Edge case 1]: [How to handle]
- [Edge case 2]: [How to handle]
✅ DO:
❌ DON'T:
Use this prompt pattern (extracted from Claude Code):
Create an agent configuration based on this request: "[YOUR DESCRIPTION]"
Requirements:
1. Extract core intent and responsibilities
2. Design expert persona for the domain
3. Create comprehensive system prompt with:
- Clear behavioral boundaries
- Specific methodologies
- Edge case handling
- Output format
4. Create identifier (lowercase, hyphens, 3-50 chars)
5. Write description with triggering conditions
6. Include 2-3 <example> blocks showing when to use
Return JSON with:
{
"identifier": "agent-name",
"whenToUse": "Use this agent when... Examples: <example>...</example>",
"systemPrompt": "You are..."
}
Then convert to agent file format with frontmatter.
See examples/agent-creation-prompt.md for complete template.
inherit)agents/agent-name.md✅ Valid: code-reviewer, test-gen, api-analyzer-v2
❌ Invalid: ag (too short), -start (starts with hyphen), my_agent (underscore)
Rules:
Length: 10-5,000 characters Must include: Triggering conditions and examples Best: 200-1,000 characters with 2-4 examples
Length: 20-10,000 characters Best: 500-3,000 characters Structure: Clear responsibilities, process, output format
plugin-name/
└── agents/
├── analyzer.md
├── reviewer.md
└── generator.md
All .md files in agents/ are auto-discovered.
Agents are namespaced automatically:
agent-nameplugin:subdir:agent-nameCreate test scenarios to verify agent triggers correctly:
Ensure system prompt is complete:
---
name: simple-agent
description: Use this agent when... Examples: <example>...</example>
model: inherit
color: blue
---
You are an agent that [does X].
Process:
1. [Step 1]
2. [Step 2]
Output: [What to provide]
| Field | Required | Format | Example |
|---|---|---|---|
| name | Yes | lowercase-hyphens | code-reviewer |
| description | Yes | Text + examples | Use when... <example>... |
| model | Yes | inherit/sonnet/opus/haiku | inherit |
| color | Yes | Color name | blue |
| tools | No | Comma-separated tool names | Read, Grep |
Note: Agents use
toolsto restrict tool access. Skills useallowed-toolsfor the same purpose. The field names differ between component types.
DO:
inherit for model unless specific needDON'T:
For detailed guidance, consult:
references/system-prompt-design.md - Four system prompt patterns (Analysis, Generation, Validation, Orchestration) with complete templates and common pitfallsreferences/triggering-examples.md - Example block anatomy, four example types, template library, and debugging guidereferences/agent-creation-system-prompt.md - The exact prompt used by Claude Code's agent generation feature with usage patternsWorking examples in examples/:
agent-creation-prompt.md - AI-assisted agent generation templatecomplete-agent-examples.md - Full agent examples for different use casesDevelopment tools in scripts/:
create-agent-skeleton.sh - Generate new agent file from templatevalidate-agent.sh - Validate agent file structuretest-agent-trigger.sh - Test if agent triggers correctlyTo create an agent for a plugin:
./skills/agent-development/scripts/create-agent-skeleton.sh agent-name agents/./skills/agent-development/scripts/validate-agent.sh agents/your-agent.mdFocus on clear triggering conditions and comprehensive system prompts for autonomous operation.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.