Translate text between multiple languages with high accuracy
You can install this plugin from any of these themed marketplaces. Choose one, add it as a marketplace, then install the plugin.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install example-translator@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/example-translator.json
Step 2: Install the plugin
/plugin install example-translator@example-translator
A curated marketplace of awesome plugins for Claude, following the Claude Plugin Marketplace specification.
This repository serves as a plugin marketplace for Claude, providing a centralized location to discover and share Claude plugins. Plugins extend Claude's capabilities and enable integration with various tools and services.
Note: The plugin examples and structure in this repository are based on the official Claude Code plugin examples.
Add this marketplace to Claude Code:
/plugin marketplace add GiladShoham/awesome-claude-plugins
Before publishing, you can test the marketplace locally:
/plugin marketplace add /path/to/awesome-claude-plugins
Then browse and install individual plugins:
/plugin
Install a specific plugin:
/plugin install example-calculator@awesome-claude-plugins
List installed marketplaces:
/plugin marketplace list
This marketplace follows the Claude plugin marketplace format:
marketplace.json
- Marketplace metadata and configurationplugins/
- Directory containing individual plugin directories.claude-plugin/
- Plugin configuration directory
plugin.json
- Plugin metadata (JSON)hooks/
- Lifecycle hooksagents/
- Agent definitionscommands/
- Custom commandsBrowse the plugins/
directory to discover available plugins. Each plugin includes:
example-calculator
) v1.0.0 - A simple calculator plugin for performing basic arithmetic operationsexample-weather
) v1.2.0 - Get current weather information and forecasts for any locationexample-translator
) v2.0.0 - Translate text between multiple languages with high accuracyTo add your plugin to this marketplace:
Fork this repository
Create a new directory in plugins/
with your plugin name: plugins/your-plugin-name/
Create the required structure:
plugins/your-plugin-name/
āāā .claude-plugin/ # Plugin configuration directory
ā āāā plugin.json # Plugin metadata
āāā hooks/ # Lifecycle hooks
āāā agents/ # Agent definitions
āāā commands/ # Custom commands
Fill in your .claude-plugin/plugin.json
file with plugin details:
{
"name": "your-plugin-name",
"version": "1.0.0",
"description": "A brief description of what your plugin does",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
}
}
Validate your plugin definition locally:
./validate-plugins.sh
Submit a pull request with your plugin
For more examples, see the official Claude Code plugins.
To use this marketplace with Claude:
Refer to the official Claude plugin documentation for detailed setup instructions.
We provide tools to validate plugin definitions:
Run the validation script locally before submitting:
./validate-plugins.sh
This script checks:
All pull requests are automatically validated through GitHub Actions, which checks:
Contributions are welcome! Please read our CONTRIBUTING.md guidelines before submitting pull requests.
./validate-plugins.sh
All pull requests are automatically validated by our CI workflow to ensure quality and consistency.
This marketplace is licensed under the MIT License. See LICENSE for details.
Individual plugins may have their own licenses - please check each plugin's repository for details.
For issues or questions:
This repository is inspired by and based on the official Claude Code plugin examples.
Thanks to all plugin authors and contributors who help expand Claude's capabilities!
2.0.0