Remove redundant create-plugin command in favor of existing skill

The create-plugin-scaffold skill already covers the same workflow
with more detail. Remove the command file and commands reference
from the plugin manifest.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
ericzakariasson
2026-02-11 14:17:21 -08:00
parent f428e28a25
commit 837194def4
2 changed files with 1 additions and 22 deletions
+1 -2
View File
@@ -24,6 +24,5 @@
],
"skills": "./skills/",
"rules": "./rules/",
"agents": "./agents/",
"commands": "./commands/"
"agents": "./agents/"
}
-20
View File
@@ -1,20 +0,0 @@
---
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.