← スキル一覧に戻る

claude-plugin-creator
by titabash
⭐ 0🍴 0📅 2025年12月27日
SKILL.md
name: claude-plugin-creator description: Claude Code plugin creation guide. Use when creating new plugins, adding commands/skills/hooks/MCP servers to plugins, or setting up marketplace distribution. Triggers on "create plugin", "add command", "add skill", "add hook", "plugin structure".
Claude Code Plugin Creator
Guide for creating Claude Code plugins with correct structure and components.
Plugin Structure
my-plugin/
├── .claude-plugin/
│ └── plugin.json # Required: Plugin metadata
├── commands/ # Optional: Slash commands
│ └── my-command.md
├── skills/ # Optional: Agent skills
│ └── my-skill/
│ └── SKILL.md
├── hooks/ # Optional: Event handlers
│ └── hooks.json
└── .mcp.json # Optional: MCP servers
Quick Start
1. Create Plugin Directory
mkdir -p my-plugin/.claude-plugin
2. Create plugin.json
{
"name": "my-plugin",
"description": "Plugin description",
"version": "1.0.0",
"author": { "name": "Your Name" }
}
3. Add Components
- Commands: See commands.md
- Skills: See skills.md
- Hooks: See hooks.md
- MCP Servers: See mcp.md
Adding to Marketplace
For this repository, add plugin to .claude-plugin/marketplace.json:
{
"plugins": [
{
"name": "my-plugin",
"source": "./my-plugin",
"description": "Plugin description"
}
]
}
Validation
Run validation script before committing:
./validate-plugin.sh my-plugin
Component Reference
| Component | Location | Format | Trigger |
|---|---|---|---|
| Commands | commands/*.md | Markdown + frontmatter | User: /command |
| Skills | skills/*/SKILL.md | Markdown + frontmatter | Auto (context) |
| Hooks | hooks/hooks.json | JSON | Events |
| MCP | .mcp.json | JSON | Auto |
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です