Thank you for your interest in contributing to the Awesome Claude Plugins marketplace! This document provides guidelines for submitting plugins and improvements.
Note: Our plugin format is based on the official Claude Code plugin examples.
-
Fork the Repository
- Fork this repository to your GitHub account
- Clone your fork locally
-
Create a Plugin Directory
- Navigate to the
plugins/directory - Copy the
plugin-template/directory to a new directory named{your-plugin-name}/ - Follow the plugin structure documented in
plugins/README.md
- Navigate to the
-
Fill in Plugin Details
- Edit the
.claude-plugin/plugin.jsonfile with your plugin metadata - Provide accurate and complete information
- Use clear, concise descriptions
- Ensure your plugin repository is publicly accessible
- Edit the
-
Add Plugin Components
- Add lifecycle hooks in the
hooks/directory as needed - Add agent definitions in the
agents/directory as needed - Add custom commands in the
commands/directory as needed
- Add lifecycle hooks in the
-
Validate Your Submission
- Verify the
.claude-plugin/plugin.jsonfile has valid JSON syntax - Verify all required fields are present
- Ensure your plugin name is unique
- Run
./validate-plugins.shto check your plugin structure
- Verify the
-
Submit a Pull Request
- Commit your changes with a clear message:
Add {plugin-name} plugin - Push to your fork
- Create a pull request to the main repository
- Provide a brief description of your plugin in the PR
- Commit your changes with a clear message:
To be accepted, plugins should:
- Be Functional: The plugin should work as described
- Be Well-Documented: Include clear documentation in the plugin repository
- Be Maintained: Show evidence of active maintenance
- Be Accessible: Have a publicly accessible repository
- Be Original: Not duplicate existing plugins (unless significantly different)
- Follow Best Practices: Use semantic versioning, proper licensing, etc.
- Use lowercase letters
- Separate words with hyphens (kebab-case)
- Be descriptive but concise
- Avoid special characters
- Examples:
weather-forecast,code-formatter,task-manager
Each plugin must follow this directory structure:
your-plugin-name/
βββ .claude-plugin/ # Plugin configuration directory
β βββ plugin.json # Plugin metadata (JSON)
βββ hooks/ # Lifecycle hooks
βββ agents/ # Agent definitions
βββ commands/ # Custom commands
The .claude-plugin/plugin.json file must contain:
{
"name": "plugin-name",
"version": "1.0.0",
"description": "Clear description of what the plugin does",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
}
}For more examples, see the official Claude Code plugins.
If you maintain a plugin and need to update its information:
- Fork the repository
- Update your plugin's
.claude-plugin/plugin.jsonfile in theplugins/{your-plugin-name}/directory - Update any hooks, agents, or commands as needed
- Increment the version number according to semantic versioning
- Submit a pull request with the changes
To request removal of a plugin:
- Open an issue explaining the reason for removal
- If you're the plugin author, you can submit a PR removing the directory
- Reasons for removal might include:
- Plugin is no longer maintained
- Plugin repository no longer exists
- Plugin has security issues
- Duplicate of another plugin
We welcome suggestions for improving the marketplace:
- Open an issue with your suggestion
- Describe the improvement clearly
- Explain the benefits
- If possible, submit a pull request implementing the improvement
Please note that this project follows a Code of Conduct:
- Be respectful and inclusive
- Welcome newcomers
- Give constructive feedback
- Focus on the work, not the person
- Respect different viewpoints and experiences
- Initial Review: Pull requests are reviewed for completeness and format
- Validation: Plugin definitions are checked against the schema
- Quality Check: Plugin repositories are verified for accessibility and documentation
- Approval: Maintainers approve and merge acceptable submissions
- Feedback: If changes are needed, reviewers will provide clear guidance
If you have questions about contributing:
- Check the main README
- Review the plugins README
- Open an issue for clarification
- Check existing issues and PRs for similar questions
By contributing to this repository, you agree that your contributions will be licensed under the MIT License.
Thank you for helping make Claude more powerful and useful for everyone!