What problem does it solve? Creating a new Claude Code plugin requires setting up many boilerplate files—plugin.json, package.json, commands, MCP servers, hooks, and skills—each following specific conventions. This Skill automates that scaffolding so developers can start building plugin logic immediately instead of wiring up structure. ## Core Features & Use Cases - Plugin Scaffolding: Generate complete plugin directory structures with selectable components (commands, mcp-server, hooks, skills) via /plugin-template:create. - Implementation Type Conversion: Convert plugins between markdown-only and TypeScript implementations using /plugin-template:strip and /plugin-template:upgrade. - Convention Enforcement: Applies kebab-case naming validation, SideQuest marketplace registration, Biome linting setup, and mcpez-based MCP server patterns. - Use Case: A developer wants to build a git-statistics plugin with an MCP server and slash commands; the Skill generates the full TypeScript structure, registers it in marketplace.json, installs dependencies with bun, and verifies with tests. ## Quick Start Ask the assistant to create a new plugin named my-plugin with the components you need, such as commands and an MCP server.