claude-plugins
v0.2.0
Published
CLI tool for managing Claude Code plugins
Downloads
7,826
Maintainers
Readme
Claude Plugins CLI
Development
Run tests
bun testBuild
bun run buildPlugin Resolution
The CLI resolves all plugin identifiers via the central registry API (npm-style):
- @author/marketplace/plugin → API lookup at
https://api.claude-plugins.dev/api/resolve/author/marketplace/plugin - namespace/plugin → API lookup at
https://api.claude-plugins.dev/api/resolve/namespace/plugin - plugin → API lookup at
https://api.claude-plugins.dev/api/resolve/plugin
All plugins must be registered in the central registry. The API automatically tracks download statistics. C
Registry API: https://www.val.town/x/kamalnrf/claude-plugins-registry
Creating Plugins
A valid Claude plugin must have:
your-plugin/
.claude-plugin/
marketplace.json (or plugin.json)
agents/ (optional)
commands/ (optional)
mcpServers/ (optional)Minimum marketplace.json:
{
"name": "your-plugin",
"description": "Plugin description",
"version": "1.0.0",
"author": {
"name": "Your Name"
}
}