Comprehensive Claude Code plugin development expert providing guidance for creation, maintenance, installation, configuration, and troubleshooting of plugins and skills
Provides comprehensive guidance for creating, installing, configuring, and troubleshooting Claude Code plugins. Use when developing new plugins, fixing plugin errors, or managing plugin installations and dependencies.
/plugin marketplace add menoncello/menon-market/plugin install studio-cc@menon-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/best-practices.mdreferences/quick-start.mdreferences/troubleshooting-guide.mdscripts/plugin-validator.jsThis skill provides comprehensive expertise for Claude Code plugin development, including creation, installation, configuration, maintenance, and troubleshooting. It serves as the definitive resource for developers working with Claude Code plugins and skills.
Use this skill when you need to:
my-plugin/
├── .claude-plugin/
│ ├── plugin.json # Plugin metadata
│ └── marketplace.json # Distribution config
├── commands/ # Custom slash commands
│ ├── command1.md
│ └── command2.md
├── skills/ # Agent skills
│ └── my-skill/
│ └── SKILL.md
├── agents/ # Custom agents
│ └── custom-agent.json
├── hooks/ # Event handlers
│ └── hooks.json
├── mcp/ # MCP server configs
│ └── server.json
├── scripts/ # Helper scripts
├── templates/ # Code templates
└── README.md # Plugin documentation
claude
/plugin
# Install from marketplace
claude marketplace install plugin-name@marketplace-name
# Install from local directory
claude marketplace install ./my-plugin
# Install from Git repository
claude marketplace install https://github.com/user/plugin-repo.git
# Install specific version
claude marketplace install plugin-name@1.2.3
{
"plugins": ["my-awesome-plugin@latest", "code-formatter@2.1.0", "database-tools@github:user/repo"]
}
{
"version": "1.0.0",
"plugins": {
"sources": [
{
"type": "marketplace",
"name": "official",
"url": "https://github.com/claude-official/marketplace",
"enabled": true
}
],
"installed": [
{
"name": "code-formatter",
"version": "2.1.0",
"source": "official",
"installedAt": "2024-01-15T10:30:00Z",
"enabled": true,
"autoUpdate": true
}
]
},
"permissions": {
"allowedDomains": ["github.com", "api.github.com"],
"allowedCommands": ["git", "npm", "node"],
"filesystemAccess": ["read", "write"],
"networkAccess": true
}
}
// Enable debug logging
export CLAUDE_DEBUG=true
claude --verbose
// Check plugin status
claude plugin list
claude plugin status plugin-name
class PerformanceMonitor {
async measure<T>(
operation: () => Promise<T>,
operationName: string
): Promise<{ result: T; metrics: PerformanceMetrics }> {
// Implementation for performance measurement
}
}
This skill serves as the comprehensive resource for Claude Code plugin development, providing guidance from initial concept through deployment and maintenance. For specific implementation details, refer to the reference materials in the references/ directory.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.