Loading...
Loading...
Use when creating a new Claude Code plugin or setting up plugin structure - provides complete file organization, manifest format, and component definitions for commands, agents, skills, hooks, and MCP servers
npx skill4agent add ed3dai/ed3d-plugins creating-a-plugin.claude/file:///~/.claude/plugins/.claude/plugins/my-plugin/.claude-plugin/plugin.json{
"name": "my-plugin"
}/plugin install file:///absolute/path/to/my-plugin/plugin reloadmy-plugin/
�� .claude-plugin/
�� plugin.json # Required: plugin manifest
�� commands/ # Optional: slash commands
�� my-command.md
�� agents/ # Optional: specialized subagents
�� my-agent.md
�� skills/ # Optional: reusable techniques
�� my-skill/
�� SKILL.md
�� hooks/ # Optional: event handlers
�� hooks.json
�� .mcp.json # Optional: MCP server configs
�� README.md # Recommended: documentation.claude-plugin/plugin.json| Component | Location | File Format | When to Use |
|---|---|---|---|
| Commands | | Markdown + YAML frontmatter | Custom slash commands for repetitive tasks |
| Agents | | Markdown + YAML frontmatter | Specialized subagents for complex workflows |
| Skills | | Markdown + YAML frontmatter | Reusable techniques and patterns |
| Hooks | | JSON | Event handlers (format code, validate, etc.) |
| MCP Servers | | JSON | External tool integrations |
{
"name": "my-plugin"
}{
"name": "my-plugin", // Required: kebab-case identifier
"version": "1.0.0", // Recommended: semantic versioning
"description": "What this plugin does", // Recommended: brief description
"author": { // Optional but recommended
"name": "Your Name",
"email": "you@example.com",
"url": "https://github.com/yourname"
},
"homepage": "https://github.com/yourname/my-plugin",
"repository": "https://github.com/yourname/my-plugin",
"license": "MIT",
"keywords": ["productivity", "automation"],
"commands": [ // Optional: explicit command paths
"./commands/cmd1.md",
"./commands/cmd2.md"
],
"agents": [ // Optional: explicit agent paths
"./agents/agent1.md"
],
"hooks": [ // Optional: inline hooks
{
"event": "PostToolUse",
"matcher": "Edit|Write",
"command": "npx prettier --write \"$CLAUDE_FILE_PATHS\""
}
],
"mcpServers": { // Optional: inline MCP configs
"my-server": {
"command": "${CLAUDE_PLUGIN_ROOT}/servers/my-server",
"args": ["--port", "8080"],
"env": {
"API_KEY": "${API_KEY}"
}
}
}
}name${CLAUDE_PLUGIN_ROOT}commands/agents/skills/*/SKILL.mdcommands/my-command.md/my-commandcommands/feature/sub-command.md/plugin-name:feature:sub-command---
description: Brief description of what this command does
allowed-tools: Read, Grep, Glob, Bash
model: sonnet
argument-hint: "[file-path]"
---
# Command Name
Your command prompt goes here.
You can use:
- $1, $2, etc. for positional arguments
- $ARGUMENTS for all arguments as single string
- @filename to include file contents
- !bash command to execute shell commands
Example implementation instructions...description/helpallowed-toolsRead, Grep, Glob, Bash, Edit, Write, TodoWrite, Taskmodelhaikusonnetopusargument-hintdisable-model-invocationtruecommands/review-pr.md---
description: Review pull request for security and best practices
allowed-tools: Read, Grep, Glob, Bash
model: opus
argument-hint: "[pr-number]"
---
# Pull Request Review
Review pull request #$1 for:
1. Security vulnerabilities
2. Performance issues
3. Best practices compliance
4. Error handling
Steps:
1. Use Bash to run: gh pr diff $1
2. Use Read to examine changed files
3. Use Grep to search for common anti-patterns
4. Provide structured feedback with file:line references
Focus on critical issues first.agents/code-reviewer.md---
name: agent-name
description: When and why to use this agent (critical for auto-delegation)
tools: Read, Edit, Write, Grep, Glob, Bash
model: opus
---
# Agent Name
Detailed instructions and system prompt for this agent.
## Responsibilities
- Task 1
- Task 2
## Tools Available
- Read: File operations
- Grep: Code search
- Bash: Shell commands
## Workflow
1. Step 1
2. Step 2namedescriptiontoolsmodelhaikusonnetopusagents/security-auditor.md---
name: security-auditor
description: Use when reviewing code for security vulnerabilities, analyzing authentication flows, or checking for common security anti-patterns like SQL injection, XSS, or insecure dependencies
tools: Read, Grep, Glob, Bash
model: opus
---
# Security Auditor Agent
You are a security expert specializing in web application security and secure coding practices.
## Your Responsibilities
1. Identify security vulnerabilities (SQL injection, XSS, CSRF, etc.)
2. Review authentication and authorization logic
3. Check for insecure dependencies
4. Verify input validation and sanitization
5. Review cryptographic implementations
## Workflow
1. **Scan for patterns:** Use Grep to find common vulnerability patterns
2. **Read suspicious code:** Use Read to examine flagged files
3. **Check dependencies:** Use Bash to run security audit tools
4. **Report findings:** Provide severity ratings and remediation steps
## Common Vulnerability Patterns
- SQL injection: String concatenation in queries
- XSS: Unescaped user input in templates
- CSRF: Missing CSRF tokens
- Auth bypass: Missing authorization checks
- Hardcoded secrets: API keys, passwords in code
## Reporting Format
For each finding:
- **Severity:** Critical/High/Medium/Low
- **Location:** `file:line`
- **Issue:** What's vulnerable
- **Impact:** What attacker could do
- **Fix:** How to remediatewriting-skillsskills/my-skill/SKILL.md---
name: my-skill-name
description: Use when [specific triggers] - [what it does]
---
# Skill Name
## Overview
Core principle in 1-2 sentences.
## When to Use
- Symptom 1
- Symptom 2
- When NOT to use
## Quick Reference
[Table or bullets for common operations]
## Implementation
[Code examples, patterns]
## Common Mistakes
[What goes wrong + fixes]namedescriptionwriting-skillshooks/hooks.jsonplugin.json{
"hooks": [
{
"event": "PreToolUse",
"matcher": "Bash",
"command": "echo 'About to run: $CLAUDE_TOOL_NAME'"
},
{
"event": "PostToolUse",
"matcher": "Edit|Write",
"command": "npx prettier --write \"$CLAUDE_FILE_PATHS\""
},
{
"event": "SessionStart",
"matcher": "*",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/setup.sh"
}
]
}PreToolUsePostToolUseUserPromptSubmitStopSessionStartSessionEndNotificationSubagentStopPreCompact"Bash""Edit|Write""*"$CLAUDE_EVENT_TYPE$CLAUDE_TOOL_NAME$CLAUDE_TOOL_INPUT$CLAUDE_FILE_PATHS.mcp.jsonplugin.json{
"mcpServers": {
"database-tools": {
"command": "${CLAUDE_PLUGIN_ROOT}/servers/db-server",
"args": ["--config", "${CLAUDE_PLUGIN_ROOT}/config.json"],
"env": {
"DB_URL": "${DB_URL}",
"API_KEY": "${API_KEY:-default-key}"
}
},
"web-scraper": {
"command": "npx",
"args": ["web-mcp-server", "--port", "3000"]
}
}
}commandargsenv${VAR}${VAR:-default}${CLAUDE_PLUGIN_ROOT}dev-marketplace/.claude-plugin/marketplace.json{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "my-dev-marketplace",
"version": "1.0.0",
"owner": {
"name": "Your Name",
"email": "you@example.com"
},
"metadata": {
"description": "Local development marketplace for my plugins",
"pluginRoot": "./plugins"
},
"plugins": [
{
"name": "my-plugin-one",
"version": "1.0.0",
"description": "What this plugin does",
"source": "./plugins/my-plugin-one",
"category": "development",
"author": {
"name": "Your Name",
"email": "you@example.com"
}
},
{
"name": "my-plugin-two",
"version": "0.1.0",
"description": "Experimental plugin",
"source": "./plugins/my-plugin-two",
"category": "productivity",
"strict": false
}
]
}dev-marketplace/
�� .claude-plugin/
�� marketplace.json
�� plugins/
�� my-plugin-one/
�� .claude-plugin/
�� plugin.json
�� commands/
�� my-plugin-two/
�� .claude-plugin/
�� plugin.json
�� agents//plugin marketplace add file:///absolute/path/to/dev-marketplace
/plugin browse
/plugin install my-plugin-one@my-dev-marketplacenamesourceversiondescriptioncategoryauthorstricttruefalse// Local relative path
"source": "./plugins/my-plugin"
// GitHub repository
"source": {
"source": "github",
"repo": "owner/repo"
}
// Git URL
"source": {
"source": "url",
"url": "https://gitlab.com/team/plugin.git"
}my-awesome-pluginreview-codesecurity-auditortest-driven-developmentcommands/my-command.md/my-commandcommands/project/build.md/plugin-name:project:buildagents/code-reviewer.mdcode-reviewerskills/my-skill/SKILL.mdmy-skillmkdir -p my-plugin/.claude-plugin
echo '{"name":"my-plugin"}' > my-plugin/.claude-plugin/plugin.json/plugin install file:///absolute/path/to/my-plugin/my-command arg1 arg2
# Use Task tool with your agent
# Use Skill tool with your skill/plugin reload/plugin marketplace add file:///absolute/path/to/dev-marketplace/plugin browse
/plugin install my-plugin@my-dev-marketplace| Issue | Symptom | Fix |
|---|---|---|
Missing | Plugin not recognized | Create |
| Invalid plugin.json | Parse error on load | Validate JSON syntax, ensure |
| Wrong tool name | Tool not available in command/agent | Check spelling: |
| Description too long | Warning or truncation | Keep under 1024 characters total |
| Not using third person | Description sounds wrong | Use "Use when..." not "I will..." |
| Absolute paths in plugin.json | Breaks on other machines | Use relative paths or |
Forgetting | Changes not visible | Run |
| Command not found | Slash command doesn't work | Check filename matches expected command, reload plugin |
| Agent not auto-delegated | Agent never gets used | Improve |
/plugin marketplace add user-or-org/marketplace-repo
/plugin install plugin-name@marketplace-name