[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-agent-development":3,"mdc-n69nqz-key":38,"related-org-anthropic-agent-development":2736,"related-repo-anthropic-agent-development":2920},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":33,"sourceUrl":36,"mdContent":37},"agent-development","develop and configure AI agents","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.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,15,18,21],{"name":9,"slug":8,"type":14},"tag",{"name":16,"slug":17,"type":14},"Documentation","documentation",{"name":19,"slug":20,"type":14},"Plugin Development","plugin-development",{"name":22,"slug":23,"type":14},"Agents","agents",32228,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official","2026-04-10T04:55:41.251084",null,3591,[30,31,32],"claude-code","mcp","skills",{"repoUrl":25,"stars":24,"forks":28,"topics":34,"description":35},[30,31,32],"Official, Anthropic-managed directory of high quality Claude Code Plugins.","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official\u002Ftree\u002FHEAD\u002Fplugins\u002Fplugin-dev\u002Fskills\u002Fagent-development","---\nname: agent-development\ndescription: 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.\nversion: 0.1.0\n---\n\n# Agent Development for Claude Code Plugins\n\n## Overview\n\nAgents are autonomous subprocesses that handle complex, multi-step tasks independently. Understanding agent structure, triggering conditions, and system prompt design enables creating powerful autonomous capabilities.\n\n**Key concepts:**\n- Agents are FOR autonomous work, commands are FOR user-initiated actions\n- Markdown file format with YAML frontmatter\n- Triggering via description field with examples\n- System prompt defines agent behavior\n- Model and color customization\n\n## Agent File Structure\n\n### Complete Format\n\n```markdown\n---\nname: agent-identifier\ndescription: 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.\nmodel: inherit\ncolor: blue\ntools: [\"Read\", \"Write\", \"Grep\"]\n---\n\nYou are [agent role description]...\n\n## When to invoke\n\n[Two to four representative scenarios written as prose, e.g.:]\n- **[Scenario name].** [What the situation looks like and what the agent should do.]\n- **[Scenario name].** [Same.]\n\n**Your Core Responsibilities:**\n1. [Responsibility 1]\n2. [Responsibility 2]\n\n**Analysis Process:**\n[Step-by-step workflow]\n\n**Output Format:**\n[What to return]\n```\n\n## Frontmatter Fields\n\n### name (required)\n\nAgent identifier used for namespacing and invocation.\n\n**Format:** lowercase, numbers, hyphens only\n**Length:** 3-50 characters\n**Pattern:** Must start and end with alphanumeric\n\n**Good examples:**\n- `code-reviewer`\n- `test-generator`\n- `api-docs-writer`\n- `security-analyzer`\n\n**Bad examples:**\n- `helper` (too generic)\n- `-agent-` (starts\u002Fends with hyphen)\n- `my_agent` (underscores not allowed)\n- `ag` (too short, \u003C 3 chars)\n\n### description (required)\n\nDefines 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.\n\n**Must include:**\n1. Triggering conditions (\"Use this agent when...\")\n2. A short prose summary of the typical trigger scenarios\n3. A pointer to a \"When to invoke\" section in the agent body for the detailed worked scenarios\n\n**Format:**\n```\nUse 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.\n```\n\n**Best practices:**\n- Name 2-4 trigger scenarios in the prose summary\n- Cover both proactive (assistant invokes itself) and reactive (user requests) triggering\n- Cover different phrasings of the same intent\n- Be specific about when NOT to use the agent\n- Put detailed scenarios in the body under \"When to invoke\" as a bullet list of prose descriptions\n\n### model (required)\n\nWhich model the agent should use.\n\n**Options:**\n- `inherit` - Use same model as parent (recommended)\n- `sonnet` - Claude Sonnet (balanced)\n- `opus` - Claude Opus (most capable, expensive)\n- `haiku` - Claude Haiku (fast, cheap)\n\n**Recommendation:** Use `inherit` unless agent needs specific model capabilities.\n\n### color (required)\n\nVisual identifier for agent in UI.\n\n**Options:** `blue`, `cyan`, `green`, `yellow`, `magenta`, `red`\n\n**Guidelines:**\n- Choose distinct colors for different agents in same plugin\n- Use consistent colors for similar agent types\n- Blue\u002Fcyan: Analysis, review\n- Green: Success-oriented tasks\n- Yellow: Caution, validation\n- Red: Critical, security\n- Magenta: Creative, generation\n\n### tools (optional)\n\nRestrict agent to specific tools.\n\n**Format:** Array of tool names\n\n```yaml\ntools: [\"Read\", \"Write\", \"Grep\", \"Bash\"]\n```\n\n**Default:** If omitted, agent has access to all tools\n\n**Best practice:** Limit tools to minimum needed (principle of least privilege)\n\n**Common tool sets:**\n- Read-only analysis: `[\"Read\", \"Grep\", \"Glob\"]`\n- Code generation: `[\"Read\", \"Write\", \"Grep\"]`\n- Testing: `[\"Read\", \"Bash\", \"Grep\"]`\n- Full access: Omit field or use `[\"*\"]`\n\n## System Prompt Design\n\nThe markdown body becomes the agent's system prompt. Write in second person, addressing the agent directly.\n\n### Structure\n\n**Standard template:**\n```markdown\nYou are [role] specializing in [domain].\n\n**Your Core Responsibilities:**\n1. [Primary responsibility]\n2. [Secondary responsibility]\n3. [Additional responsibilities...]\n\n**Analysis Process:**\n1. [Step one]\n2. [Step two]\n3. [Step three]\n[...]\n\n**Quality Standards:**\n- [Standard 1]\n- [Standard 2]\n\n**Output Format:**\nProvide results in this format:\n- [What to include]\n- [How to structure]\n\n**Edge Cases:**\nHandle these situations:\n- [Edge case 1]: [How to handle]\n- [Edge case 2]: [How to handle]\n```\n\n### Best Practices\n\n✅ **DO:**\n- Write in second person (\"You are...\", \"You will...\")\n- Be specific about responsibilities\n- Provide step-by-step process\n- Define output format\n- Include quality standards\n- Address edge cases\n- Keep under 10,000 characters\n\n❌ **DON'T:**\n- Write in first person (\"I am...\", \"I will...\")\n- Be vague or generic\n- Omit process steps\n- Leave output format undefined\n- Skip quality guidance\n- Ignore error cases\n\n## Creating Agents\n\n### Method 1: AI-Assisted Generation\n\nUse this prompt pattern (extracted from Claude Code):\n\n```\nCreate an agent configuration based on this request: \"[YOUR DESCRIPTION]\"\n\nRequirements:\n1. Extract core intent and responsibilities\n2. Design expert persona for the domain\n3. Create comprehensive system prompt with:\n   - Clear behavioral boundaries\n   - Specific methodologies\n   - Edge case handling\n   - Output format\n   - A \"When to invoke\" section listing 2-4 trigger scenarios as prose bullets\n4. Create identifier (lowercase, hyphens, 3-50 chars)\n5. Write description with triggering conditions and a short prose summary of trigger scenarios\n\nReturn JSON with:\n{\n  \"identifier\": \"agent-name\",\n  \"whenToUse\": \"Use this agent when... Typical triggers include [...]. See \\\"When to invoke\\\" in the agent body.\",\n  \"systemPrompt\": \"You are...\"\n}\n```\n\nThen convert to agent file format with frontmatter.\n\nSee `examples\u002Fagent-creation-prompt.md` for complete template.\n\n### Method 2: Manual Creation\n\n1. Choose agent identifier (3-50 chars, lowercase, hyphens)\n2. Write description with examples\n3. Select model (usually `inherit`)\n4. Choose color for visual identification\n5. Define tools (if restricting access)\n6. Write system prompt with structure above\n7. Save as `agents\u002Fagent-name.md`\n\n## Validation Rules\n\n### Identifier Validation\n\n```\n✅ Valid: code-reviewer, test-gen, api-analyzer-v2\n❌ Invalid: ag (too short), -start (starts with hyphen), my_agent (underscore)\n```\n\n**Rules:**\n- 3-50 characters\n- Lowercase letters, numbers, hyphens only\n- Must start and end with alphanumeric\n- No underscores, spaces, or special characters\n\n### Description Validation\n\n**Length:** 10-5,000 characters\n**Must include:** Triggering conditions and examples\n**Best:** 200-1,000 characters with 2-4 examples\n\n### System Prompt Validation\n\n**Length:** 20-10,000 characters\n**Best:** 500-3,000 characters\n**Structure:** Clear responsibilities, process, output format\n\n## Agent Organization\n\n### Plugin Agents Directory\n\n```\nplugin-name\u002F\n└── agents\u002F\n    ├── analyzer.md\n    ├── reviewer.md\n    └── generator.md\n```\n\nAll `.md` files in `agents\u002F` are auto-discovered.\n\n### Namespacing\n\nAgents are namespaced automatically:\n- Single plugin: `agent-name`\n- With subdirectories: `plugin:subdir:agent-name`\n\n## Testing Agents\n\n### Test Triggering\n\nCreate test scenarios to verify agent triggers correctly:\n\n1. Write agent with specific triggering examples\n2. Use similar phrasing to examples in test\n3. Check Claude loads the agent\n4. Verify agent provides expected functionality\n\n### Test System Prompt\n\nEnsure system prompt is complete:\n\n1. Give agent typical task\n2. Check it follows process steps\n3. Verify output format is correct\n4. Test edge cases mentioned in prompt\n5. Confirm quality standards are met\n\n## Quick Reference\n\n### Minimal Agent\n\n```markdown\n---\nname: simple-agent\ndescription: Use this agent when [condition]. Typical triggers include [trigger 1] and [trigger 2]. See \"When to invoke\" in the agent body.\nmodel: inherit\ncolor: blue\n---\n\nYou are an agent that [does X].\n\n## When to invoke\n\n- **[Scenario A].** [Description.]\n- **[Scenario B].** [Description.]\n\nProcess:\n1. [Step 1]\n2. [Step 2]\n\nOutput: [What to provide]\n```\n\n### Frontmatter Fields Summary\n\n| Field | Required | Format | Example |\n|-------|----------|--------|---------|\n| name | Yes | lowercase-hyphens | code-reviewer |\n| description | Yes | Prose triggers | Use when... Typical triggers include... |\n| model | Yes | inherit\u002Fsonnet\u002Fopus\u002Fhaiku | inherit |\n| color | Yes | Color name | blue |\n| tools | No | Array of tool names | [\"Read\", \"Grep\"] |\n\n### Best Practices\n\n**DO:**\n- ✅ Name 2-4 trigger scenarios in the description (as prose)\n- ✅ Put detailed worked scenarios in a \"When to invoke\" body section, as prose bullets\n- ✅ Write specific triggering conditions\n- ✅ Use `inherit` for model unless specific need\n- ✅ Choose appropriate tools (least privilege)\n- ✅ Write clear, structured system prompts\n- ✅ Test agent triggering thoroughly\n\n**DON'T:**\n- ❌ Use generic descriptions without trigger scenarios\n- ❌ Omit triggering conditions\n- ❌ Give all agents same color\n- ❌ Grant unnecessary tool access\n- ❌ Write vague system prompts\n- ❌ Skip testing\n\n## Additional Resources\n\n### Reference Files\n\nFor detailed guidance, consult:\n\n- **`references\u002Fsystem-prompt-design.md`** - Complete system prompt patterns\n- **`references\u002Ftriggering-examples.md`** - Example formats and best practices\n- **`references\u002Fagent-creation-system-prompt.md`** - The exact prompt from Claude Code\n\n### Example Files\n\nWorking examples in `examples\u002F`:\n\n- **`agent-creation-prompt.md`** - AI-assisted agent generation template\n- **`complete-agent-examples.md`** - Full agent examples for different use cases\n\n### Utility Scripts\n\nDevelopment tools in `scripts\u002F`:\n\n- **`validate-agent.sh`** - Validate agent file structure\n- **`test-agent-trigger.sh`** - Test if agent triggers correctly\n\n## Implementation Workflow\n\nTo create an agent for a plugin:\n\n1. Define agent purpose and triggering conditions\n2. Choose creation method (AI-assisted or manual)\n3. Create `agents\u002Fagent-name.md` file\n4. Write frontmatter with all required fields\n5. Write system prompt following best practices\n6. Name 2-4 trigger scenarios in description (prose) and detail them in a \"When to invoke\" body section\n7. Validate with `scripts\u002Fvalidate-agent.sh`\n8. Test triggering with real scenarios\n9. Document agent in plugin README\n\nFocus on clear triggering conditions and comprehensive system prompts for autonomous operation.\n",{"data":39,"body":41},{"name":4,"description":6,"version":40},"0.1.0",{"type":42,"children":43},"root",[44,53,60,66,75,105,111,118,544,550,556,561,585,593,632,640,687,693,705,713,732,739,749,757,785,791,796,804,851,868,874,879,930,938,976,982,987,996,1085,1095,1105,1113,1160,1166,1171,1177,1185,1528,1534,1544,1582,1592,1625,1631,1637,1642,1651,1656,1669,1675,1726,1732,1738,1747,1755,1778,1784,1806,1812,1834,1840,1846,1855,1876,1882,1887,1912,1918,1924,1929,1952,1958,1963,1991,1997,2003,2245,2251,2396,2401,2408,2453,2460,2493,2499,2505,2510,2555,2561,2573,2604,2610,2622,2653,2659,2664,2725,2730],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"agent-development-for-claude-code-plugins",[50],{"type":51,"value":52},"text","Agent Development for Claude Code Plugins",{"type":45,"tag":54,"props":55,"children":57},"h2",{"id":56},"overview",[58],{"type":51,"value":59},"Overview",{"type":45,"tag":61,"props":62,"children":63},"p",{},[64],{"type":51,"value":65},"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.",{"type":45,"tag":61,"props":67,"children":68},{},[69],{"type":45,"tag":70,"props":71,"children":72},"strong",{},[73],{"type":51,"value":74},"Key concepts:",{"type":45,"tag":76,"props":77,"children":78},"ul",{},[79,85,90,95,100],{"type":45,"tag":80,"props":81,"children":82},"li",{},[83],{"type":51,"value":84},"Agents are FOR autonomous work, commands are FOR user-initiated actions",{"type":45,"tag":80,"props":86,"children":87},{},[88],{"type":51,"value":89},"Markdown file format with YAML frontmatter",{"type":45,"tag":80,"props":91,"children":92},{},[93],{"type":51,"value":94},"Triggering via description field with examples",{"type":45,"tag":80,"props":96,"children":97},{},[98],{"type":51,"value":99},"System prompt defines agent behavior",{"type":45,"tag":80,"props":101,"children":102},{},[103],{"type":51,"value":104},"Model and color customization",{"type":45,"tag":54,"props":106,"children":108},{"id":107},"agent-file-structure",[109],{"type":51,"value":110},"Agent File Structure",{"type":45,"tag":112,"props":113,"children":115},"h3",{"id":114},"complete-format",[116],{"type":51,"value":117},"Complete Format",{"type":45,"tag":119,"props":120,"children":125},"pre",{"className":121,"code":122,"language":123,"meta":124,"style":124},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","---\nname: agent-identifier\ndescription: 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.\nmodel: inherit\ncolor: blue\ntools: [\"Read\", \"Write\", \"Grep\"]\n---\n\nYou are [agent role description]...\n\n## When to invoke\n\n[Two to four representative scenarios written as prose, e.g.:]\n- **[Scenario name].** [What the situation looks like and what the agent should do.]\n- **[Scenario name].** [Same.]\n\n**Your Core Responsibilities:**\n1. [Responsibility 1]\n2. [Responsibility 2]\n\n**Analysis Process:**\n[Step-by-step workflow]\n\n**Output Format:**\n[What to return]\n","markdown","",[126],{"type":45,"tag":127,"props":128,"children":129},"code",{"__ignoreMap":124},[130,142,163,181,199,217,290,298,308,318,326,341,349,358,389,422,430,448,462,476,484,501,510,518,535],{"type":45,"tag":131,"props":132,"children":135},"span",{"class":133,"line":134},"line",1,[136],{"type":45,"tag":131,"props":137,"children":139},{"style":138},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[140],{"type":51,"value":141},"---\n",{"type":45,"tag":131,"props":143,"children":145},{"class":133,"line":144},2,[146,152,157],{"type":45,"tag":131,"props":147,"children":149},{"style":148},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[150],{"type":51,"value":151},"name",{"type":45,"tag":131,"props":153,"children":154},{"style":138},[155],{"type":51,"value":156},":",{"type":45,"tag":131,"props":158,"children":160},{"style":159},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[161],{"type":51,"value":162}," agent-identifier\n",{"type":45,"tag":131,"props":164,"children":166},{"class":133,"line":165},3,[167,172,176],{"type":45,"tag":131,"props":168,"children":169},{"style":148},[170],{"type":51,"value":171},"description",{"type":45,"tag":131,"props":173,"children":174},{"style":138},[175],{"type":51,"value":156},{"type":45,"tag":131,"props":177,"children":178},{"style":159},[179],{"type":51,"value":180}," 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.\n",{"type":45,"tag":131,"props":182,"children":184},{"class":133,"line":183},4,[185,190,194],{"type":45,"tag":131,"props":186,"children":187},{"style":148},[188],{"type":51,"value":189},"model",{"type":45,"tag":131,"props":191,"children":192},{"style":138},[193],{"type":51,"value":156},{"type":45,"tag":131,"props":195,"children":196},{"style":159},[197],{"type":51,"value":198}," inherit\n",{"type":45,"tag":131,"props":200,"children":202},{"class":133,"line":201},5,[203,208,212],{"type":45,"tag":131,"props":204,"children":205},{"style":148},[206],{"type":51,"value":207},"color",{"type":45,"tag":131,"props":209,"children":210},{"style":138},[211],{"type":51,"value":156},{"type":45,"tag":131,"props":213,"children":214},{"style":159},[215],{"type":51,"value":216}," blue\n",{"type":45,"tag":131,"props":218,"children":220},{"class":133,"line":219},6,[221,226,230,235,240,245,249,254,259,264,268,272,276,281,285],{"type":45,"tag":131,"props":222,"children":223},{"style":148},[224],{"type":51,"value":225},"tools",{"type":45,"tag":131,"props":227,"children":228},{"style":138},[229],{"type":51,"value":156},{"type":45,"tag":131,"props":231,"children":232},{"style":138},[233],{"type":51,"value":234}," [",{"type":45,"tag":131,"props":236,"children":237},{"style":138},[238],{"type":51,"value":239},"\"",{"type":45,"tag":131,"props":241,"children":242},{"style":159},[243],{"type":51,"value":244},"Read",{"type":45,"tag":131,"props":246,"children":247},{"style":138},[248],{"type":51,"value":239},{"type":45,"tag":131,"props":250,"children":251},{"style":138},[252],{"type":51,"value":253},",",{"type":45,"tag":131,"props":255,"children":256},{"style":138},[257],{"type":51,"value":258}," \"",{"type":45,"tag":131,"props":260,"children":261},{"style":159},[262],{"type":51,"value":263},"Write",{"type":45,"tag":131,"props":265,"children":266},{"style":138},[267],{"type":51,"value":239},{"type":45,"tag":131,"props":269,"children":270},{"style":138},[271],{"type":51,"value":253},{"type":45,"tag":131,"props":273,"children":274},{"style":138},[275],{"type":51,"value":258},{"type":45,"tag":131,"props":277,"children":278},{"style":159},[279],{"type":51,"value":280},"Grep",{"type":45,"tag":131,"props":282,"children":283},{"style":138},[284],{"type":51,"value":239},{"type":45,"tag":131,"props":286,"children":287},{"style":138},[288],{"type":51,"value":289},"]\n",{"type":45,"tag":131,"props":291,"children":293},{"class":133,"line":292},7,[294],{"type":45,"tag":131,"props":295,"children":296},{"style":138},[297],{"type":51,"value":141},{"type":45,"tag":131,"props":299,"children":301},{"class":133,"line":300},8,[302],{"type":45,"tag":131,"props":303,"children":305},{"emptyLinePlaceholder":304},true,[306],{"type":51,"value":307},"\n",{"type":45,"tag":131,"props":309,"children":311},{"class":133,"line":310},9,[312],{"type":45,"tag":131,"props":313,"children":315},{"style":314},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[316],{"type":51,"value":317},"You are [agent role description]...\n",{"type":45,"tag":131,"props":319,"children":321},{"class":133,"line":320},10,[322],{"type":45,"tag":131,"props":323,"children":324},{"emptyLinePlaceholder":304},[325],{"type":51,"value":307},{"type":45,"tag":131,"props":327,"children":329},{"class":133,"line":328},11,[330,335],{"type":45,"tag":131,"props":331,"children":332},{"style":138},[333],{"type":51,"value":334},"## ",{"type":45,"tag":131,"props":336,"children":338},{"style":337},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[339],{"type":51,"value":340},"When to invoke\n",{"type":45,"tag":131,"props":342,"children":344},{"class":133,"line":343},12,[345],{"type":45,"tag":131,"props":346,"children":347},{"emptyLinePlaceholder":304},[348],{"type":51,"value":307},{"type":45,"tag":131,"props":350,"children":352},{"class":133,"line":351},13,[353],{"type":45,"tag":131,"props":354,"children":355},{"style":314},[356],{"type":51,"value":357},"[Two to four representative scenarios written as prose, e.g.:]\n",{"type":45,"tag":131,"props":359,"children":361},{"class":133,"line":360},14,[362,367,373,379,384],{"type":45,"tag":131,"props":363,"children":364},{"style":138},[365],{"type":51,"value":366},"-",{"type":45,"tag":131,"props":368,"children":370},{"style":369},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[371],{"type":51,"value":372}," **",{"type":45,"tag":131,"props":374,"children":376},{"style":375},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[377],{"type":51,"value":378},"[Scenario name].",{"type":45,"tag":131,"props":380,"children":381},{"style":369},[382],{"type":51,"value":383},"**",{"type":45,"tag":131,"props":385,"children":386},{"style":314},[387],{"type":51,"value":388}," [What the situation looks like and what the agent should do.]\n",{"type":45,"tag":131,"props":390,"children":392},{"class":133,"line":391},15,[393,397,401,405,409,413,418],{"type":45,"tag":131,"props":394,"children":395},{"style":138},[396],{"type":51,"value":366},{"type":45,"tag":131,"props":398,"children":399},{"style":369},[400],{"type":51,"value":372},{"type":45,"tag":131,"props":402,"children":403},{"style":375},[404],{"type":51,"value":378},{"type":45,"tag":131,"props":406,"children":407},{"style":369},[408],{"type":51,"value":383},{"type":45,"tag":131,"props":410,"children":411},{"style":138},[412],{"type":51,"value":234},{"type":45,"tag":131,"props":414,"children":415},{"style":159},[416],{"type":51,"value":417},"Same.",{"type":45,"tag":131,"props":419,"children":420},{"style":138},[421],{"type":51,"value":289},{"type":45,"tag":131,"props":423,"children":425},{"class":133,"line":424},16,[426],{"type":45,"tag":131,"props":427,"children":428},{"emptyLinePlaceholder":304},[429],{"type":51,"value":307},{"type":45,"tag":131,"props":431,"children":433},{"class":133,"line":432},17,[434,438,443],{"type":45,"tag":131,"props":435,"children":436},{"style":369},[437],{"type":51,"value":383},{"type":45,"tag":131,"props":439,"children":440},{"style":375},[441],{"type":51,"value":442},"Your Core Responsibilities:",{"type":45,"tag":131,"props":444,"children":445},{"style":369},[446],{"type":51,"value":447},"**\n",{"type":45,"tag":131,"props":449,"children":451},{"class":133,"line":450},18,[452,457],{"type":45,"tag":131,"props":453,"children":454},{"style":138},[455],{"type":51,"value":456},"1.",{"type":45,"tag":131,"props":458,"children":459},{"style":314},[460],{"type":51,"value":461}," [Responsibility 1]\n",{"type":45,"tag":131,"props":463,"children":465},{"class":133,"line":464},19,[466,471],{"type":45,"tag":131,"props":467,"children":468},{"style":138},[469],{"type":51,"value":470},"2.",{"type":45,"tag":131,"props":472,"children":473},{"style":314},[474],{"type":51,"value":475}," [Responsibility 2]\n",{"type":45,"tag":131,"props":477,"children":479},{"class":133,"line":478},20,[480],{"type":45,"tag":131,"props":481,"children":482},{"emptyLinePlaceholder":304},[483],{"type":51,"value":307},{"type":45,"tag":131,"props":485,"children":487},{"class":133,"line":486},21,[488,492,497],{"type":45,"tag":131,"props":489,"children":490},{"style":369},[491],{"type":51,"value":383},{"type":45,"tag":131,"props":493,"children":494},{"style":375},[495],{"type":51,"value":496},"Analysis Process:",{"type":45,"tag":131,"props":498,"children":499},{"style":369},[500],{"type":51,"value":447},{"type":45,"tag":131,"props":502,"children":504},{"class":133,"line":503},22,[505],{"type":45,"tag":131,"props":506,"children":507},{"style":314},[508],{"type":51,"value":509},"[Step-by-step workflow]\n",{"type":45,"tag":131,"props":511,"children":513},{"class":133,"line":512},23,[514],{"type":45,"tag":131,"props":515,"children":516},{"emptyLinePlaceholder":304},[517],{"type":51,"value":307},{"type":45,"tag":131,"props":519,"children":521},{"class":133,"line":520},24,[522,526,531],{"type":45,"tag":131,"props":523,"children":524},{"style":369},[525],{"type":51,"value":383},{"type":45,"tag":131,"props":527,"children":528},{"style":375},[529],{"type":51,"value":530},"Output Format:",{"type":45,"tag":131,"props":532,"children":533},{"style":369},[534],{"type":51,"value":447},{"type":45,"tag":131,"props":536,"children":538},{"class":133,"line":537},25,[539],{"type":45,"tag":131,"props":540,"children":541},{"style":314},[542],{"type":51,"value":543},"[What to return]\n",{"type":45,"tag":54,"props":545,"children":547},{"id":546},"frontmatter-fields",[548],{"type":51,"value":549},"Frontmatter Fields",{"type":45,"tag":112,"props":551,"children":553},{"id":552},"name-required",[554],{"type":51,"value":555},"name (required)",{"type":45,"tag":61,"props":557,"children":558},{},[559],{"type":51,"value":560},"Agent identifier used for namespacing and invocation.",{"type":45,"tag":61,"props":562,"children":563},{},[564,569,571,576,578,583],{"type":45,"tag":70,"props":565,"children":566},{},[567],{"type":51,"value":568},"Format:",{"type":51,"value":570}," lowercase, numbers, hyphens only\n",{"type":45,"tag":70,"props":572,"children":573},{},[574],{"type":51,"value":575},"Length:",{"type":51,"value":577}," 3-50 characters\n",{"type":45,"tag":70,"props":579,"children":580},{},[581],{"type":51,"value":582},"Pattern:",{"type":51,"value":584}," Must start and end with alphanumeric",{"type":45,"tag":61,"props":586,"children":587},{},[588],{"type":45,"tag":70,"props":589,"children":590},{},[591],{"type":51,"value":592},"Good examples:",{"type":45,"tag":76,"props":594,"children":595},{},[596,605,614,623],{"type":45,"tag":80,"props":597,"children":598},{},[599],{"type":45,"tag":127,"props":600,"children":602},{"className":601},[],[603],{"type":51,"value":604},"code-reviewer",{"type":45,"tag":80,"props":606,"children":607},{},[608],{"type":45,"tag":127,"props":609,"children":611},{"className":610},[],[612],{"type":51,"value":613},"test-generator",{"type":45,"tag":80,"props":615,"children":616},{},[617],{"type":45,"tag":127,"props":618,"children":620},{"className":619},[],[621],{"type":51,"value":622},"api-docs-writer",{"type":45,"tag":80,"props":624,"children":625},{},[626],{"type":45,"tag":127,"props":627,"children":629},{"className":628},[],[630],{"type":51,"value":631},"security-analyzer",{"type":45,"tag":61,"props":633,"children":634},{},[635],{"type":45,"tag":70,"props":636,"children":637},{},[638],{"type":51,"value":639},"Bad examples:",{"type":45,"tag":76,"props":641,"children":642},{},[643,654,665,676],{"type":45,"tag":80,"props":644,"children":645},{},[646,652],{"type":45,"tag":127,"props":647,"children":649},{"className":648},[],[650],{"type":51,"value":651},"helper",{"type":51,"value":653}," (too generic)",{"type":45,"tag":80,"props":655,"children":656},{},[657,663],{"type":45,"tag":127,"props":658,"children":660},{"className":659},[],[661],{"type":51,"value":662},"-agent-",{"type":51,"value":664}," (starts\u002Fends with hyphen)",{"type":45,"tag":80,"props":666,"children":667},{},[668,674],{"type":45,"tag":127,"props":669,"children":671},{"className":670},[],[672],{"type":51,"value":673},"my_agent",{"type":51,"value":675}," (underscores not allowed)",{"type":45,"tag":80,"props":677,"children":678},{},[679,685],{"type":45,"tag":127,"props":680,"children":682},{"className":681},[],[683],{"type":51,"value":684},"ag",{"type":51,"value":686}," (too short, \u003C 3 chars)",{"type":45,"tag":112,"props":688,"children":690},{"id":689},"description-required",[691],{"type":51,"value":692},"description (required)",{"type":45,"tag":61,"props":694,"children":695},{},[696,698,703],{"type":51,"value":697},"Defines when Claude should trigger this agent. ",{"type":45,"tag":70,"props":699,"children":700},{},[701],{"type":51,"value":702},"This is the most critical field",{"type":51,"value":704}," — it is loaded into context whenever the agent is registered, so the harness can decide when to dispatch.",{"type":45,"tag":61,"props":706,"children":707},{},[708],{"type":45,"tag":70,"props":709,"children":710},{},[711],{"type":51,"value":712},"Must include:",{"type":45,"tag":714,"props":715,"children":716},"ol",{},[717,722,727],{"type":45,"tag":80,"props":718,"children":719},{},[720],{"type":51,"value":721},"Triggering conditions (\"Use this agent when...\")",{"type":45,"tag":80,"props":723,"children":724},{},[725],{"type":51,"value":726},"A short prose summary of the typical trigger scenarios",{"type":45,"tag":80,"props":728,"children":729},{},[730],{"type":51,"value":731},"A pointer to a \"When to invoke\" section in the agent body for the detailed worked scenarios",{"type":45,"tag":61,"props":733,"children":734},{},[735],{"type":45,"tag":70,"props":736,"children":737},{},[738],{"type":51,"value":568},{"type":45,"tag":119,"props":740,"children":744},{"className":741,"code":743,"language":51},[742],"language-text","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.\n",[745],{"type":45,"tag":127,"props":746,"children":747},{"__ignoreMap":124},[748],{"type":51,"value":743},{"type":45,"tag":61,"props":750,"children":751},{},[752],{"type":45,"tag":70,"props":753,"children":754},{},[755],{"type":51,"value":756},"Best practices:",{"type":45,"tag":76,"props":758,"children":759},{},[760,765,770,775,780],{"type":45,"tag":80,"props":761,"children":762},{},[763],{"type":51,"value":764},"Name 2-4 trigger scenarios in the prose summary",{"type":45,"tag":80,"props":766,"children":767},{},[768],{"type":51,"value":769},"Cover both proactive (assistant invokes itself) and reactive (user requests) triggering",{"type":45,"tag":80,"props":771,"children":772},{},[773],{"type":51,"value":774},"Cover different phrasings of the same intent",{"type":45,"tag":80,"props":776,"children":777},{},[778],{"type":51,"value":779},"Be specific about when NOT to use the agent",{"type":45,"tag":80,"props":781,"children":782},{},[783],{"type":51,"value":784},"Put detailed scenarios in the body under \"When to invoke\" as a bullet list of prose descriptions",{"type":45,"tag":112,"props":786,"children":788},{"id":787},"model-required",[789],{"type":51,"value":790},"model (required)",{"type":45,"tag":61,"props":792,"children":793},{},[794],{"type":51,"value":795},"Which model the agent should use.",{"type":45,"tag":61,"props":797,"children":798},{},[799],{"type":45,"tag":70,"props":800,"children":801},{},[802],{"type":51,"value":803},"Options:",{"type":45,"tag":76,"props":805,"children":806},{},[807,818,829,840],{"type":45,"tag":80,"props":808,"children":809},{},[810,816],{"type":45,"tag":127,"props":811,"children":813},{"className":812},[],[814],{"type":51,"value":815},"inherit",{"type":51,"value":817}," - Use same model as parent (recommended)",{"type":45,"tag":80,"props":819,"children":820},{},[821,827],{"type":45,"tag":127,"props":822,"children":824},{"className":823},[],[825],{"type":51,"value":826},"sonnet",{"type":51,"value":828}," - Claude Sonnet (balanced)",{"type":45,"tag":80,"props":830,"children":831},{},[832,838],{"type":45,"tag":127,"props":833,"children":835},{"className":834},[],[836],{"type":51,"value":837},"opus",{"type":51,"value":839}," - Claude Opus (most capable, expensive)",{"type":45,"tag":80,"props":841,"children":842},{},[843,849],{"type":45,"tag":127,"props":844,"children":846},{"className":845},[],[847],{"type":51,"value":848},"haiku",{"type":51,"value":850}," - Claude Haiku (fast, cheap)",{"type":45,"tag":61,"props":852,"children":853},{},[854,859,861,866],{"type":45,"tag":70,"props":855,"children":856},{},[857],{"type":51,"value":858},"Recommendation:",{"type":51,"value":860}," Use ",{"type":45,"tag":127,"props":862,"children":864},{"className":863},[],[865],{"type":51,"value":815},{"type":51,"value":867}," unless agent needs specific model capabilities.",{"type":45,"tag":112,"props":869,"children":871},{"id":870},"color-required",[872],{"type":51,"value":873},"color (required)",{"type":45,"tag":61,"props":875,"children":876},{},[877],{"type":51,"value":878},"Visual identifier for agent in UI.",{"type":45,"tag":61,"props":880,"children":881},{},[882,886,888,894,896,902,903,909,910,916,917,923,924],{"type":45,"tag":70,"props":883,"children":884},{},[885],{"type":51,"value":803},{"type":51,"value":887}," ",{"type":45,"tag":127,"props":889,"children":891},{"className":890},[],[892],{"type":51,"value":893},"blue",{"type":51,"value":895},", ",{"type":45,"tag":127,"props":897,"children":899},{"className":898},[],[900],{"type":51,"value":901},"cyan",{"type":51,"value":895},{"type":45,"tag":127,"props":904,"children":906},{"className":905},[],[907],{"type":51,"value":908},"green",{"type":51,"value":895},{"type":45,"tag":127,"props":911,"children":913},{"className":912},[],[914],{"type":51,"value":915},"yellow",{"type":51,"value":895},{"type":45,"tag":127,"props":918,"children":920},{"className":919},[],[921],{"type":51,"value":922},"magenta",{"type":51,"value":895},{"type":45,"tag":127,"props":925,"children":927},{"className":926},[],[928],{"type":51,"value":929},"red",{"type":45,"tag":61,"props":931,"children":932},{},[933],{"type":45,"tag":70,"props":934,"children":935},{},[936],{"type":51,"value":937},"Guidelines:",{"type":45,"tag":76,"props":939,"children":940},{},[941,946,951,956,961,966,971],{"type":45,"tag":80,"props":942,"children":943},{},[944],{"type":51,"value":945},"Choose distinct colors for different agents in same plugin",{"type":45,"tag":80,"props":947,"children":948},{},[949],{"type":51,"value":950},"Use consistent colors for similar agent types",{"type":45,"tag":80,"props":952,"children":953},{},[954],{"type":51,"value":955},"Blue\u002Fcyan: Analysis, review",{"type":45,"tag":80,"props":957,"children":958},{},[959],{"type":51,"value":960},"Green: Success-oriented tasks",{"type":45,"tag":80,"props":962,"children":963},{},[964],{"type":51,"value":965},"Yellow: Caution, validation",{"type":45,"tag":80,"props":967,"children":968},{},[969],{"type":51,"value":970},"Red: Critical, security",{"type":45,"tag":80,"props":972,"children":973},{},[974],{"type":51,"value":975},"Magenta: Creative, generation",{"type":45,"tag":112,"props":977,"children":979},{"id":978},"tools-optional",[980],{"type":51,"value":981},"tools (optional)",{"type":45,"tag":61,"props":983,"children":984},{},[985],{"type":51,"value":986},"Restrict agent to specific tools.",{"type":45,"tag":61,"props":988,"children":989},{},[990,994],{"type":45,"tag":70,"props":991,"children":992},{},[993],{"type":51,"value":568},{"type":51,"value":995}," Array of tool names",{"type":45,"tag":119,"props":997,"children":1001},{"className":998,"code":999,"language":1000,"meta":124,"style":124},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","tools: [\"Read\", \"Write\", \"Grep\", \"Bash\"]\n","yaml",[1002],{"type":45,"tag":127,"props":1003,"children":1004},{"__ignoreMap":124},[1005],{"type":45,"tag":131,"props":1006,"children":1007},{"class":133,"line":134},[1008,1012,1016,1020,1024,1028,1032,1036,1040,1044,1048,1052,1056,1060,1064,1068,1072,1077,1081],{"type":45,"tag":131,"props":1009,"children":1010},{"style":148},[1011],{"type":51,"value":225},{"type":45,"tag":131,"props":1013,"children":1014},{"style":138},[1015],{"type":51,"value":156},{"type":45,"tag":131,"props":1017,"children":1018},{"style":138},[1019],{"type":51,"value":234},{"type":45,"tag":131,"props":1021,"children":1022},{"style":138},[1023],{"type":51,"value":239},{"type":45,"tag":131,"props":1025,"children":1026},{"style":159},[1027],{"type":51,"value":244},{"type":45,"tag":131,"props":1029,"children":1030},{"style":138},[1031],{"type":51,"value":239},{"type":45,"tag":131,"props":1033,"children":1034},{"style":138},[1035],{"type":51,"value":253},{"type":45,"tag":131,"props":1037,"children":1038},{"style":138},[1039],{"type":51,"value":258},{"type":45,"tag":131,"props":1041,"children":1042},{"style":159},[1043],{"type":51,"value":263},{"type":45,"tag":131,"props":1045,"children":1046},{"style":138},[1047],{"type":51,"value":239},{"type":45,"tag":131,"props":1049,"children":1050},{"style":138},[1051],{"type":51,"value":253},{"type":45,"tag":131,"props":1053,"children":1054},{"style":138},[1055],{"type":51,"value":258},{"type":45,"tag":131,"props":1057,"children":1058},{"style":159},[1059],{"type":51,"value":280},{"type":45,"tag":131,"props":1061,"children":1062},{"style":138},[1063],{"type":51,"value":239},{"type":45,"tag":131,"props":1065,"children":1066},{"style":138},[1067],{"type":51,"value":253},{"type":45,"tag":131,"props":1069,"children":1070},{"style":138},[1071],{"type":51,"value":258},{"type":45,"tag":131,"props":1073,"children":1074},{"style":159},[1075],{"type":51,"value":1076},"Bash",{"type":45,"tag":131,"props":1078,"children":1079},{"style":138},[1080],{"type":51,"value":239},{"type":45,"tag":131,"props":1082,"children":1083},{"style":138},[1084],{"type":51,"value":289},{"type":45,"tag":61,"props":1086,"children":1087},{},[1088,1093],{"type":45,"tag":70,"props":1089,"children":1090},{},[1091],{"type":51,"value":1092},"Default:",{"type":51,"value":1094}," If omitted, agent has access to all tools",{"type":45,"tag":61,"props":1096,"children":1097},{},[1098,1103],{"type":45,"tag":70,"props":1099,"children":1100},{},[1101],{"type":51,"value":1102},"Best practice:",{"type":51,"value":1104}," Limit tools to minimum needed (principle of least privilege)",{"type":45,"tag":61,"props":1106,"children":1107},{},[1108],{"type":45,"tag":70,"props":1109,"children":1110},{},[1111],{"type":51,"value":1112},"Common tool sets:",{"type":45,"tag":76,"props":1114,"children":1115},{},[1116,1127,1138,1149],{"type":45,"tag":80,"props":1117,"children":1118},{},[1119,1121],{"type":51,"value":1120},"Read-only analysis: ",{"type":45,"tag":127,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":51,"value":1126},"[\"Read\", \"Grep\", \"Glob\"]",{"type":45,"tag":80,"props":1128,"children":1129},{},[1130,1132],{"type":51,"value":1131},"Code generation: ",{"type":45,"tag":127,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":51,"value":1137},"[\"Read\", \"Write\", \"Grep\"]",{"type":45,"tag":80,"props":1139,"children":1140},{},[1141,1143],{"type":51,"value":1142},"Testing: ",{"type":45,"tag":127,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":51,"value":1148},"[\"Read\", \"Bash\", \"Grep\"]",{"type":45,"tag":80,"props":1150,"children":1151},{},[1152,1154],{"type":51,"value":1153},"Full access: Omit field or use ",{"type":45,"tag":127,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":51,"value":1159},"[\"*\"]",{"type":45,"tag":54,"props":1161,"children":1163},{"id":1162},"system-prompt-design",[1164],{"type":51,"value":1165},"System Prompt Design",{"type":45,"tag":61,"props":1167,"children":1168},{},[1169],{"type":51,"value":1170},"The markdown body becomes the agent's system prompt. Write in second person, addressing the agent directly.",{"type":45,"tag":112,"props":1172,"children":1174},{"id":1173},"structure",[1175],{"type":51,"value":1176},"Structure",{"type":45,"tag":61,"props":1178,"children":1179},{},[1180],{"type":45,"tag":70,"props":1181,"children":1182},{},[1183],{"type":51,"value":1184},"Standard template:",{"type":45,"tag":119,"props":1186,"children":1188},{"className":121,"code":1187,"language":123,"meta":124,"style":124},"You are [role] specializing in [domain].\n\n**Your Core Responsibilities:**\n1. [Primary responsibility]\n2. [Secondary responsibility]\n3. [Additional responsibilities...]\n\n**Analysis Process:**\n1. [Step one]\n2. [Step two]\n3. [Step three]\n[...]\n\n**Quality Standards:**\n- [Standard 1]\n- [Standard 2]\n\n**Output Format:**\nProvide results in this format:\n- [What to include]\n- [How to structure]\n\n**Edge Cases:**\nHandle these situations:\n- [Edge case 1]: [How to handle]\n- [Edge case 2]: [How to handle]\n",[1189],{"type":45,"tag":127,"props":1190,"children":1191},{"__ignoreMap":124},[1192,1238,1245,1260,1272,1284,1297,1304,1319,1331,1343,1355,1371,1378,1394,1406,1418,1425,1440,1448,1460,1472,1479,1495,1503,1515],{"type":45,"tag":131,"props":1193,"children":1194},{"class":133,"line":134},[1195,1200,1205,1210,1215,1220,1224,1229,1233],{"type":45,"tag":131,"props":1196,"children":1197},{"style":314},[1198],{"type":51,"value":1199},"You are ",{"type":45,"tag":131,"props":1201,"children":1202},{"style":138},[1203],{"type":51,"value":1204},"[",{"type":45,"tag":131,"props":1206,"children":1207},{"style":159},[1208],{"type":51,"value":1209},"role",{"type":45,"tag":131,"props":1211,"children":1212},{"style":138},[1213],{"type":51,"value":1214},"]",{"type":45,"tag":131,"props":1216,"children":1217},{"style":314},[1218],{"type":51,"value":1219}," specializing in ",{"type":45,"tag":131,"props":1221,"children":1222},{"style":138},[1223],{"type":51,"value":1204},{"type":45,"tag":131,"props":1225,"children":1226},{"style":159},[1227],{"type":51,"value":1228},"domain",{"type":45,"tag":131,"props":1230,"children":1231},{"style":138},[1232],{"type":51,"value":1214},{"type":45,"tag":131,"props":1234,"children":1235},{"style":314},[1236],{"type":51,"value":1237},".\n",{"type":45,"tag":131,"props":1239,"children":1240},{"class":133,"line":144},[1241],{"type":45,"tag":131,"props":1242,"children":1243},{"emptyLinePlaceholder":304},[1244],{"type":51,"value":307},{"type":45,"tag":131,"props":1246,"children":1247},{"class":133,"line":165},[1248,1252,1256],{"type":45,"tag":131,"props":1249,"children":1250},{"style":369},[1251],{"type":51,"value":383},{"type":45,"tag":131,"props":1253,"children":1254},{"style":375},[1255],{"type":51,"value":442},{"type":45,"tag":131,"props":1257,"children":1258},{"style":369},[1259],{"type":51,"value":447},{"type":45,"tag":131,"props":1261,"children":1262},{"class":133,"line":183},[1263,1267],{"type":45,"tag":131,"props":1264,"children":1265},{"style":138},[1266],{"type":51,"value":456},{"type":45,"tag":131,"props":1268,"children":1269},{"style":314},[1270],{"type":51,"value":1271}," [Primary responsibility]\n",{"type":45,"tag":131,"props":1273,"children":1274},{"class":133,"line":201},[1275,1279],{"type":45,"tag":131,"props":1276,"children":1277},{"style":138},[1278],{"type":51,"value":470},{"type":45,"tag":131,"props":1280,"children":1281},{"style":314},[1282],{"type":51,"value":1283}," [Secondary responsibility]\n",{"type":45,"tag":131,"props":1285,"children":1286},{"class":133,"line":219},[1287,1292],{"type":45,"tag":131,"props":1288,"children":1289},{"style":138},[1290],{"type":51,"value":1291},"3.",{"type":45,"tag":131,"props":1293,"children":1294},{"style":314},[1295],{"type":51,"value":1296}," [Additional responsibilities...]\n",{"type":45,"tag":131,"props":1298,"children":1299},{"class":133,"line":292},[1300],{"type":45,"tag":131,"props":1301,"children":1302},{"emptyLinePlaceholder":304},[1303],{"type":51,"value":307},{"type":45,"tag":131,"props":1305,"children":1306},{"class":133,"line":300},[1307,1311,1315],{"type":45,"tag":131,"props":1308,"children":1309},{"style":369},[1310],{"type":51,"value":383},{"type":45,"tag":131,"props":1312,"children":1313},{"style":375},[1314],{"type":51,"value":496},{"type":45,"tag":131,"props":1316,"children":1317},{"style":369},[1318],{"type":51,"value":447},{"type":45,"tag":131,"props":1320,"children":1321},{"class":133,"line":310},[1322,1326],{"type":45,"tag":131,"props":1323,"children":1324},{"style":138},[1325],{"type":51,"value":456},{"type":45,"tag":131,"props":1327,"children":1328},{"style":314},[1329],{"type":51,"value":1330}," [Step one]\n",{"type":45,"tag":131,"props":1332,"children":1333},{"class":133,"line":320},[1334,1338],{"type":45,"tag":131,"props":1335,"children":1336},{"style":138},[1337],{"type":51,"value":470},{"type":45,"tag":131,"props":1339,"children":1340},{"style":314},[1341],{"type":51,"value":1342}," [Step two]\n",{"type":45,"tag":131,"props":1344,"children":1345},{"class":133,"line":328},[1346,1350],{"type":45,"tag":131,"props":1347,"children":1348},{"style":138},[1349],{"type":51,"value":1291},{"type":45,"tag":131,"props":1351,"children":1352},{"style":314},[1353],{"type":51,"value":1354}," [Step three]\n",{"type":45,"tag":131,"props":1356,"children":1357},{"class":133,"line":343},[1358,1362,1367],{"type":45,"tag":131,"props":1359,"children":1360},{"style":138},[1361],{"type":51,"value":1204},{"type":45,"tag":131,"props":1363,"children":1364},{"style":159},[1365],{"type":51,"value":1366},"...",{"type":45,"tag":131,"props":1368,"children":1369},{"style":138},[1370],{"type":51,"value":289},{"type":45,"tag":131,"props":1372,"children":1373},{"class":133,"line":351},[1374],{"type":45,"tag":131,"props":1375,"children":1376},{"emptyLinePlaceholder":304},[1377],{"type":51,"value":307},{"type":45,"tag":131,"props":1379,"children":1380},{"class":133,"line":360},[1381,1385,1390],{"type":45,"tag":131,"props":1382,"children":1383},{"style":369},[1384],{"type":51,"value":383},{"type":45,"tag":131,"props":1386,"children":1387},{"style":375},[1388],{"type":51,"value":1389},"Quality Standards:",{"type":45,"tag":131,"props":1391,"children":1392},{"style":369},[1393],{"type":51,"value":447},{"type":45,"tag":131,"props":1395,"children":1396},{"class":133,"line":391},[1397,1401],{"type":45,"tag":131,"props":1398,"children":1399},{"style":138},[1400],{"type":51,"value":366},{"type":45,"tag":131,"props":1402,"children":1403},{"style":314},[1404],{"type":51,"value":1405}," [Standard 1]\n",{"type":45,"tag":131,"props":1407,"children":1408},{"class":133,"line":424},[1409,1413],{"type":45,"tag":131,"props":1410,"children":1411},{"style":138},[1412],{"type":51,"value":366},{"type":45,"tag":131,"props":1414,"children":1415},{"style":314},[1416],{"type":51,"value":1417}," [Standard 2]\n",{"type":45,"tag":131,"props":1419,"children":1420},{"class":133,"line":432},[1421],{"type":45,"tag":131,"props":1422,"children":1423},{"emptyLinePlaceholder":304},[1424],{"type":51,"value":307},{"type":45,"tag":131,"props":1426,"children":1427},{"class":133,"line":450},[1428,1432,1436],{"type":45,"tag":131,"props":1429,"children":1430},{"style":369},[1431],{"type":51,"value":383},{"type":45,"tag":131,"props":1433,"children":1434},{"style":375},[1435],{"type":51,"value":530},{"type":45,"tag":131,"props":1437,"children":1438},{"style":369},[1439],{"type":51,"value":447},{"type":45,"tag":131,"props":1441,"children":1442},{"class":133,"line":464},[1443],{"type":45,"tag":131,"props":1444,"children":1445},{"style":314},[1446],{"type":51,"value":1447},"Provide results in this format:\n",{"type":45,"tag":131,"props":1449,"children":1450},{"class":133,"line":478},[1451,1455],{"type":45,"tag":131,"props":1452,"children":1453},{"style":138},[1454],{"type":51,"value":366},{"type":45,"tag":131,"props":1456,"children":1457},{"style":314},[1458],{"type":51,"value":1459}," [What to include]\n",{"type":45,"tag":131,"props":1461,"children":1462},{"class":133,"line":486},[1463,1467],{"type":45,"tag":131,"props":1464,"children":1465},{"style":138},[1466],{"type":51,"value":366},{"type":45,"tag":131,"props":1468,"children":1469},{"style":314},[1470],{"type":51,"value":1471}," [How to structure]\n",{"type":45,"tag":131,"props":1473,"children":1474},{"class":133,"line":503},[1475],{"type":45,"tag":131,"props":1476,"children":1477},{"emptyLinePlaceholder":304},[1478],{"type":51,"value":307},{"type":45,"tag":131,"props":1480,"children":1481},{"class":133,"line":512},[1482,1486,1491],{"type":45,"tag":131,"props":1483,"children":1484},{"style":369},[1485],{"type":51,"value":383},{"type":45,"tag":131,"props":1487,"children":1488},{"style":375},[1489],{"type":51,"value":1490},"Edge Cases:",{"type":45,"tag":131,"props":1492,"children":1493},{"style":369},[1494],{"type":51,"value":447},{"type":45,"tag":131,"props":1496,"children":1497},{"class":133,"line":520},[1498],{"type":45,"tag":131,"props":1499,"children":1500},{"style":314},[1501],{"type":51,"value":1502},"Handle these situations:\n",{"type":45,"tag":131,"props":1504,"children":1505},{"class":133,"line":537},[1506,1510],{"type":45,"tag":131,"props":1507,"children":1508},{"style":138},[1509],{"type":51,"value":366},{"type":45,"tag":131,"props":1511,"children":1512},{"style":314},[1513],{"type":51,"value":1514}," [Edge case 1]: [How to handle]\n",{"type":45,"tag":131,"props":1516,"children":1518},{"class":133,"line":1517},26,[1519,1523],{"type":45,"tag":131,"props":1520,"children":1521},{"style":138},[1522],{"type":51,"value":366},{"type":45,"tag":131,"props":1524,"children":1525},{"style":314},[1526],{"type":51,"value":1527}," [Edge case 2]: [How to handle]\n",{"type":45,"tag":112,"props":1529,"children":1531},{"id":1530},"best-practices",[1532],{"type":51,"value":1533},"Best Practices",{"type":45,"tag":61,"props":1535,"children":1536},{},[1537,1539],{"type":51,"value":1538},"✅ ",{"type":45,"tag":70,"props":1540,"children":1541},{},[1542],{"type":51,"value":1543},"DO:",{"type":45,"tag":76,"props":1545,"children":1546},{},[1547,1552,1557,1562,1567,1572,1577],{"type":45,"tag":80,"props":1548,"children":1549},{},[1550],{"type":51,"value":1551},"Write in second person (\"You are...\", \"You will...\")",{"type":45,"tag":80,"props":1553,"children":1554},{},[1555],{"type":51,"value":1556},"Be specific about responsibilities",{"type":45,"tag":80,"props":1558,"children":1559},{},[1560],{"type":51,"value":1561},"Provide step-by-step process",{"type":45,"tag":80,"props":1563,"children":1564},{},[1565],{"type":51,"value":1566},"Define output format",{"type":45,"tag":80,"props":1568,"children":1569},{},[1570],{"type":51,"value":1571},"Include quality standards",{"type":45,"tag":80,"props":1573,"children":1574},{},[1575],{"type":51,"value":1576},"Address edge cases",{"type":45,"tag":80,"props":1578,"children":1579},{},[1580],{"type":51,"value":1581},"Keep under 10,000 characters",{"type":45,"tag":61,"props":1583,"children":1584},{},[1585,1587],{"type":51,"value":1586},"❌ ",{"type":45,"tag":70,"props":1588,"children":1589},{},[1590],{"type":51,"value":1591},"DON'T:",{"type":45,"tag":76,"props":1593,"children":1594},{},[1595,1600,1605,1610,1615,1620],{"type":45,"tag":80,"props":1596,"children":1597},{},[1598],{"type":51,"value":1599},"Write in first person (\"I am...\", \"I will...\")",{"type":45,"tag":80,"props":1601,"children":1602},{},[1603],{"type":51,"value":1604},"Be vague or generic",{"type":45,"tag":80,"props":1606,"children":1607},{},[1608],{"type":51,"value":1609},"Omit process steps",{"type":45,"tag":80,"props":1611,"children":1612},{},[1613],{"type":51,"value":1614},"Leave output format undefined",{"type":45,"tag":80,"props":1616,"children":1617},{},[1618],{"type":51,"value":1619},"Skip quality guidance",{"type":45,"tag":80,"props":1621,"children":1622},{},[1623],{"type":51,"value":1624},"Ignore error cases",{"type":45,"tag":54,"props":1626,"children":1628},{"id":1627},"creating-agents",[1629],{"type":51,"value":1630},"Creating Agents",{"type":45,"tag":112,"props":1632,"children":1634},{"id":1633},"method-1-ai-assisted-generation",[1635],{"type":51,"value":1636},"Method 1: AI-Assisted Generation",{"type":45,"tag":61,"props":1638,"children":1639},{},[1640],{"type":51,"value":1641},"Use this prompt pattern (extracted from Claude Code):",{"type":45,"tag":119,"props":1643,"children":1646},{"className":1644,"code":1645,"language":51},[742],"Create an agent configuration based on this request: \"[YOUR DESCRIPTION]\"\n\nRequirements:\n1. Extract core intent and responsibilities\n2. Design expert persona for the domain\n3. Create comprehensive system prompt with:\n   - Clear behavioral boundaries\n   - Specific methodologies\n   - Edge case handling\n   - Output format\n   - A \"When to invoke\" section listing 2-4 trigger scenarios as prose bullets\n4. Create identifier (lowercase, hyphens, 3-50 chars)\n5. Write description with triggering conditions and a short prose summary of trigger scenarios\n\nReturn JSON with:\n{\n  \"identifier\": \"agent-name\",\n  \"whenToUse\": \"Use this agent when... Typical triggers include [...]. See \\\"When to invoke\\\" in the agent body.\",\n  \"systemPrompt\": \"You are...\"\n}\n",[1647],{"type":45,"tag":127,"props":1648,"children":1649},{"__ignoreMap":124},[1650],{"type":51,"value":1645},{"type":45,"tag":61,"props":1652,"children":1653},{},[1654],{"type":51,"value":1655},"Then convert to agent file format with frontmatter.",{"type":45,"tag":61,"props":1657,"children":1658},{},[1659,1661,1667],{"type":51,"value":1660},"See ",{"type":45,"tag":127,"props":1662,"children":1664},{"className":1663},[],[1665],{"type":51,"value":1666},"examples\u002Fagent-creation-prompt.md",{"type":51,"value":1668}," for complete template.",{"type":45,"tag":112,"props":1670,"children":1672},{"id":1671},"method-2-manual-creation",[1673],{"type":51,"value":1674},"Method 2: Manual Creation",{"type":45,"tag":714,"props":1676,"children":1677},{},[1678,1683,1688,1700,1705,1710,1715],{"type":45,"tag":80,"props":1679,"children":1680},{},[1681],{"type":51,"value":1682},"Choose agent identifier (3-50 chars, lowercase, hyphens)",{"type":45,"tag":80,"props":1684,"children":1685},{},[1686],{"type":51,"value":1687},"Write description with examples",{"type":45,"tag":80,"props":1689,"children":1690},{},[1691,1693,1698],{"type":51,"value":1692},"Select model (usually ",{"type":45,"tag":127,"props":1694,"children":1696},{"className":1695},[],[1697],{"type":51,"value":815},{"type":51,"value":1699},")",{"type":45,"tag":80,"props":1701,"children":1702},{},[1703],{"type":51,"value":1704},"Choose color for visual identification",{"type":45,"tag":80,"props":1706,"children":1707},{},[1708],{"type":51,"value":1709},"Define tools (if restricting access)",{"type":45,"tag":80,"props":1711,"children":1712},{},[1713],{"type":51,"value":1714},"Write system prompt with structure above",{"type":45,"tag":80,"props":1716,"children":1717},{},[1718,1720],{"type":51,"value":1719},"Save as ",{"type":45,"tag":127,"props":1721,"children":1723},{"className":1722},[],[1724],{"type":51,"value":1725},"agents\u002Fagent-name.md",{"type":45,"tag":54,"props":1727,"children":1729},{"id":1728},"validation-rules",[1730],{"type":51,"value":1731},"Validation Rules",{"type":45,"tag":112,"props":1733,"children":1735},{"id":1734},"identifier-validation",[1736],{"type":51,"value":1737},"Identifier Validation",{"type":45,"tag":119,"props":1739,"children":1742},{"className":1740,"code":1741,"language":51},[742],"✅ Valid: code-reviewer, test-gen, api-analyzer-v2\n❌ Invalid: ag (too short), -start (starts with hyphen), my_agent (underscore)\n",[1743],{"type":45,"tag":127,"props":1744,"children":1745},{"__ignoreMap":124},[1746],{"type":51,"value":1741},{"type":45,"tag":61,"props":1748,"children":1749},{},[1750],{"type":45,"tag":70,"props":1751,"children":1752},{},[1753],{"type":51,"value":1754},"Rules:",{"type":45,"tag":76,"props":1756,"children":1757},{},[1758,1763,1768,1773],{"type":45,"tag":80,"props":1759,"children":1760},{},[1761],{"type":51,"value":1762},"3-50 characters",{"type":45,"tag":80,"props":1764,"children":1765},{},[1766],{"type":51,"value":1767},"Lowercase letters, numbers, hyphens only",{"type":45,"tag":80,"props":1769,"children":1770},{},[1771],{"type":51,"value":1772},"Must start and end with alphanumeric",{"type":45,"tag":80,"props":1774,"children":1775},{},[1776],{"type":51,"value":1777},"No underscores, spaces, or special characters",{"type":45,"tag":112,"props":1779,"children":1781},{"id":1780},"description-validation",[1782],{"type":51,"value":1783},"Description Validation",{"type":45,"tag":61,"props":1785,"children":1786},{},[1787,1791,1793,1797,1799,1804],{"type":45,"tag":70,"props":1788,"children":1789},{},[1790],{"type":51,"value":575},{"type":51,"value":1792}," 10-5,000 characters\n",{"type":45,"tag":70,"props":1794,"children":1795},{},[1796],{"type":51,"value":712},{"type":51,"value":1798}," Triggering conditions and examples\n",{"type":45,"tag":70,"props":1800,"children":1801},{},[1802],{"type":51,"value":1803},"Best:",{"type":51,"value":1805}," 200-1,000 characters with 2-4 examples",{"type":45,"tag":112,"props":1807,"children":1809},{"id":1808},"system-prompt-validation",[1810],{"type":51,"value":1811},"System Prompt Validation",{"type":45,"tag":61,"props":1813,"children":1814},{},[1815,1819,1821,1825,1827,1832],{"type":45,"tag":70,"props":1816,"children":1817},{},[1818],{"type":51,"value":575},{"type":51,"value":1820}," 20-10,000 characters\n",{"type":45,"tag":70,"props":1822,"children":1823},{},[1824],{"type":51,"value":1803},{"type":51,"value":1826}," 500-3,000 characters\n",{"type":45,"tag":70,"props":1828,"children":1829},{},[1830],{"type":51,"value":1831},"Structure:",{"type":51,"value":1833}," Clear responsibilities, process, output format",{"type":45,"tag":54,"props":1835,"children":1837},{"id":1836},"agent-organization",[1838],{"type":51,"value":1839},"Agent Organization",{"type":45,"tag":112,"props":1841,"children":1843},{"id":1842},"plugin-agents-directory",[1844],{"type":51,"value":1845},"Plugin Agents Directory",{"type":45,"tag":119,"props":1847,"children":1850},{"className":1848,"code":1849,"language":51},[742],"plugin-name\u002F\n└── agents\u002F\n    ├── analyzer.md\n    ├── reviewer.md\n    └── generator.md\n",[1851],{"type":45,"tag":127,"props":1852,"children":1853},{"__ignoreMap":124},[1854],{"type":51,"value":1849},{"type":45,"tag":61,"props":1856,"children":1857},{},[1858,1860,1866,1868,1874],{"type":51,"value":1859},"All ",{"type":45,"tag":127,"props":1861,"children":1863},{"className":1862},[],[1864],{"type":51,"value":1865},".md",{"type":51,"value":1867}," files in ",{"type":45,"tag":127,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":51,"value":1873},"agents\u002F",{"type":51,"value":1875}," are auto-discovered.",{"type":45,"tag":112,"props":1877,"children":1879},{"id":1878},"namespacing",[1880],{"type":51,"value":1881},"Namespacing",{"type":45,"tag":61,"props":1883,"children":1884},{},[1885],{"type":51,"value":1886},"Agents are namespaced automatically:",{"type":45,"tag":76,"props":1888,"children":1889},{},[1890,1901],{"type":45,"tag":80,"props":1891,"children":1892},{},[1893,1895],{"type":51,"value":1894},"Single plugin: ",{"type":45,"tag":127,"props":1896,"children":1898},{"className":1897},[],[1899],{"type":51,"value":1900},"agent-name",{"type":45,"tag":80,"props":1902,"children":1903},{},[1904,1906],{"type":51,"value":1905},"With subdirectories: ",{"type":45,"tag":127,"props":1907,"children":1909},{"className":1908},[],[1910],{"type":51,"value":1911},"plugin:subdir:agent-name",{"type":45,"tag":54,"props":1913,"children":1915},{"id":1914},"testing-agents",[1916],{"type":51,"value":1917},"Testing Agents",{"type":45,"tag":112,"props":1919,"children":1921},{"id":1920},"test-triggering",[1922],{"type":51,"value":1923},"Test Triggering",{"type":45,"tag":61,"props":1925,"children":1926},{},[1927],{"type":51,"value":1928},"Create test scenarios to verify agent triggers correctly:",{"type":45,"tag":714,"props":1930,"children":1931},{},[1932,1937,1942,1947],{"type":45,"tag":80,"props":1933,"children":1934},{},[1935],{"type":51,"value":1936},"Write agent with specific triggering examples",{"type":45,"tag":80,"props":1938,"children":1939},{},[1940],{"type":51,"value":1941},"Use similar phrasing to examples in test",{"type":45,"tag":80,"props":1943,"children":1944},{},[1945],{"type":51,"value":1946},"Check Claude loads the agent",{"type":45,"tag":80,"props":1948,"children":1949},{},[1950],{"type":51,"value":1951},"Verify agent provides expected functionality",{"type":45,"tag":112,"props":1953,"children":1955},{"id":1954},"test-system-prompt",[1956],{"type":51,"value":1957},"Test System Prompt",{"type":45,"tag":61,"props":1959,"children":1960},{},[1961],{"type":51,"value":1962},"Ensure system prompt is complete:",{"type":45,"tag":714,"props":1964,"children":1965},{},[1966,1971,1976,1981,1986],{"type":45,"tag":80,"props":1967,"children":1968},{},[1969],{"type":51,"value":1970},"Give agent typical task",{"type":45,"tag":80,"props":1972,"children":1973},{},[1974],{"type":51,"value":1975},"Check it follows process steps",{"type":45,"tag":80,"props":1977,"children":1978},{},[1979],{"type":51,"value":1980},"Verify output format is correct",{"type":45,"tag":80,"props":1982,"children":1983},{},[1984],{"type":51,"value":1985},"Test edge cases mentioned in prompt",{"type":45,"tag":80,"props":1987,"children":1988},{},[1989],{"type":51,"value":1990},"Confirm quality standards are met",{"type":45,"tag":54,"props":1992,"children":1994},{"id":1993},"quick-reference",[1995],{"type":51,"value":1996},"Quick Reference",{"type":45,"tag":112,"props":1998,"children":2000},{"id":1999},"minimal-agent",[2001],{"type":51,"value":2002},"Minimal Agent",{"type":45,"tag":119,"props":2004,"children":2006},{"className":121,"code":2005,"language":123,"meta":124,"style":124},"---\nname: simple-agent\ndescription: Use this agent when [condition]. Typical triggers include [trigger 1] and [trigger 2]. See \"When to invoke\" in the agent body.\nmodel: inherit\ncolor: blue\n---\n\nYou are an agent that [does X].\n\n## When to invoke\n\n- **[Scenario A].** [Description.]\n- **[Scenario B].** [Description.]\n\nProcess:\n1. [Step 1]\n2. [Step 2]\n\nOutput: [What to provide]\n",[2007],{"type":45,"tag":127,"props":2008,"children":2009},{"__ignoreMap":124},[2010,2017,2033,2049,2064,2079,2086,2093,2101,2108,2119,2126,2159,2191,2198,2206,2218,2230,2237],{"type":45,"tag":131,"props":2011,"children":2012},{"class":133,"line":134},[2013],{"type":45,"tag":131,"props":2014,"children":2015},{"style":138},[2016],{"type":51,"value":141},{"type":45,"tag":131,"props":2018,"children":2019},{"class":133,"line":144},[2020,2024,2028],{"type":45,"tag":131,"props":2021,"children":2022},{"style":148},[2023],{"type":51,"value":151},{"type":45,"tag":131,"props":2025,"children":2026},{"style":138},[2027],{"type":51,"value":156},{"type":45,"tag":131,"props":2029,"children":2030},{"style":159},[2031],{"type":51,"value":2032}," simple-agent\n",{"type":45,"tag":131,"props":2034,"children":2035},{"class":133,"line":165},[2036,2040,2044],{"type":45,"tag":131,"props":2037,"children":2038},{"style":148},[2039],{"type":51,"value":171},{"type":45,"tag":131,"props":2041,"children":2042},{"style":138},[2043],{"type":51,"value":156},{"type":45,"tag":131,"props":2045,"children":2046},{"style":159},[2047],{"type":51,"value":2048}," Use this agent when [condition]. Typical triggers include [trigger 1] and [trigger 2]. See \"When to invoke\" in the agent body.\n",{"type":45,"tag":131,"props":2050,"children":2051},{"class":133,"line":183},[2052,2056,2060],{"type":45,"tag":131,"props":2053,"children":2054},{"style":148},[2055],{"type":51,"value":189},{"type":45,"tag":131,"props":2057,"children":2058},{"style":138},[2059],{"type":51,"value":156},{"type":45,"tag":131,"props":2061,"children":2062},{"style":159},[2063],{"type":51,"value":198},{"type":45,"tag":131,"props":2065,"children":2066},{"class":133,"line":201},[2067,2071,2075],{"type":45,"tag":131,"props":2068,"children":2069},{"style":148},[2070],{"type":51,"value":207},{"type":45,"tag":131,"props":2072,"children":2073},{"style":138},[2074],{"type":51,"value":156},{"type":45,"tag":131,"props":2076,"children":2077},{"style":159},[2078],{"type":51,"value":216},{"type":45,"tag":131,"props":2080,"children":2081},{"class":133,"line":219},[2082],{"type":45,"tag":131,"props":2083,"children":2084},{"style":138},[2085],{"type":51,"value":141},{"type":45,"tag":131,"props":2087,"children":2088},{"class":133,"line":292},[2089],{"type":45,"tag":131,"props":2090,"children":2091},{"emptyLinePlaceholder":304},[2092],{"type":51,"value":307},{"type":45,"tag":131,"props":2094,"children":2095},{"class":133,"line":300},[2096],{"type":45,"tag":131,"props":2097,"children":2098},{"style":314},[2099],{"type":51,"value":2100},"You are an agent that [does X].\n",{"type":45,"tag":131,"props":2102,"children":2103},{"class":133,"line":310},[2104],{"type":45,"tag":131,"props":2105,"children":2106},{"emptyLinePlaceholder":304},[2107],{"type":51,"value":307},{"type":45,"tag":131,"props":2109,"children":2110},{"class":133,"line":320},[2111,2115],{"type":45,"tag":131,"props":2112,"children":2113},{"style":138},[2114],{"type":51,"value":334},{"type":45,"tag":131,"props":2116,"children":2117},{"style":337},[2118],{"type":51,"value":340},{"type":45,"tag":131,"props":2120,"children":2121},{"class":133,"line":328},[2122],{"type":45,"tag":131,"props":2123,"children":2124},{"emptyLinePlaceholder":304},[2125],{"type":51,"value":307},{"type":45,"tag":131,"props":2127,"children":2128},{"class":133,"line":343},[2129,2133,2137,2142,2146,2150,2155],{"type":45,"tag":131,"props":2130,"children":2131},{"style":138},[2132],{"type":51,"value":366},{"type":45,"tag":131,"props":2134,"children":2135},{"style":369},[2136],{"type":51,"value":372},{"type":45,"tag":131,"props":2138,"children":2139},{"style":375},[2140],{"type":51,"value":2141},"[Scenario A].",{"type":45,"tag":131,"props":2143,"children":2144},{"style":369},[2145],{"type":51,"value":383},{"type":45,"tag":131,"props":2147,"children":2148},{"style":138},[2149],{"type":51,"value":234},{"type":45,"tag":131,"props":2151,"children":2152},{"style":159},[2153],{"type":51,"value":2154},"Description.",{"type":45,"tag":131,"props":2156,"children":2157},{"style":138},[2158],{"type":51,"value":289},{"type":45,"tag":131,"props":2160,"children":2161},{"class":133,"line":351},[2162,2166,2170,2175,2179,2183,2187],{"type":45,"tag":131,"props":2163,"children":2164},{"style":138},[2165],{"type":51,"value":366},{"type":45,"tag":131,"props":2167,"children":2168},{"style":369},[2169],{"type":51,"value":372},{"type":45,"tag":131,"props":2171,"children":2172},{"style":375},[2173],{"type":51,"value":2174},"[Scenario B].",{"type":45,"tag":131,"props":2176,"children":2177},{"style":369},[2178],{"type":51,"value":383},{"type":45,"tag":131,"props":2180,"children":2181},{"style":138},[2182],{"type":51,"value":234},{"type":45,"tag":131,"props":2184,"children":2185},{"style":159},[2186],{"type":51,"value":2154},{"type":45,"tag":131,"props":2188,"children":2189},{"style":138},[2190],{"type":51,"value":289},{"type":45,"tag":131,"props":2192,"children":2193},{"class":133,"line":360},[2194],{"type":45,"tag":131,"props":2195,"children":2196},{"emptyLinePlaceholder":304},[2197],{"type":51,"value":307},{"type":45,"tag":131,"props":2199,"children":2200},{"class":133,"line":391},[2201],{"type":45,"tag":131,"props":2202,"children":2203},{"style":314},[2204],{"type":51,"value":2205},"Process:\n",{"type":45,"tag":131,"props":2207,"children":2208},{"class":133,"line":424},[2209,2213],{"type":45,"tag":131,"props":2210,"children":2211},{"style":138},[2212],{"type":51,"value":456},{"type":45,"tag":131,"props":2214,"children":2215},{"style":314},[2216],{"type":51,"value":2217}," [Step 1]\n",{"type":45,"tag":131,"props":2219,"children":2220},{"class":133,"line":432},[2221,2225],{"type":45,"tag":131,"props":2222,"children":2223},{"style":138},[2224],{"type":51,"value":470},{"type":45,"tag":131,"props":2226,"children":2227},{"style":314},[2228],{"type":51,"value":2229}," [Step 2]\n",{"type":45,"tag":131,"props":2231,"children":2232},{"class":133,"line":450},[2233],{"type":45,"tag":131,"props":2234,"children":2235},{"emptyLinePlaceholder":304},[2236],{"type":51,"value":307},{"type":45,"tag":131,"props":2238,"children":2239},{"class":133,"line":464},[2240],{"type":45,"tag":131,"props":2241,"children":2242},{"style":314},[2243],{"type":51,"value":2244},"Output: [What to provide]\n",{"type":45,"tag":112,"props":2246,"children":2248},{"id":2247},"frontmatter-fields-summary",[2249],{"type":51,"value":2250},"Frontmatter Fields Summary",{"type":45,"tag":2252,"props":2253,"children":2254},"table",{},[2255,2284],{"type":45,"tag":2256,"props":2257,"children":2258},"thead",{},[2259],{"type":45,"tag":2260,"props":2261,"children":2262},"tr",{},[2263,2269,2274,2279],{"type":45,"tag":2264,"props":2265,"children":2266},"th",{},[2267],{"type":51,"value":2268},"Field",{"type":45,"tag":2264,"props":2270,"children":2271},{},[2272],{"type":51,"value":2273},"Required",{"type":45,"tag":2264,"props":2275,"children":2276},{},[2277],{"type":51,"value":2278},"Format",{"type":45,"tag":2264,"props":2280,"children":2281},{},[2282],{"type":51,"value":2283},"Example",{"type":45,"tag":2285,"props":2286,"children":2287},"tbody",{},[2288,2310,2331,2351,2371],{"type":45,"tag":2260,"props":2289,"children":2290},{},[2291,2296,2301,2306],{"type":45,"tag":2292,"props":2293,"children":2294},"td",{},[2295],{"type":51,"value":151},{"type":45,"tag":2292,"props":2297,"children":2298},{},[2299],{"type":51,"value":2300},"Yes",{"type":45,"tag":2292,"props":2302,"children":2303},{},[2304],{"type":51,"value":2305},"lowercase-hyphens",{"type":45,"tag":2292,"props":2307,"children":2308},{},[2309],{"type":51,"value":604},{"type":45,"tag":2260,"props":2311,"children":2312},{},[2313,2317,2321,2326],{"type":45,"tag":2292,"props":2314,"children":2315},{},[2316],{"type":51,"value":171},{"type":45,"tag":2292,"props":2318,"children":2319},{},[2320],{"type":51,"value":2300},{"type":45,"tag":2292,"props":2322,"children":2323},{},[2324],{"type":51,"value":2325},"Prose triggers",{"type":45,"tag":2292,"props":2327,"children":2328},{},[2329],{"type":51,"value":2330},"Use when... Typical triggers include...",{"type":45,"tag":2260,"props":2332,"children":2333},{},[2334,2338,2342,2347],{"type":45,"tag":2292,"props":2335,"children":2336},{},[2337],{"type":51,"value":189},{"type":45,"tag":2292,"props":2339,"children":2340},{},[2341],{"type":51,"value":2300},{"type":45,"tag":2292,"props":2343,"children":2344},{},[2345],{"type":51,"value":2346},"inherit\u002Fsonnet\u002Fopus\u002Fhaiku",{"type":45,"tag":2292,"props":2348,"children":2349},{},[2350],{"type":51,"value":815},{"type":45,"tag":2260,"props":2352,"children":2353},{},[2354,2358,2362,2367],{"type":45,"tag":2292,"props":2355,"children":2356},{},[2357],{"type":51,"value":207},{"type":45,"tag":2292,"props":2359,"children":2360},{},[2361],{"type":51,"value":2300},{"type":45,"tag":2292,"props":2363,"children":2364},{},[2365],{"type":51,"value":2366},"Color name",{"type":45,"tag":2292,"props":2368,"children":2369},{},[2370],{"type":51,"value":893},{"type":45,"tag":2260,"props":2372,"children":2373},{},[2374,2378,2383,2388],{"type":45,"tag":2292,"props":2375,"children":2376},{},[2377],{"type":51,"value":225},{"type":45,"tag":2292,"props":2379,"children":2380},{},[2381],{"type":51,"value":2382},"No",{"type":45,"tag":2292,"props":2384,"children":2385},{},[2386],{"type":51,"value":2387},"Array of tool names",{"type":45,"tag":2292,"props":2389,"children":2390},{},[2391],{"type":45,"tag":131,"props":2392,"children":2393},{},[2394],{"type":51,"value":2395},"\"Read\", \"Grep\"",{"type":45,"tag":112,"props":2397,"children":2399},{"id":2398},"best-practices-1",[2400],{"type":51,"value":1533},{"type":45,"tag":61,"props":2402,"children":2403},{},[2404],{"type":45,"tag":70,"props":2405,"children":2406},{},[2407],{"type":51,"value":1543},{"type":45,"tag":76,"props":2409,"children":2410},{},[2411,2416,2421,2426,2438,2443,2448],{"type":45,"tag":80,"props":2412,"children":2413},{},[2414],{"type":51,"value":2415},"✅ Name 2-4 trigger scenarios in the description (as prose)",{"type":45,"tag":80,"props":2417,"children":2418},{},[2419],{"type":51,"value":2420},"✅ Put detailed worked scenarios in a \"When to invoke\" body section, as prose bullets",{"type":45,"tag":80,"props":2422,"children":2423},{},[2424],{"type":51,"value":2425},"✅ Write specific triggering conditions",{"type":45,"tag":80,"props":2427,"children":2428},{},[2429,2431,2436],{"type":51,"value":2430},"✅ Use ",{"type":45,"tag":127,"props":2432,"children":2434},{"className":2433},[],[2435],{"type":51,"value":815},{"type":51,"value":2437}," for model unless specific need",{"type":45,"tag":80,"props":2439,"children":2440},{},[2441],{"type":51,"value":2442},"✅ Choose appropriate tools (least privilege)",{"type":45,"tag":80,"props":2444,"children":2445},{},[2446],{"type":51,"value":2447},"✅ Write clear, structured system prompts",{"type":45,"tag":80,"props":2449,"children":2450},{},[2451],{"type":51,"value":2452},"✅ Test agent triggering thoroughly",{"type":45,"tag":61,"props":2454,"children":2455},{},[2456],{"type":45,"tag":70,"props":2457,"children":2458},{},[2459],{"type":51,"value":1591},{"type":45,"tag":76,"props":2461,"children":2462},{},[2463,2468,2473,2478,2483,2488],{"type":45,"tag":80,"props":2464,"children":2465},{},[2466],{"type":51,"value":2467},"❌ Use generic descriptions without trigger scenarios",{"type":45,"tag":80,"props":2469,"children":2470},{},[2471],{"type":51,"value":2472},"❌ Omit triggering conditions",{"type":45,"tag":80,"props":2474,"children":2475},{},[2476],{"type":51,"value":2477},"❌ Give all agents same color",{"type":45,"tag":80,"props":2479,"children":2480},{},[2481],{"type":51,"value":2482},"❌ Grant unnecessary tool access",{"type":45,"tag":80,"props":2484,"children":2485},{},[2486],{"type":51,"value":2487},"❌ Write vague system prompts",{"type":45,"tag":80,"props":2489,"children":2490},{},[2491],{"type":51,"value":2492},"❌ Skip testing",{"type":45,"tag":54,"props":2494,"children":2496},{"id":2495},"additional-resources",[2497],{"type":51,"value":2498},"Additional Resources",{"type":45,"tag":112,"props":2500,"children":2502},{"id":2501},"reference-files",[2503],{"type":51,"value":2504},"Reference Files",{"type":45,"tag":61,"props":2506,"children":2507},{},[2508],{"type":51,"value":2509},"For detailed guidance, consult:",{"type":45,"tag":76,"props":2511,"children":2512},{},[2513,2527,2541],{"type":45,"tag":80,"props":2514,"children":2515},{},[2516,2525],{"type":45,"tag":70,"props":2517,"children":2518},{},[2519],{"type":45,"tag":127,"props":2520,"children":2522},{"className":2521},[],[2523],{"type":51,"value":2524},"references\u002Fsystem-prompt-design.md",{"type":51,"value":2526}," - Complete system prompt patterns",{"type":45,"tag":80,"props":2528,"children":2529},{},[2530,2539],{"type":45,"tag":70,"props":2531,"children":2532},{},[2533],{"type":45,"tag":127,"props":2534,"children":2536},{"className":2535},[],[2537],{"type":51,"value":2538},"references\u002Ftriggering-examples.md",{"type":51,"value":2540}," - Example formats and best practices",{"type":45,"tag":80,"props":2542,"children":2543},{},[2544,2553],{"type":45,"tag":70,"props":2545,"children":2546},{},[2547],{"type":45,"tag":127,"props":2548,"children":2550},{"className":2549},[],[2551],{"type":51,"value":2552},"references\u002Fagent-creation-system-prompt.md",{"type":51,"value":2554}," - The exact prompt from Claude Code",{"type":45,"tag":112,"props":2556,"children":2558},{"id":2557},"example-files",[2559],{"type":51,"value":2560},"Example Files",{"type":45,"tag":61,"props":2562,"children":2563},{},[2564,2566,2572],{"type":51,"value":2565},"Working examples in ",{"type":45,"tag":127,"props":2567,"children":2569},{"className":2568},[],[2570],{"type":51,"value":2571},"examples\u002F",{"type":51,"value":156},{"type":45,"tag":76,"props":2574,"children":2575},{},[2576,2590],{"type":45,"tag":80,"props":2577,"children":2578},{},[2579,2588],{"type":45,"tag":70,"props":2580,"children":2581},{},[2582],{"type":45,"tag":127,"props":2583,"children":2585},{"className":2584},[],[2586],{"type":51,"value":2587},"agent-creation-prompt.md",{"type":51,"value":2589}," - AI-assisted agent generation template",{"type":45,"tag":80,"props":2591,"children":2592},{},[2593,2602],{"type":45,"tag":70,"props":2594,"children":2595},{},[2596],{"type":45,"tag":127,"props":2597,"children":2599},{"className":2598},[],[2600],{"type":51,"value":2601},"complete-agent-examples.md",{"type":51,"value":2603}," - Full agent examples for different use cases",{"type":45,"tag":112,"props":2605,"children":2607},{"id":2606},"utility-scripts",[2608],{"type":51,"value":2609},"Utility Scripts",{"type":45,"tag":61,"props":2611,"children":2612},{},[2613,2615,2621],{"type":51,"value":2614},"Development tools in ",{"type":45,"tag":127,"props":2616,"children":2618},{"className":2617},[],[2619],{"type":51,"value":2620},"scripts\u002F",{"type":51,"value":156},{"type":45,"tag":76,"props":2623,"children":2624},{},[2625,2639],{"type":45,"tag":80,"props":2626,"children":2627},{},[2628,2637],{"type":45,"tag":70,"props":2629,"children":2630},{},[2631],{"type":45,"tag":127,"props":2632,"children":2634},{"className":2633},[],[2635],{"type":51,"value":2636},"validate-agent.sh",{"type":51,"value":2638}," - Validate agent file structure",{"type":45,"tag":80,"props":2640,"children":2641},{},[2642,2651],{"type":45,"tag":70,"props":2643,"children":2644},{},[2645],{"type":45,"tag":127,"props":2646,"children":2648},{"className":2647},[],[2649],{"type":51,"value":2650},"test-agent-trigger.sh",{"type":51,"value":2652}," - Test if agent triggers correctly",{"type":45,"tag":54,"props":2654,"children":2656},{"id":2655},"implementation-workflow",[2657],{"type":51,"value":2658},"Implementation Workflow",{"type":45,"tag":61,"props":2660,"children":2661},{},[2662],{"type":51,"value":2663},"To create an agent for a plugin:",{"type":45,"tag":714,"props":2665,"children":2666},{},[2667,2672,2677,2689,2694,2699,2704,2715,2720],{"type":45,"tag":80,"props":2668,"children":2669},{},[2670],{"type":51,"value":2671},"Define agent purpose and triggering conditions",{"type":45,"tag":80,"props":2673,"children":2674},{},[2675],{"type":51,"value":2676},"Choose creation method (AI-assisted or manual)",{"type":45,"tag":80,"props":2678,"children":2679},{},[2680,2682,2687],{"type":51,"value":2681},"Create ",{"type":45,"tag":127,"props":2683,"children":2685},{"className":2684},[],[2686],{"type":51,"value":1725},{"type":51,"value":2688}," file",{"type":45,"tag":80,"props":2690,"children":2691},{},[2692],{"type":51,"value":2693},"Write frontmatter with all required fields",{"type":45,"tag":80,"props":2695,"children":2696},{},[2697],{"type":51,"value":2698},"Write system prompt following best practices",{"type":45,"tag":80,"props":2700,"children":2701},{},[2702],{"type":51,"value":2703},"Name 2-4 trigger scenarios in description (prose) and detail them in a \"When to invoke\" body section",{"type":45,"tag":80,"props":2705,"children":2706},{},[2707,2709],{"type":51,"value":2708},"Validate with ",{"type":45,"tag":127,"props":2710,"children":2712},{"className":2711},[],[2713],{"type":51,"value":2714},"scripts\u002Fvalidate-agent.sh",{"type":45,"tag":80,"props":2716,"children":2717},{},[2718],{"type":51,"value":2719},"Test triggering with real scenarios",{"type":45,"tag":80,"props":2721,"children":2722},{},[2723],{"type":51,"value":2724},"Document agent in plugin README",{"type":45,"tag":61,"props":2726,"children":2727},{},[2728],{"type":51,"value":2729},"Focus on clear triggering conditions and comprehensive system prompts for autonomous operation.",{"type":45,"tag":2731,"props":2732,"children":2733},"style",{},[2734],{"type":51,"value":2735},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2737,"total":2919},[2738,2759,2773,2785,2802,2813,2834,2854,2868,2882,2890,2903],{"slug":2739,"name":2739,"fn":2740,"description":2741,"org":2742,"tags":2743,"stars":2756,"repoUrl":2757,"updatedAt":2758},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2744,2747,2750,2753],{"name":2745,"slug":2746,"type":14},"Creative","creative",{"name":2748,"slug":2749,"type":14},"Design","design",{"name":2751,"slug":2752,"type":14},"Generative Art","generative-art",{"name":2754,"slug":2755,"type":14},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":2760,"name":2760,"fn":2761,"description":2762,"org":2763,"tags":2764,"stars":2756,"repoUrl":2757,"updatedAt":2772},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2765,2768,2769],{"name":2766,"slug":2767,"type":14},"Branding","branding",{"name":2748,"slug":2749,"type":14},{"name":2770,"slug":2771,"type":14},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":2774,"name":2774,"fn":2775,"description":2776,"org":2777,"tags":2778,"stars":2756,"repoUrl":2757,"updatedAt":2784},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2779,2780,2781],{"name":2745,"slug":2746,"type":14},{"name":2748,"slug":2749,"type":14},{"name":2782,"slug":2783,"type":14},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":2786,"name":2786,"fn":2787,"description":2788,"org":2789,"tags":2790,"stars":2756,"repoUrl":2757,"updatedAt":2801},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2791,2792,2793,2796,2798],{"name":22,"slug":23,"type":14},{"name":9,"slug":8,"type":14},{"name":2794,"slug":2795,"type":14},"Anthropic SDK","anthropic-sdk",{"name":2797,"slug":2786,"type":14},"Claude API",{"name":2799,"slug":2800,"type":14},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":2803,"name":2803,"fn":2804,"description":2805,"org":2806,"tags":2807,"stars":2756,"repoUrl":2757,"updatedAt":2812},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2808,2809],{"name":16,"slug":17,"type":14},{"name":2810,"slug":2811,"type":14},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":2814,"name":2814,"fn":2815,"description":2816,"org":2817,"tags":2818,"stars":2756,"repoUrl":2757,"updatedAt":2833},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2819,2822,2824,2827,2830],{"name":2820,"slug":2821,"type":14},"Documents","documents",{"name":2823,"slug":2814,"type":14},"DOCX",{"name":2825,"slug":2826,"type":14},"Office","office",{"name":2828,"slug":2829,"type":14},"Templates","templates",{"name":2831,"slug":2832,"type":14},"Word","word","2026-07-18T05:16:23.136271",{"slug":2835,"name":2835,"fn":2836,"description":2837,"org":2838,"tags":2839,"stars":2756,"repoUrl":2757,"updatedAt":2853},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2840,2841,2844,2847,2850],{"name":2748,"slug":2749,"type":14},{"name":2842,"slug":2843,"type":14},"Frontend","frontend",{"name":2845,"slug":2846,"type":14},"React","react",{"name":2848,"slug":2849,"type":14},"Tailwind CSS","tailwind-css",{"name":2851,"slug":2852,"type":14},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":2855,"name":2855,"fn":2856,"description":2857,"org":2858,"tags":2859,"stars":2756,"repoUrl":2757,"updatedAt":2867},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2860,2863,2864],{"name":2861,"slug":2862,"type":14},"Communications","communications",{"name":2828,"slug":2829,"type":14},{"name":2865,"slug":2866,"type":14},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":2869,"name":2869,"fn":2870,"description":2871,"org":2872,"tags":2873,"stars":2756,"repoUrl":2757,"updatedAt":2881},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2874,2875,2878,2879],{"name":22,"slug":23,"type":14},{"name":2876,"slug":2877,"type":14},"API Development","api-development",{"name":2799,"slug":2800,"type":14},{"name":2880,"slug":31,"type":14},"MCP","2026-04-06T17:56:10.357665",{"slug":2783,"name":2783,"fn":2883,"description":2884,"org":2885,"tags":2886,"stars":2756,"repoUrl":2757,"updatedAt":2889},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2887,2888],{"name":2820,"slug":2821,"type":14},{"name":2782,"slug":2783,"type":14},"2026-04-06T17:56:02.483316",{"slug":2891,"name":2891,"fn":2892,"description":2893,"org":2894,"tags":2895,"stars":2756,"repoUrl":2757,"updatedAt":2902},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2896,2899],{"name":2897,"slug":2898,"type":14},"PowerPoint","powerpoint",{"name":2900,"slug":2901,"type":14},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":2904,"name":2904,"fn":2905,"description":2906,"org":2907,"tags":2908,"stars":2756,"repoUrl":2757,"updatedAt":2918},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2909,2910,2911,2914,2917],{"name":22,"slug":23,"type":14},{"name":16,"slug":17,"type":14},{"name":2912,"slug":2913,"type":14},"Evals","evals",{"name":2915,"slug":2916,"type":14},"Performance","performance",{"name":2810,"slug":2811,"type":14},"2026-04-19T06:45:40.804",490,{"items":2921,"total":537},[2922,2938,2945,2957,2967,2980,2999],{"slug":2923,"name":2923,"fn":2924,"description":2925,"org":2926,"tags":2927,"stars":24,"repoUrl":25,"updatedAt":2937},"access","manage iMessage channel access and permissions","Manage iMessage channel access — approve pairings, edit allowlists, set DM\u002Fgroup policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the iMessage channel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2928,2931,2934],{"name":2929,"slug":2930,"type":14},"Access Control","access-control",{"name":2932,"slug":2933,"type":14},"iMessage","imessage",{"name":2935,"slug":2936,"type":14},"Messaging","messaging","2026-04-12T04:54:55.917969",{"slug":4,"name":4,"fn":5,"description":6,"org":2939,"tags":2940,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2941,2942,2943,2944],{"name":22,"slug":23,"type":14},{"name":9,"slug":8,"type":14},{"name":16,"slug":17,"type":14},{"name":19,"slug":20,"type":14},{"slug":2946,"name":2946,"fn":2947,"description":2948,"org":2949,"tags":2950,"stars":24,"repoUrl":25,"updatedAt":2956},"build-mcp-app","build MCP apps with interactive UI","This skill should be used when the user wants to build an \"MCP app\", add \"interactive UI\" or \"widgets\" to an MCP server, \"render components in chat\", build \"MCP UI resources\", make a tool that shows a \"form\", \"picker\", \"dashboard\" or \"confirmation dialog\" inline in the conversation, or mentions \"apps SDK\" in the context of MCP. Use AFTER the build-mcp-server skill has settled the deployment model, or when the user already knows they want UI widgets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2951,2952,2954,2955],{"name":22,"slug":23,"type":14},{"name":2953,"slug":30,"type":14},"Claude Code",{"name":2880,"slug":31,"type":14},{"name":2851,"slug":2852,"type":14},"2026-04-06T17:59:32.421865",{"slug":2958,"name":2958,"fn":2870,"description":2959,"org":2960,"tags":2961,"stars":24,"repoUrl":25,"updatedAt":2966},"build-mcp-server","This skill should be used when the user asks to \"build an MCP server\", \"create an MCP\", \"make an MCP integration\", \"wrap an API for Claude\", \"expose tools to Claude\", \"make an MCP app\", or discusses building something with the Model Context Protocol. It is the entry point for MCP server development — it interrogates the user about their use case, determines the right deployment model (remote HTTP, MCPB, local stdio), picks a tool-design pattern, and hands off to specialized skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2962,2963,2964,2965],{"name":22,"slug":23,"type":14},{"name":2876,"slug":2877,"type":14},{"name":2953,"slug":30,"type":14},{"name":2880,"slug":31,"type":14},"2026-04-06T17:59:33.744601",{"slug":2968,"name":2968,"fn":2969,"description":2970,"org":2971,"tags":2972,"stars":24,"repoUrl":25,"updatedAt":2979},"build-mcpb","package and distribute MCP servers","This skill should be used when the user wants to \"package an MCP server\", \"bundle an MCP\", \"make an MCPB\", \"ship a local MCP server\", \"distribute a local MCP\", discusses \".mcpb files\", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem, desktop apps, or OS and must be installable without the user having Node\u002FPython set up.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2973,2974,2975,2976],{"name":22,"slug":23,"type":14},{"name":2953,"slug":30,"type":14},{"name":2880,"slug":31,"type":14},{"name":2977,"slug":2978,"type":14},"Packaging","packaging","2026-04-06T17:59:31.159961",{"slug":2981,"name":2981,"fn":2982,"description":2983,"org":2984,"tags":2985,"stars":24,"repoUrl":25,"updatedAt":2998},"cardputer-buddy","develop MicroPython apps for Cardputer","Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on \"add an app\", \"push to the cardputer\", \"tail the device\", \"run on the device\", or follow-up work after \u002Fmaker-setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2986,2989,2992,2995],{"name":2987,"slug":2988,"type":14},"Hardware","hardware",{"name":2990,"slug":2991,"type":14},"M5Stack","m5stack",{"name":2993,"slug":2994,"type":14},"MicroPython","micropython",{"name":2996,"slug":2997,"type":14},"Python","python","2026-05-06T05:39:00.134385",{"slug":3000,"name":3000,"fn":3001,"description":3002,"org":3003,"tags":3004,"stars":24,"repoUrl":25,"updatedAt":3010},"claude-automation-recommender","recommend Claude Code automations","Analyze a codebase and recommend Claude Code automations (hooks, subagents, skills, plugins, MCP servers). Use when user asks for automation recommendations, wants to optimize their Claude Code setup, mentions improving Claude Code workflows, asks how to first set up Claude Code for a project, or wants to know what Claude Code features they should use.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3005,3008,3009],{"name":3006,"slug":3007,"type":14},"Agent Context","agent-context",{"name":2953,"slug":30,"type":14},{"name":2880,"slug":31,"type":14},"2026-04-06T18:00:34.049624"]