mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
97128c02db
- Convert all H1 headings to sentence case across skills, rules, agents, commands, and READMEs (~65 headings) - Replace em-dashes with colons in plugin.json descriptions and README taglines to match marketplace.json convention - Replace semicolons with periods and restructure sentences across skills, rules, agents, and READMEs (~19 instances) Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
706 B
Markdown
21 lines
706 B
Markdown
---
|
|
name: create-plugin
|
|
description: Scaffold a new Cursor plugin with manifest, component files, and marketplace wiring when needed
|
|
---
|
|
|
|
# Create plugin
|
|
|
|
Create a new plugin scaffold using this flow:
|
|
|
|
1. Gather inputs:
|
|
- Plugin name (kebab-case)
|
|
- Description and target users
|
|
- Components to include (`rules`, `skills`, `agents`, `commands`, `hooks`, `mcpServers`)
|
|
2. Create required files:
|
|
- `.cursor-plugin/plugin.json`
|
|
- `README.md`
|
|
- `LICENSE`
|
|
3. Add selected component folders and starter files with frontmatter.
|
|
4. In multi-plugin repositories, update `.cursor-plugin/marketplace.json` with a new plugin entry.
|
|
5. Return a summary of created files and any remaining manual setup.
|