Instructions for creating a new Claude plugin in this marketplace repository. Use when the user wants to create, scaffold, or set up a new plugin.
Your task is to help the user create a new Claude plugin in this marketplace repository.
plugins/[plugin-name]/
├── .claude-plugin/
│ └── plugin.json
├── README.md
└── skills/
└── [skill-name]/
└── SKILL.md
Create plugins/[plugin-name]/.claude-plugin/plugin.json:
{
"name": "[plugin-name]",
"description": "[description]",
"version": "1.0.0",
"author": { "name": "eliaslecomte" }
}
Add an entry to .claude-plugin/marketplace.json in the plugins array:
{
"name": "[plugin-name]",
"source": "./plugins/[plugin-name]",
"description": "[description]",
"version": "1.0.0",
"author": { "name": "eliaslecomte" },
"category": "productivity"
}
Create skills in plugins/[plugin-name]/skills/[skill-name]/SKILL.md with this structure:
---