Hand-curated open source repository for Claude Code plugins - tools, agents, skills, and MCP servers that extend Claude Code's capabilities.
Claude Market is a plugin marketplace for Claude Code, providing a curated collection of high-quality extensions built by the community. Each plugin is reviewed for quality, documentation, and usefulness.
Add this marketplace to your Claude Code:
/plugin marketplace add claude-market/marketplaceThen browse available plugins:
/pluginInteractive tool for creating new Claude Code plugins through guided prompts.
Features:
- Create plugins with commands, agents, hooks, skills, and MCP servers
- Step-by-step prompts collect all necessary information
- Generates comprehensive, well-structured component files
- Validates plugin structure and configuration
- Serves as an example of plugin best practices
Install:
/plugin install plugin-builderLearn more: plugin-builder/README.md
We welcome high-quality plugin contributions! Here's how to submit yours:
- Your plugin should be well-tested and functional
- Include comprehensive documentation (README.md)
- Follow plugin structure best practices
- Have appropriate open source license
The easiest way to create a plugin for this marketplace:
-
Install the plugin-builder:
/plugin install ./plugin-builder
-
Create your plugin:
/plugin-builder:init
Follow the prompts to create your plugin as a top-level directory
-
Validate your plugin:
/plugin-builder:validate
-
Test locally:
/plugin install ./{plugin-name}
-
Fork this repository
-
Add your plugin as a top-level directory:
your-plugin/ ├── .claude-plugin/ │ └── plugin.json ├── commands/ # optional - only if you have commands ├── agents/ # optional - only if you have agents ├── hooks/ # optional - only if you have hooks ├── skills/ # optional - only if you have skills ├── mcp-servers/ # optional - only if you have MCP servers ├── CODEOWNERS # required - defines reviewers ├── README.md └── LICENSE -
Generate marketplace.json entry:
Run the following command to automatically generate your plugin's entry in
.claude-plugin/marketplace.json:make generate-marketplace-json
This will scan your plugin directory and add the appropriate entry to the marketplace manifest.
-
Create a pull request with:
- Clear description of what your plugin does
- Screenshots or examples if applicable
- Any special requirements or dependencies
-
Review process:
- Maintainers will review for quality, documentation, and functionality
- May request changes or improvements
- Once approved, your plugin will be merged and available to all users
To maintain a high-quality marketplace, submissions should meet these criteria:
- Clear, comprehensive README with usage examples
- Valid plugin.json with complete metadata
- All components work as documented
- Open source license (MIT, Apache 2.0, GPL, etc.)
- No malicious code or security vulnerabilities
- Detailed descriptions for all components
- Examples showing typical usage
- Edge case handling
- Keywords for discoverability
- Version number following semantic versioning
Every plugin must have:
.claude-plugin/plugin.json- Plugin manifestCODEOWNERS- Defines maintainers and reviewersREADME.md- DocumentationLICENSE- Open source license- At least one component (command, agent, hook, skill, or MCP server)
Component files go in (directories are optional - only create if you have that component type):
commands/*.md- Slash commandsagents/*.md- Agentshooks/*.json- Hooksskills/*.md- Skillsmcp-servers/*.json- MCP server configs
Looking for inspiration? Here are plugin ideas the community would love:
- Framework-specific helpers (React, Vue, Next.js, etc.)
- Testing utilities (generate tests, fix failing tests)
- Code quality tools (linting, formatting, refactoring)
- Git workflow automation
- Docker/Kubernetes helpers
- Python project scaffolding
- Go best practices
- Rust development tools
- JavaScript/TypeScript utilities
- API documentation generators
- README templates
- Changelog automation
- Code comment generators
- Issue tracker integration
- Sprint planning helpers
- Dependency update automation
- Web scraping tools
- Data analysis helpers
- Machine learning utilities
- API client generators
- Database migration tools
- Issues: Report bugs or request features via GitHub Issues
- Discussions: Share ideas and ask questions in GitHub Discussions
- Documentation: Claude Code Plugin Docs
- Claude Code - Official Claude Code page
- Plugin Documentation - How to create plugins
- Marketplace Documentation - How marketplaces work
- Plugin Builder - Tool for creating plugins easily
Individual plugins have their own licenses (see each plugin's LICENSE file).
The marketplace repository itself is licensed under MIT.
