Brief plugin description explaining the primary capability.
This plugin is not yet in any themed marketplace. To install it, you'll need to add it from GitHub directly.
This plugin uses advanced features that require additional trust:
Only install plugins from repositories you trust. Review the source code before installation.
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 enterprise-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/enterprise-plugin.json
Step 2: Install the plugin
/plugin install enterprise-plugin@enterprise-plugin
This repository captures the directory layout, component formats, and automation hooks recommended in the Claude Code plugin reference. Use it as the starting point for new Claude Code plugins that ship commands, agents, skills, hooks, and MCP integrations.
gh repo create my-plugin --template <owner>/plugins_template_repo
.claude-plugin/plugin.json
with your plugin metadata and component paths.claude --debug
to confirm Claude loads the plugin without errors.claude/plugins_template_repo/
├── .claude-plugin/
│ └── plugin.json
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── config.yml
│ │ └── feature_request.md
│ └── PULL_REQUEST_TEMPLATE.md
├── .mcp.json
├── CHANGELOG.md
├── LICENSE
├── README.md
├── agents/
├── commands/
├── hooks/
├── scripts/
└── skills/
Key directories:
.claude-plugin/
— contains the required plugin.json
manifest.commands/
— Markdown slash commands with frontmatter.agents/
— subagent definitions Claude can auto-invoke.skills/
— Agent Skills, each with a dedicated directory and SKILL.md
.hooks/
— JSON configuration for lifecycle hooks..mcp.json
— Model Context Protocol server definitions loaded with the plugin..github/
— issue and PR templates so new repos cloned from this template inherit contribution guardrails.name
, version
, description
, author metadata).CHANGELOG.md
as you iterate on the plugin and cut releases.1.0.0