What problem does it solve?
This skill prevents slow, broken Claude Code plugins by teaching the correct directory layout, manifest configuration, naming conventions, and auto-discovery rules needed for components (commands, agents, skills, hooks, MCP) to load reliably.
Core Features & Use Cases
- Plugin directory layout & auto-discovery: Learn where Claude Code looks for commands, agents, skills (via
SKILL.md), hooks, and MCP servers so your plugin components are discoverable without guesswork.
plugin.json manifest configuration: Understand required and recommended fields, plus how to specify additional component paths safely and portably.
- Portable path references: Apply
${CLAUDE_PLUGIN_ROOT} to avoid hardcoded installation paths and ensure hooks/MCP/scripts work across environments.
- Best practices & troubleshooting: Follow conventions (kebab-case, correct locations) and diagnose common loading and path-resolution failures quickly.
Quick Start
Ask the AI: "Create a Claude Code plugin scaffold for a project called 'my-devops-helper' that includes a plugin manifest and one skill, and explain exactly where each file must go and how auto-discovery will load it."