You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CLAUDE.md
+40-2Lines changed: 40 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
4
4
5
5
## Overview
6
6
7
-
This repository is a **plugin marketplace** containing the **plugin-dev** plugin - a comprehensive toolkit for developing Claude Code plugins. It provides 8 specialized skills, 3 agents, and 2 guided workflow commands for building high-quality plugins and marketplaces.
7
+
This repository is a **plugin marketplace** containing the **plugin-dev** plugin - a comprehensive toolkit for developing Claude Code plugins. It provides 8 specialized skills, 3 agents, and 3 slash commands (1 entry point + 2 guided workflows) for building high-quality plugins and marketplaces.
8
8
9
9
## Quick Reference
10
10
@@ -41,7 +41,7 @@ When testing locally, point to the plugin directory, not the root.
-`references/` - Detailed documentation loaded into context as needed
46
46
-`examples/` - Complete working examples and templates for copy-paste
47
47
-`scripts/` - Utility scripts (executable without loading into context)
@@ -91,6 +91,8 @@ Test the plugin locally:
91
91
cc --plugin-dir plugins/plugin-dev
92
92
```
93
93
94
+
**Tip**: Create a separate test repository to avoid polluting your development environment. See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed testing guidelines.
95
+
94
96
Utility scripts (paths relative to `plugins/plugin-dev/`):
@@ -185,6 +195,8 @@ The primary entry point for plugin development. Presents users with a choice:
185
195
1. **Create a plugin** (recommended for most users) - Routes to `/plugin-dev:create-plugin`
186
196
2. **Create a marketplace** - Routes to `/plugin-dev:create-marketplace`
187
197
198
+
This command uses `disable-model-invocation: true` to prevent subagent model invocation, ensuring it only routes to specialized workflows rather than handling the task itself. This pattern is useful for workflow commands that delegate to other commands.
199
+
188
200
Use this command when starting fresh or when unsure which workflow to use.
189
201
190
202
### `/plugin-dev:create-plugin`
@@ -245,6 +257,32 @@ Use these agents proactively after creating components:
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ A comprehensive toolkit for developing Claude Code plugins with expert guidance
32
32
33
33
## Overview
34
34
35
-
The plugin-dev toolkit provides **8 specialized skills**, **3 validation agents**, and **2 guided workflow commands** to help you build high-quality Claude Code plugins:
35
+
The plugin-dev toolkit provides **8 specialized skills**, **3 validation agents**, and **3 slash commands** to help you build high-quality Claude Code plugins:
36
36
37
37
-**Skills** provide domain expertise loaded on-demand via trigger phrases
38
38
-**Agents** automate validation and generation tasks
@@ -106,7 +106,7 @@ Skills load automatically when you ask relevant questions. Each skill includes c
106
106
107
107
Each skill provides:
108
108
109
-
-**Core SKILL.md** (~1,500-2,000 words) - Essential API reference
109
+
-**Core SKILL.md** (~1,000-2,200 words) - Essential API reference
110
110
-**references/** - Detailed guides and patterns
111
111
-**examples/** - Complete working code for copy-paste
0 commit comments