An example plugin demonstrating commands, agents, hooks, and MCP servers
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-plugin@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-plugin.json
Step 2: Install the plugin
/plugin install example-plugin@example-plugin
A collection of custom plugins for Claude Code, providing additional commands, agents, hooks, and MCP server integrations.
Install plugins from this marketplace using:
# Interactive installation
/plugin install
# Direct installation
/plugin install <plugin-name>@nobodyiscertain/claude-marketplace
An example plugin demonstrating all plugin components including commands, agents, hooks, and MCP servers.
Install: /plugin install example-plugin@nobodyiscertain/claude-marketplace
Use the example-plugin
as a template. Each plugin should have:
plugins/your-plugin-name/
├── .claude-plugin/
│ └── plugin.json # Required: Plugin metadata
├── commands/ # Optional: Custom slash commands
├── agents/ # Optional: Specialized subagents
├── hooks/
│ └── hooks.json # Optional: Event handlers
├── .mcp.json # Optional: MCP server config
└── README.md # Recommended: Plugin documentation
{
"name": "your-plugin-name",
"version": "1.0.0",
"description": "What your plugin does",
"author": "Your Name",
"homepage": "https://github.com/nobodyiscertain/claude-marketplace",
"repository": "https://github.com/nobodyiscertain/claude-marketplace",
"license": "MIT",
"keywords": ["relevant", "keywords"]
}
./
${CLAUDE_PLUGIN_ROOT}
for path references in hooks and MCP configsclaude --debug
to see plugin loading detailsContributions are welcome! To add a new plugin:
plugins/
directoryexample-plugin
claude --debug
MIT
1.0.0