Agent skill · AI & Agents

managing-plugins

Creates, packs, bundles, and manages Claude Code plugins with manifest generation, directory structure, marketplace configuration. Use when user asks how plugins work, what plugins are, explaining plugin structure, understanding plugin.json manifest, describing plugin bundling process, creating plugins, bundling skills/commands/hooks/MCPs, generating plugin.json, setting up marketplaces, or distributing team-shared functionality.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill managing-plugins --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/ai-llm/managing-plugins/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Managing Plugins ## When to Use This Skill Activate when user mentions: plugin creation, bundling, packaging, plugin.json, marketplace, team distribution, .claude-plugin, plugin structure ## Terminology **Manifest**: Refers to the plugin.json file located at `.claude-plugin/plugin.json`. These terms are used interchangeably throughout this skill. **Subagents**: Referred to as "agents/" directory in plugins. Subagents are specialized agents started as subordinate processes from Claude Code's main agent instance. For detailed subagent creation guidance, see the managing-agents skill. ## Core Operations ### OP1: Create Plugin Structure Input: plugin name, components list Output: directory structure with manifest Process: 1. Use Bash tool: `mkdir -p plugin-name/.claude-plugin` to create plugin directory 2. Use Write tool to create plugin-name/.claude-plugin/plugin.json with required fields: name, description, version, author.name 3. Use Bash tool: `mkdir -p plugin-name/{commands,skills,hooks,agents}` to create component directories 4. For each component file: Use Bash tool `cp -r source plugin-name/target-dir` to copy files to appropriate directories 5. Verify structure created: - Us

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Terminology
  3. Core Operations
  4. OP1: Create Plugin Structure
  5. OP2: Bundle Components by Prefix
  6. OP3: Create Marketplace Config
  7. OP4: Validate Plugin
  8. OP5: Pack for Distribution
  9. Component Integration
  10. Context Detection Rules
  11. Progressive References
  12. Anti-Patterns
  13. Quick Checks
  14. Output Format
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the managing-plugins skill do?

Creates, packs, bundles, and manages Claude Code plugins with manifest generation, directory structure, marketplace configuration. Use when user asks how plugins work, what plugins are, explaining plugin structure, understanding plugin.json manifest, describing plugin bundling process, creating plugins, bundling skills/commands/hooks/MCPs, generating plugin.json, setting up marketplaces, or distributing team-shared functionality.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill managing-plugins --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going