plugin
Generates Claude Code plugins with scaffolding, templates, and expert architectural guidance.
/plugin marketplace add pluginagentmarketplace/custom-plugin-ux-design/plugin install custom-plugin-ux-design@pluginagentmarketplace-ux-designStart building a new Claude Code plugin from scratch with expert guidance from the Plugin Architecture Specialist.
/create-plugin [plugin-name] [--type] [--template] [--scaffold]
/create-plugin my-plugin
/create-plugin my-plugin --template api-integration
/create-plugin my-plugin --template learning-platform
/create-plugin my-plugin --scaffold
Specialized agents that guide users through specific domains.
/create-plugin my-plugin --type agent
Slash commands providing specific functionality.
/create-plugin my-plugin --type command
Learning skills and knowledge containers.
/create-plugin my-plugin --type skill
Complete plugins with agents, commands, and skills.
/create-plugin my-plugin --type integrated
Ideal for educational and learning plugins.
/create-plugin my-plugin --template learning-platform
Includes:
For plugins integrating external APIs.
/create-plugin my-plugin --template api-integration
Includes:
For productivity and utility plugins.
/create-plugin my-plugin --template utility
Includes:
For community-driven plugins.
/create-plugin my-plugin --template community
Includes:
/create-plugin my-plugin --scaffold
Creates:
.claude-plugin/ directory with manifestagents/ directory structurecommands/ directory structureskills/ directory structurehooks/ directory structure/create-plugin my-plugin --scaffold --configure
Interactive setup:
/create-plugin my-plugin --scaffold --examples
Includes:
my-plugin/
├── .claude-plugin/
│ └── plugin.json
├── agents/
│ └── example-agent.md
├── commands/
│ └── example-command.md
├── skills/
│ └── example-skill/
│ └── SKILL.md
├── hooks/
│ └── hooks.json
├── README.md
└── LICENSE
Customize Manifest
Edit .claude-plugin/plugin.json
Create Agents
Add agent files to agents/ directory
Build Commands
Create command markdown in commands/ directory
Define Skills
Create skill containers in skills/ directory
Configure Hooks
Update hooks.json for automation
Test Locally
Load plugin in Claude Code: /plugin load ./my-plugin
The Plugin Architecture Specialist will guide you through:
Use specialized agents for different aspects:
/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