Source profileQuality 91/100

anthropics/claude-plugins-official/plugins/plugin-dev/skills/agent-development/SKILL.md

agent-development

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.

Source repository stars
33,927
Declared platforms
1
Static risk flags
1
Last source update
2026-08-25
Source checked
2026-08-25

Decision brief

What it does: where it fits

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.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeDeclaredSource recordInstall path and trigger
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/anthropics/claude-plugins-official --skill "plugins/plugin-dev/skills/agent-development"
    Safe inspection promptEditorial

    Inspect the Agent Skill "agent-development" from https://github.com/anthropics/claude-plugins-official/blob/b819188d2eea14e0400556ca29dbd1179a7c595b/plugins/plugin-dev/skills/agent-development/SKILL.md at commit b819188d2eea14e0400556ca29dbd1179a7c595b. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Implementation Workflow

      To create an agent for a plugin:

      Define agent purpose and triggering conditionsChoose creation method (AI-assisted or manual)Create agents/agent-name.md file
    2. 02

      Agent File Structure

      markdown --- name: agent-identifier description: Use this agent when [triggering conditions]. Typical triggers include [scenario 1 in prose], [scenario 2 in prose], and [scenario 3 in prose]. See "When to invoke" in the agent body for worked scenarios. model: inherit color: blue…

      markdown --- name: agent-identifier description: Use this agent when [triggering conditions]. Typical triggers include [scenario 1 in prose], [scenario 2 in prose], and [scenario 3 in prose]. See "When to invoke" in the…You are [agent role description]...
    3. 03

      Complete Format

      markdown --- name: agent-identifier description: Use this agent when [triggering conditions]. Typical triggers include [scenario 1 in prose], [scenario 2 in prose], and [scenario 3 in prose]. See "When to invoke" in the agent body for worked scenarios. model: inherit color: blue…

      markdown --- name: agent-identifier description: Use this agent when [triggering conditions]. Typical triggers include [scenario 1 in prose], [scenario 2 in prose], and [scenario 3 in prose]. See "When to invoke" in the…You are [agent role description]...
    4. 04

      When to invoke

      [Two to four representative scenarios written as prose, e.g.:] - [Scenario name]. [What the situation looks like and what the agent should do.] - [Scenario name]. [Same.]

      [Scenario name]. [What the situation looks like and what the agent should do.][Scenario name]. [Same.][Responsibility 1]
    5. 05

      Frontmatter Fields

      Agent identifier used for namespacing and invocation.

      code-reviewertest-generatorapi-docs-writer

    Permission review

    Static risk signals and limitations

    Writes files

    medium · line 388

    The documentation asks the agent to create, modify, or delete local files.

    Create `agents/agent-name.md` file

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars33,927SourceRepository attention, not individual Skill quality
    Compatibility1 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    anthropics/claude-plugins-official
    Skill path
    plugins/plugin-dev/skills/agent-development/SKILL.md
    Commit
    b819188d2eea14e0400556ca29dbd1179a7c595b
    License
    Apache-2.0
    Collected
    2026-08-25
    Default branch
    main
    View the original SKILL.md

    Agent Development for Claude Code Plugins

    Overview

    Agents are autonomous subprocesses that handle complex, multi-step tasks independently. Understanding agent structure, triggering conditions, and system prompt design enables creating powerful autonomous capabilities.

    Key concepts:

    • Agents are FOR autonomous work, commands are FOR user-initiated actions
    • Markdown file format with YAML frontmatter
    • Triggering via description field with examples
    • System prompt defines agent behavior
    • Model and color customization

    Agent File Structure

    Complete Format

    ---
    name: agent-identifier
    description: Use this agent when [triggering conditions]. Typical triggers include [scenario 1 in prose], [scenario 2 in prose], and [scenario 3 in prose]. See "When to invoke" in the agent body for worked scenarios.
    model: inherit
    color: blue
    tools: ["Read", "Write", "Grep"]
    ---
    
    You are [agent role description]...
    
    ## When to invoke
    
    [Two to four representative scenarios written as prose, e.g.:]
    - **[Scenario name].** [What the situation looks like and what the agent should do.]
    - **[Scenario name].** [Same.]
    
    **Your Core Responsibilities:**
    1. [Responsibility 1]
    2. [Responsibility 2]
    
    **Analysis Process:**
    [Step-by-step workflow]
    
    **Output Format:**
    [What to return]
    

    Frontmatter Fields

    name (required)

    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-reviewer
    • test-generator
    • api-docs-writer
    • security-analyzer

    Bad examples:

    • helper (too generic)
    • -agent- (starts/ends with hyphen)
    • my_agent (underscores not allowed)
    • ag (too short, < 3 chars)

    description (required)

    Defines when Claude should trigger this agent. This is the most critical field — it is loaded into context whenever the agent is registered, so the harness can decide when to dispatch.

    Must include:

    1. Triggering conditions ("Use this agent when...")
    2. A short prose summary of the typical trigger scenarios
    3. A pointer to a "When to invoke" section in the agent body for the detailed worked scenarios

    Format:

    Use this agent when [conditions]. Typical triggers include [scenario 1 in prose], [scenario 2 in prose], and [scenario 3 in prose]. See "When to invoke" in the agent body for worked scenarios.
    

    Best practices:

    • Name 2-4 trigger scenarios in the prose summary
    • Cover both proactive (assistant invokes itself) and reactive (user requests) triggering
    • Cover different phrasings of the same intent
    • Be specific about when NOT to use the agent
    • Put detailed scenarios in the body under "When to invoke" as a bullet list of prose descriptions

    model (required)

    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)

    Recommendation: Use inherit unless agent needs specific model capabilities.

    color (required)

    Visual identifier for agent in UI.

    Options: blue, cyan, green, yellow, magenta, red

    Guidelines:

    • Choose distinct colors for different agents in same plugin
    • Use consistent colors for similar agent types
    • Blue/cyan: Analysis, review
    • Green: Success-oriented tasks
    • Yellow: Caution, validation
    • Red: Critical, security
    • Magenta: Creative, generation

    tools (optional)

    Restrict agent to specific tools.

    Format: Array of 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-only analysis: ["Read", "Grep", "Glob"]
    • Code generation: ["Read", "Write", "Grep"]
    • Testing: ["Read", "Bash", "Grep"]
    • Full access: Omit field or use ["*"]

    System Prompt Design

    The markdown body becomes the agent's system prompt. Write in second person, addressing the agent directly.

    Structure

    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]
    

    Best Practices

    DO:

    • Write in second person ("You are...", "You will...")
    • Be specific about responsibilities
    • Provide step-by-step process
    • Define output format
    • Include quality standards
    • Address edge cases
    • Keep under 10,000 characters

    DON'T:

    • Write in first person ("I am...", "I will...")
    • Be vague or generic
    • Omit process steps
    • Leave output format undefined
    • Skip quality guidance
    • Ignore error cases

    Creating Agents

    Method 1: AI-Assisted Generation

    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
       - A "When to invoke" section listing 2-4 trigger scenarios as prose bullets
    4. Create identifier (lowercase, hyphens, 3-50 chars)
    5. Write description with triggering conditions and a short prose summary of trigger scenarios
    
    Return JSON with:
    {
      "identifier": "agent-name",
      "whenToUse": "Use this agent when... Typical triggers include [...]. See \"When to invoke\" in the agent body.",
      "systemPrompt": "You are..."
    }
    

    Then convert to agent file format with frontmatter.

    See examples/agent-creation-prompt.md for complete template.

    Method 2: Manual Creation

    1. Choose agent identifier (3-50 chars, lowercase, hyphens)
    2. Write description with examples
    3. Select model (usually inherit)
    4. Choose color for visual identification
    5. Define tools (if restricting access)
    6. Write system prompt with structure above
    7. Save as agents/agent-name.md

    Validation Rules

    Identifier Validation

    ✅ Valid: code-reviewer, test-gen, api-analyzer-v2
    ❌ Invalid: ag (too short), -start (starts with hyphen), my_agent (underscore)
    

    Rules:

    • 3-50 characters
    • Lowercase letters, numbers, hyphens only
    • Must start and end with alphanumeric
    • No underscores, spaces, or special characters

    Description Validation

    Length: 10-5,000 characters Must include: Triggering conditions and examples Best: 200-1,000 characters with 2-4 examples

    System Prompt Validation

    Length: 20-10,000 characters Best: 500-3,000 characters Structure: Clear responsibilities, process, output format

    Agent Organization

    Plugin Agents Directory

    plugin-name/
    └── agents/
        ├── analyzer.md
        ├── reviewer.md
        └── generator.md
    

    All .md files in agents/ are auto-discovered.

    Namespacing

    Agents are namespaced automatically:

    • Single plugin: agent-name
    • With subdirectories: plugin:subdir:agent-name

    Testing Agents

    Test Triggering

    Create test scenarios to verify agent triggers correctly:

    1. Write agent with specific triggering examples
    2. Use similar phrasing to examples in test
    3. Check Claude loads the agent
    4. Verify agent provides expected functionality

    Test System Prompt

    Ensure system prompt is complete:

    1. Give agent typical task
    2. Check it follows process steps
    3. Verify output format is correct
    4. Test edge cases mentioned in prompt
    5. Confirm quality standards are met

    Quick Reference

    Minimal Agent

    ---
    name: simple-agent
    description: Use this agent when [condition]. Typical triggers include [trigger 1] and [trigger 2]. See "When to invoke" in the agent body.
    model: inherit
    color: blue
    ---
    
    You are an agent that [does X].
    
    ## When to invoke
    
    - **[Scenario A].** [Description.]
    - **[Scenario B].** [Description.]
    
    Process:
    1. [Step 1]
    2. [Step 2]
    
    Output: [What to provide]
    

    Frontmatter Fields Summary

    FieldRequiredFormatExample
    nameYeslowercase-hyphenscode-reviewer
    descriptionYesProse triggersUse when... Typical triggers include...
    modelYesinherit/sonnet/opus/haikuinherit
    colorYesColor nameblue
    toolsNoArray of tool names["Read", "Grep"]

    Best Practices

    DO:

    • ✅ Name 2-4 trigger scenarios in the description (as prose)
    • ✅ Put detailed worked scenarios in a "When to invoke" body section, as prose bullets
    • ✅ Write specific triggering conditions
    • ✅ Use inherit for model unless specific need
    • ✅ Choose appropriate tools (least privilege)
    • ✅ Write clear, structured system prompts
    • ✅ Test agent triggering thoroughly

    DON'T:

    • ❌ Use generic descriptions without trigger scenarios
    • ❌ Omit triggering conditions
    • ❌ Give all agents same color
    • ❌ Grant unnecessary tool access
    • ❌ Write vague system prompts
    • ❌ Skip testing

    Additional Resources

    Reference Files

    For detailed guidance, consult:

    • references/system-prompt-design.md - Complete system prompt patterns
    • references/triggering-examples.md - Example formats and best practices
    • references/agent-creation-system-prompt.md - The exact prompt from Claude Code

    Example Files

    Working examples in examples/:

    • agent-creation-prompt.md - AI-assisted agent generation template
    • complete-agent-examples.md - Full agent examples for different use cases

    Utility Scripts

    Development tools in scripts/:

    • validate-agent.sh - Validate agent file structure
    • test-agent-trigger.sh - Test if agent triggers correctly

    Implementation Workflow

    To create an agent for a plugin:

    1. Define agent purpose and triggering conditions
    2. Choose creation method (AI-assisted or manual)
    3. Create agents/agent-name.md file
    4. Write frontmatter with all required fields
    5. Write system prompt following best practices
    6. Name 2-4 trigger scenarios in description (prose) and detail them in a "When to invoke" body section
    7. Validate with scripts/validate-agent.sh
    8. Test triggering with real scenarios
    9. Document agent in plugin README

    Focus on clear triggering conditions and comprehensive system prompts for autonomous operation.

    Frequently asked questions

    What to verify before installation and use

    What does the agent-development source document cover?

    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.

    How do I install agent-development?

    The source record exposes this install command: npx skills add https://github.com/anthropics/claude-plugins-official --skill "plugins/plugin-dev/skills/agent-development". Inspect the command and pinned source before running it.

    Which Agent platforms does the source record declare?

    The pinned source record declares support for: claude code.

    Which permission-related actions were detected?

    Static rules flagged write-files in the source; the page lists the matching lines and excerpts.

    Alternatives

    Compare before choosing

    Computed 1008

    narrative-io/narrative-skills-marketplace

    design-analysis

    Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "

    Computed 9980

    vasilyu1983/AI-Agents-public

    qa-testing-ios

    Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.

    Computed 97223

    yonatangross/orchestkit

    verify

    Grade work that already exists and decide whether it can merge. Runs the project's current unit, integration, and E2E suites plus security scanning and type checking, scores every dimension 0-10, and returns a merge verdict with a VERIFIED-vs-CLAIMED evidence manifest. Writes no test files and edits no source. Use when verifying changes are ready to merge. Use /ork:cover instead when the tests still have to be written.

    Computed 97203

    PramodDutta/qaskills

    Pairwise Test Generator

    Generate optimized test combinations using pairwise (all-pairs) testing algorithms to achieve maximum coverage with minimum test cases across multiple input parameters