agents-commands-creator
Installation
SKILL.md
Agents & Commands Creator
Comprehensive guide for creating agents and commands in Claude Code plugins. Ensures proper YAML frontmatter, markdown structure, and plugin.json integration.
Critical Difference from Inline Configuration
⚠️ COMMON MISTAKE: Trying to define agents/commands as JSON objects inside plugin.json
❌ WRONG:
{
"agents": [
{ "name": "my-agent", "description": "..." }
]
}