Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
anthropics avatar

Plugin Structure

  • 4.5k installs
  • 32.9k repo stars
  • Updated July 31, 2026
  • anthropics/claude-plugins-official

A reference skill describing the required directory layout, manifest schema, component types, auto-discovery rules, and portable path conventions for Claude Code plugins.

About

This skill defines the canonical directory structure and manifest configuration for Claude Code plugins. Developers use it when creating or organizing plugins that expose slash commands, subagents, skills, event hooks, and MCP servers to Claude Code. The core workflow involves placing plugin.json in .claude-plugin/, organizing component types into their respective root-level directories (commands/, agents/, skills/, hooks/), and using ${CLAUDE_PLUGIN_ROOT} for all intra-plugin path references to ensure portability. Auto-discovery scans standard directories on plugin enable, while plugin.json can specify supplemental custom paths using relative ./notation. Supporting patterns cover minimal single-command plugins through full-featured multi-component plugins, with troubleshooting guidance for component loading failures, path resolution errors, and inter-plugin conflicts. Plugin manifest must be at .claude-plugin/plugin.json; component directories (commands/, agents/, skills/, hooks/) must sit at plugin root, not inside .claude-plugin/

  • Plugin manifest must be at .claude-plugin/plugin.json; component directories (commands/, agents/, skills/, hooks/) must
  • Auto-discovery loads all .md files from commands/ and agents/, all SKILL.md files from skills/ subdirectories, and hooks
  • ${CLAUDE_PLUGIN_ROOT} environment variable must replace all hardcoded or relative paths in hook commands, MCP server arg
  • Custom path overrides in plugin.json use relative ./paths and supplement rather than replace default directories, suppor
  • Nine hook events are available - PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit

Plugin Structure by the numbers

  • 4,466 all-time installs (skills.sh)
  • +359 installs in the week ending Jul 29, 2026 (Skillselion tracking)
  • Ranked #163 of 16,565 AI & Agent Building skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Jul 31, 2026 (Skillselion catalog sync)
At a glance

plugin-structure capabilities & compatibility

Capabilities
plugin scaffolding · manifest configuration · auto discovery · hook registration · mcp server integration · portable path resolution · component organization
Use cases
orchestration · documentation
Platforms
macOS · Windows · Linux
Runs
Runs locally
Pricing
Free
From the docs

What plugin-structure says it does

The manifest defines plugin metadata and configuration. Located at `.claude-plugin/plugin.json`
SKILL.md
Use `${CLAUDE_PLUGIN_ROOT}` environment variable for all intra-plugin path references
SKILL.md
npx skills add https://github.com/anthropics/claude-plugins-official --skill plugin-structure

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4.5k
repo stars32.9k
Security audit2 / 3 scanners passed
Last updatedJuly 31, 2026
Repositoryanthropics/claude-plugins-official

What it does

Scaffold and organize Claude Code plugins with correct directory layout, manifest configuration, and auto-discovery for commands, agents, skills, hooks, and MCP servers.

Who is it for?

Developers creating or reorganizing Claude Code plugins who need to understand manifest fields, component directory rules, and the ${CLAUDE_PLUGIN_ROOT} pattern.

Skip if: Developers building non-Claude-Code tools, generic npm packages, or VS Code extensions unrelated to Claude Code's plugin system.

When should I use this skill?

User asks to create a plugin, scaffold plugin structure, configure plugin.json, add commands/agents/skills/hooks, set up auto-discovery, or use ${CLAUDE_PLUGIN_ROOT}.

What you get

Developers produce correctly structured Claude Code plugins whose commands, agents, skills, hooks, and MCP servers are discovered and loaded automatically without hardcoded paths.

  • Valid .claude-plugin/plugin.json manifest
  • Populated commands/, agents/, skills/, and/or hooks/ directories at plugin root
  • Portable hook and MCP server configurations using ${CLAUDE_PLUGIN_ROOT}

By the numbers

  • 9 hook event types: PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact,
  • Only 1 required field in plugin.json: name
  • Skills require exactly 1 file named SKILL.md per skill subdirectory

Files

SKILL.mdMarkdownGitHub ↗

Plugin Structure for Claude Code

Overview

Claude Code plugins follow a standardized directory structure with automatic component discovery. Understanding this structure enables creating well-organized, maintainable plugins that integrate seamlessly with Claude Code.

Key concepts:

  • Conventional directory layout for automatic discovery
  • Manifest-driven configuration in .claude-plugin/plugin.json
  • Component-based organization (commands, agents, skills, hooks)
  • Portable path references using ${CLAUDE_PLUGIN_ROOT}
  • Explicit vs. auto-discovered component loading

Directory Structure

Every Claude Code plugin follows this organizational pattern:

plugin-name/
├── .claude-plugin/
│   └── plugin.json          # Required: Plugin manifest
├── commands/                 # Slash commands (.md files)
├── agents/                   # Subagent definitions (.md files)
├── skills/                   # Agent skills (subdirectories)
│   └── skill-name/
│       └── SKILL.md         # Required for each skill
├── hooks/
│   └── hooks.json           # Event handler configuration
├── .mcp.json                # MCP server definitions
└── scripts/                 # Helper scripts and utilities

Critical rules:

1. Manifest location: The plugin.json manifest MUST be in .claude-plugin/ directory 2. Component locations: All component directories (commands, agents, skills, hooks) MUST be at plugin root level, NOT nested inside .claude-plugin/ 3. Optional components: Only create directories for components the plugin actually uses 4. Naming convention: Use kebab-case for all directory and file names

Plugin Manifest (plugin.json)

The manifest defines plugin metadata and configuration. Located at .claude-plugin/plugin.json:

Required Fields

{
  "name": "plugin-name"
}

Name requirements:

  • Use kebab-case format (lowercase with hyphens)
  • Must be unique across installed plugins
  • No spaces or special characters
  • Example: code-review-assistant, test-runner, api-docs

Recommended Metadata

{
  "name": "plugin-name",
  "version": "1.0.0",
  "description": "Brief explanation of plugin purpose",
  "author": {
    "name": "Author Name",
    "email": "author@example.com",
    "url": "https://example.com"
  },
  "homepage": "https://docs.example.com",
  "repository": "https://github.com/user/plugin-name",
  "license": "MIT",
  "keywords": ["testing", "automation", "ci-cd"]
}

Version format: Follow semantic versioning (MAJOR.MINOR.PATCH) Keywords: Use for plugin discovery and categorization

Component Path Configuration

Specify custom paths for components (supplements default directories):

{
  "name": "plugin-name",
  "commands": "./custom-commands",
  "agents": ["./agents", "./specialized-agents"],
  "hooks": "./config/hooks.json",
  "mcpServers": "./.mcp.json"
}

Important: Custom paths supplement defaults—they don't replace them. Components in both default directories and custom paths will load.

Path rules:

  • Must be relative to plugin root
  • Must start with ./
  • Cannot use absolute paths
  • Support arrays for multiple locations

Component Organization

Commands

Location: commands/ directory Format: Markdown files with YAML frontmatter Auto-discovery: All .md files in commands/ load automatically

Example structure:

commands/
├── review.md        # /review command
├── test.md          # /test command
└── deploy.md        # /deploy command

File format:

---
name: command-name
description: Command description
---

Command implementation instructions...

Usage: Commands integrate as native slash commands in Claude Code

Agents

Location: agents/ directory Format: Markdown files with YAML frontmatter Auto-discovery: All .md files in agents/ load automatically

Example structure:

agents/
├── code-reviewer.md
├── test-generator.md
└── refactorer.md

File format:

---
description: Agent role and expertise
capabilities:
  - Specific task 1
  - Specific task 2
---

Detailed agent instructions and knowledge...

Usage: Users can invoke agents manually, or Claude Code selects them automatically based on task context

Skills

Location: skills/ directory with subdirectories per skill Format: Each skill in its own directory with SKILL.md file Auto-discovery: All SKILL.md files in skill subdirectories load automatically

Example structure:

skills/
├── api-testing/
│   ├── SKILL.md
│   ├── scripts/
│   │   └── test-runner.py
│   └── references/
│       └── api-spec.md
└── database-migrations/
    ├── SKILL.md
    └── examples/
        └── migration-template.sql

SKILL.md format:

---
name: Skill Name
description: When to use this skill
version: 1.0.0
---

Skill instructions and guidance...

Supporting files: Skills can include scripts, references, examples, or assets in subdirectories

Usage: Claude Code autonomously activates skills based on task context matching the description

Hooks

Location: hooks/hooks.json or inline in plugin.json Format: JSON configuration defining event handlers Registration: Hooks register automatically when plugin enables

Example structure:

hooks/
├── hooks.json           # Hook configuration
└── scripts/
    ├── validate.sh      # Hook script
    └── check-style.sh   # Hook script

Configuration format:

{
  "PreToolUse": [{
    "matcher": "Write|Edit",
    "hooks": [{
      "type": "command",
      "command": "bash ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/validate.sh",
      "timeout": 30
    }]
  }]
}

Available events: PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification

Usage: Hooks execute automatically in response to Claude Code events

MCP Servers

Location: .mcp.json at plugin root or inline in plugin.json Format: JSON configuration for MCP server definitions Auto-start: Servers start automatically when plugin enables

Example format:

{
  "mcpServers": {
    "server-name": {
      "command": "node",
      "args": ["${CLAUDE_PLUGIN_ROOT}/servers/server.js"],
      "env": {
        "API_KEY": "${API_KEY}"
      }
    }
  }
}

Usage: MCP servers integrate seamlessly with Claude Code's tool system

Portable Path References

${CLAUDE_PLUGIN_ROOT}

Use ${CLAUDE_PLUGIN_ROOT} environment variable for all intra-plugin path references:

{
  "command": "bash ${CLAUDE_PLUGIN_ROOT}/scripts/run.sh"
}

Why it matters: Plugins install in different locations depending on:

  • User installation method (marketplace, local, npm)
  • Operating system conventions
  • User preferences

Where to use it:

  • Hook command paths
  • MCP server command arguments
  • Script execution references
  • Resource file paths

Never use:

  • Hardcoded absolute paths (/Users/name/plugins/...)
  • Relative paths from working directory (./scripts/... in commands)
  • Home directory shortcuts (~/plugins/...)

Path Resolution Rules

In manifest JSON fields (hooks, MCP servers):

"command": "${CLAUDE_PLUGIN_ROOT}/scripts/tool.sh"

In component files (commands, agents, skills):

Reference scripts at: ${CLAUDE_PLUGIN_ROOT}/scripts/helper.py

In executed scripts:

#!/bin/bash
# ${CLAUDE_PLUGIN_ROOT} available as environment variable
source "${CLAUDE_PLUGIN_ROOT}/lib/common.sh"

File Naming Conventions

Component Files

Commands: Use kebab-case .md files

  • code-review.md/code-review
  • run-tests.md/run-tests
  • api-docs.md/api-docs

Agents: Use kebab-case .md files describing role

  • test-generator.md
  • code-reviewer.md
  • performance-analyzer.md

Skills: Use kebab-case directory names

  • api-testing/
  • database-migrations/
  • error-handling/

Supporting Files

Scripts: Use descriptive kebab-case names with appropriate extensions

  • validate-input.sh
  • generate-report.py
  • process-data.js

Documentation: Use kebab-case markdown files

  • api-reference.md
  • migration-guide.md
  • best-practices.md

Configuration: Use standard names

  • hooks.json
  • .mcp.json
  • plugin.json

Auto-Discovery Mechanism

Claude Code automatically discovers and loads components:

1. Plugin manifest: Reads .claude-plugin/plugin.json when plugin enables 2. Commands: Scans commands/ directory for .md files 3. Agents: Scans agents/ directory for .md files 4. Skills: Scans skills/ for subdirectories containing SKILL.md 5. Hooks: Loads configuration from hooks/hooks.json or manifest 6. MCP servers: Loads configuration from .mcp.json or manifest

Discovery timing:

  • Plugin installation: Components register with Claude Code
  • Plugin enable: Components become available for use
  • No restart required: Changes take effect on next Claude Code session

Override behavior: Custom paths in plugin.json supplement (not replace) default directories

Best Practices

Organization

1. Logical grouping: Group related components together

  • Put test-related commands, agents, and skills together
  • Create subdirectories in scripts/ for different purposes

2. Minimal manifest: Keep plugin.json lean

  • Only specify custom paths when necessary
  • Rely on auto-discovery for standard layouts
  • Use inline configuration only for simple cases

3. Documentation: Include README files

  • Plugin root: Overall purpose and usage
  • Component directories: Specific guidance
  • Script directories: Usage and requirements

Naming

1. Consistency: Use consistent naming across components

  • If command is test-runner, name related agent test-runner-agent
  • Match skill directory names to their purpose

2. Clarity: Use descriptive names that indicate purpose

  • Good: api-integration-testing/, code-quality-checker.md
  • Avoid: utils/, misc.md, temp.sh

3. Length: Balance brevity with clarity

  • Commands: 2-3 words (review-pr, run-ci)
  • Agents: Describe role clearly (code-reviewer, test-generator)
  • Skills: Topic-focused (error-handling, api-design)

Portability

1. Always use ${CLAUDE_PLUGIN_ROOT}: Never hardcode paths 2. Test on multiple systems: Verify on macOS, Linux, Windows 3. Document dependencies: List required tools and versions 4. Avoid system-specific features: Use portable bash/Python constructs

Maintenance

1. Version consistently: Update version in plugin.json for releases 2. Deprecate gracefully: Mark old components clearly before removal 3. Document breaking changes: Note changes affecting existing users 4. Test thoroughly: Verify all components work after changes

Common Patterns

Minimal Plugin

Single command with no dependencies:

my-plugin/
├── .claude-plugin/
│   └── plugin.json    # Just name field
└── commands/
    └── hello.md       # Single command

Full-Featured Plugin

Complete plugin with all component types:

my-plugin/
├── .claude-plugin/
│   └── plugin.json
├── commands/          # User-facing commands
├── agents/            # Specialized subagents
├── skills/            # Auto-activating skills
├── hooks/             # Event handlers
│   ├── hooks.json
│   └── scripts/
├── .mcp.json          # External integrations
└── scripts/           # Shared utilities

Skill-Focused Plugin

Plugin providing only skills:

my-plugin/
├── .claude-plugin/
│   └── plugin.json
└── skills/
    ├── skill-one/
    │   └── SKILL.md
    └── skill-two/
        └── SKILL.md

Troubleshooting

Component not loading:

  • Verify file is in correct directory with correct extension
  • Check YAML frontmatter syntax (commands, agents, skills)
  • Ensure skill has SKILL.md (not README.md or other name)
  • Confirm plugin is enabled in Claude Code settings

Path resolution errors:

  • Replace all hardcoded paths with ${CLAUDE_PLUGIN_ROOT}
  • Verify paths are relative and start with ./ in manifest
  • Check that referenced files exist at specified paths
  • Test with echo $CLAUDE_PLUGIN_ROOT in hook scripts

Auto-discovery not working:

  • Confirm directories are at plugin root (not in .claude-plugin/)
  • Check file naming follows conventions (kebab-case, correct extensions)
  • Verify custom paths in manifest are correct
  • Restart Claude Code to reload plugin configuration

Conflicts between plugins:

  • Use unique, descriptive component names
  • Namespace commands with plugin name if needed
  • Document potential conflicts in plugin README
  • Consider command prefixes for related functionality

---

For detailed examples and advanced patterns, see files in references/ and examples/ directories.

Related skills

Forks & variants (1)

Plugin Structure has 1 known copy in the catalog totaling 183 installs. They canonicalize to this original listing.

How it compares

Use plugin-structure when a Claude plugin needs multi-folder enterprise layout instead of a single flat skill file.

FAQ

Where must the plugin.json manifest file be placed?

It must be placed inside the .claude-plugin/ directory at the plugin root, e.g. my-plugin/.claude-plugin/plugin.json. Component directories like commands/ and agents/ go at the plugin root, not inside .claude-plugin/.

Why use ${CLAUDE_PLUGIN_ROOT} instead of relative paths?

Plugins install in different locations depending on installation method and OS. ${CLAUDE_PLUGIN_ROOT} resolves to the actual plugin root at runtime, preventing broken paths across machines and users.

Do custom paths in plugin.json replace the default component directories?

No. Custom paths supplement defaults. Components in both the default directories and any custom paths listed in plugin.json will be loaded.

Is Plugin Structure safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.