Scaffold a new Claude Code plugin with proper structure
Scaffolds a new Claude Code plugin with proper directory structure and configuration files.
/plugin marketplace add wayne930242/Reflexive-Claude-Code/plugin install RCC-dev-helper@Reflexive-Claude-CodeCreate a new Claude Code plugin with the specified name and type.
Based on type:
Full Plugin (default):
<name>/
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── example.md
├── skills/
│ └── <name>/
│ └── SKILL.md
└── README.md
Skill Only:
<name>/
├── .claude-plugin/
│ └── plugin.json
├── skills/
│ └── <name>/
│ └── SKILL.md
└── README.md
Command Only:
<name>/
├── .claude-plugin/
│ └── plugin.json
├── commands/
│ └── <name>.md
└── README.md
Create plugin.json with:
Create appropriate skill/command templates.
Display:
/rcc:create-plugin my-awesome-tool
/rcc:create-plugin code-reviewer skill
/rcc:create-plugin deploy-helper command
/create-pluginGuided end-to-end plugin creation workflow with component design, implementation, and validation
/create-pluginGuided end-to-end plugin creation workflow with component design, implementation, and validation