Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion plugins/plugin-dev/commands/create-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,15 @@ Guide the user through creating a complete, high-quality Claude Code plugin from
- For settings: Provide configuration templates

2. **Add marketplace entry** (if publishing):
- Show user how to add to marketplace.json
- Show user how to add to marketplace.json:
```json
{
"name": "plugin-name",
"description": "Brief plugin description",
"source": "./plugins/plugin-name",
"category": "development"
}
```
- Help draft marketplace description
- Suggest category and tags

Expand Down