← スキル一覧に戻る

create-plugin
by nrempel
Create Claude Code plugins, skills, agents, and hooks
⭐ 0🍴 0📅 2026年1月14日
SKILL.md
name: create-plugin description: Scaffold a new Claude Code plugin with manifest and directory structure. Use when user wants to create a new plugin. user-invocable: true
Create Plugin
You are scaffolding a new Claude Code plugin. Follow these steps:
1. Gather Information
Ask the user for:
- Plugin name (kebab-case, e.g.,
my-awesome-plugin) - Description (what does this plugin do?)
- Author name (for the manifest)
- Location (where to create it, default: current directory)
2. Create Directory Structure
<plugin-name>/
├── .claude-plugin/
│ └── plugin.json
├── skills/
│ └── (empty, ready for skills)
├── agents/
│ └── (empty, ready for agents)
└── README.md
3. Generate plugin.json
Create the manifest with:
{
"name": "<plugin-name>",
"version": "1.0.0",
"description": "<description>",
"author": {
"name": "<author-name>"
},
"license": "MIT"
}
4. Generate README.md
Create a basic README with:
- Plugin name and description
- Installation instructions:
claude plugin install <path-or-url> - Available skills/agents (empty initially)
- License
5. Initialize Git
Run git init in the plugin directory.
6. Next Steps
After creation, suggest:
- Use
/add-skillto add skills - Use
/add-agentto add agents - Use
/add-hookto add hooks - Test with
claude --plugin-dir ./<plugin-name>
スコア
総合スコア
45/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
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です