A community marketplace of Claude Code plugins.
.claude-plugin/
└── marketplace.json ← marketplace catalog (the entry point)
plugins/
└── hello-world/ ← example plugin
├── .claude-plugin/
│ └── plugin.json ← plugin manifest
└── skills/
└── hello-world/
└── SKILL.md ← the /hello-world skill
/plugin marketplace add CoderCoco/claude-plugin-marketplace/plugin install hello-world@codercoco-custom-plugin-marketplace/hello-world- Create your plugin directory under
plugins/<your-plugin-name>/. - Add a manifest at
plugins/<your-plugin-name>/.claude-plugin/plugin.json:{ "name": "your-plugin-name", "description": "What your plugin does", "version": "1.0.0", "author": { "name": "Your Name" }, "license": "MIT" } - Add a skill at
plugins/<your-plugin-name>/skills/<skill-name>/SKILL.md:--- description: One-line description shown in /help --- Instructions for Claude when this skill is invoked.
- Register it in
.claude-plugin/marketplace.jsonunderplugins. - Open a pull request!
See the official docs at https://code.claude.com/docs for the full plugin reference.