Awesome Claude Code Plugins is a curated marketplace designed to help you get the most out of Claude Code. Claude Code plugins let you extend the AI’s capabilities by bundling slash commands, subagents, Model Context Protocol (MCP) servers and hooks into a single installable package. This repository organizes those plugins into an easy‑to‑browse marketplace.
Our goal is to provide a small set of high‑value, well‑maintained plugins that are genuinely useful, rather than a huge list of generic prompt wrappers. Each plugin in this marketplace solves a clear development problem and comes with clear documentation and practical examples.
With the plugin system still evolving, it’s easy to get overwhelmed by repositories that contain dozens or even hundreds of commands. We believe a focused collection of plugins that offer real value will better serve developers. This marketplace emphasizes quality over quantity, ensuring that each plugin is worth your time.
To use this marketplace you’ll need to install Claude Code and authenticate with your Anthropic account. Then you can add and browse the plugins.
- Install Claude Code. Follow the official documentation to install the CLI and authenticate your account.
- Add this marketplace:
After adding it, you can verify the marketplace is installed via:
/plugin marketplace add <your‑github‑org>/awesome-claude-code-plugins
/plugin marketplace list
- Browse available plugins:
Claude Code will show the available plugins from this and any other marketplaces you’ve installed.
/plugin
- Install a plugin:
/plugin install doc-generator@awesome-claude-code-plugins
Included plugins
| Plugin | Purpose | Key features |
|---|---|---|
| doc-generator | Generate documentation from your codebase | Provides a /docgen command to produce Markdown documentation from comments and tests. Includes a simple shell script as a starting point. |
More plugins will be added as the project grows. If you’d like to contribute one, please see the Contributing section below.
awesome-claude-code-plugins/
├── README.md # This file
├── LICENSE # Open source license (MIT)
├── CONTRIBUTING.md # Guidelines for contributing
└── .claude-plugin
├── marketplace.json # Catalog describing available plugins
└── plugins
└── doc-generator
├── plugin.json # Plugin definition
└── docgen.sh # Script invoked by the slash command
The marketplace.json file lists each plugin and points to its definition. Claude Code reads this file when you add the marketplace.
Usage example
After installing the doc-generator plugin, you can run:
/docgen --output README_GENERATED.md
This command runs the included script and generates a basic documentation file. You can extend the script to use tools like pdoc, typedoc, or your own documentation generator.
Contributing
We welcome new plugins and improvements! Please read CONTRIBUTING.md for details on how to propose a plugin. In short, plugins should solve a clear problem, include usage documentation and be well‑tested. Thin wrappers around a single prompt are unlikely to be accepted.
License
This project is released under the MIT License. See the LICENSE file for details.