Curated collection of featured Claude Code plugins and tools
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 featured-collection@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/featured-collection.json
Step 2: Install the plugin
/plugin install featured-collection@featured-collection
A curated list of awesome Claude Code plugins, marketplaces, tools, and resources.
Claude Code is an agentic coding tool that lives in your terminal and IDE. With the plugin system (released October 2025), you can now extend Claude Code with custom slash commands, specialized agents, MCP servers, and workflow hooks.
Claude Code plugins are custom collections that can include:
/plugin install
npm install -g @anthropic-ai/claude-code
)/plugin marketplace add hekmon8/awesome-claude-code-plugins
/plugin marketplace add anthropics/claude-code
/plugin marketplace add davila7/claude-code-templates
/plugin
/plugin install feature-dev
# Plugin commands are now available
/feature-spec "Add user authentication"
# From this awesome collection
/plugin marketplace add hekmon8/awesome-claude-code-plugins
# From other GitHub marketplaces
/plugin marketplace add owner/repo
# From Git repository
/plugin marketplace add https://gitlab.com/company/plugins.git
# From local directory (for development)
/plugin marketplace add ./my-plugins
Anthropic Official Plugins - anthropics/claude-code
Dan Ávila's Plugin Marketplace - DevOps, docs, testing
Seth Hobson's Agents Collection - wshobson/agents
my-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── commands/ # Custom slash commands
│ ├── hello.md
│ └── build.md
├── agents/ # Specialized subagents
│ └── feature-agent.md
├── hooks/ # Workflow hooks
│ └── hooks.json
├── scripts/ # Shell scripts
│ └── setup.sh
└── .mcp.json # MCP server configuration
{
"name": "my-awesome-plugin",
"version": "1.0.0",
"description": "Does awesome things with Claude Code",
"author": "Your Name",
"homepage": "https://github.com/yourusername/my-plugin",
"repository": "https://github.com/yourusername/my-plugin",
"license": "MIT",
"keywords": ["development", "automation", "productivity"]
}
# Use the meta-plugin to create new plugins
/plugin install plugin-creator
/create-plugin my-awesome-plugin
Create a greeting command:
<!-- commands/hello.md -->
You are a friendly assistant. Greet the user warmly and ask how you can help them today.
// .claude-plugin/plugin.json
{
"name": "hello-plugin",
"version": "1.0.0",
"description": "A friendly greeting plugin"
}
<!-- commands/review.md -->
Perform a comprehensive code review:
1. Check for code style issues
2. Identify potential bugs
3. Suggest performance improvements
4. Verify test coverage
5. Check security vulnerabilities
Provide actionable feedback in a constructive tone.
// hooks/hooks.json
{
"hooks": [
{
"event": "before-commit",
"script": "./scripts/lint-and-test.sh",
"description": "Run linting and tests before commit"
}
]
}
More examples in the examples/ directory.
Have you created a useful plugin? Share it with the community!
Contributions are welcome! Please read the contribution guidelines first.
For detailed technical information:
To the extent possible under law, the contributors have waived all copyright and related rights to this work.
Note: Claude Code is developed by Anthropic. This is a community-maintained collection of plugins and resources.
Last Updated: October 2025
1.0.0