Claude Code プラグインを配布・共有するためのマーケットプレイスです。
このリポジトリは、Claude Code のプラグインマーケットプレイスとして機能します。チームごとにディレクトリを分けてプラグインを管理し、マーケットプレイス経由で簡単にインストールできます。
claude-code-plugins/
├── .claude-plugin/
│ └── marketplace.json # マーケットプレイス定義
├── plugins/
│ ├── sample/ # チーム "sample" のプラグイン
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── commands/ # スラッシュコマンド
│ │ └── agents/ # サブエージェント
│ └── <team_name>/ # 他チームのプラグイン
├── CLAUDE.md
└── README.md
各チームが plugins/<team_name>/ 配下に独自のプラグインを配置します。
Claude Code 内で以下のコマンドを実行してください:
/plugin marketplace add mu-suke/claude-code-plugins
マーケットプレイスの追加後、以下のコマンドでプラグインをインストールできます:
# 利用可能なプラグインを確認
/plugin
# プラグインをインストール(team_name を指定)
/plugin install sample@claude-code-plugins
/plugin marketplace update
新しいチームとしてプラグインを追加する手順:
plugins/<team_name>/ 配下にプラグインの構成要素を配置します:
plugins/<team_name>/
├── .claude-plugin/
│ └── plugin.json # プラグインマニフェスト
├── commands/ # スラッシュコマンド(.md ファイル)
├── skills/ # Agent Skills(SKILL.md を含むディレクトリ)
├── agents/ # サブエージェント定義(.md ファイル)
├── hooks/ # フック設定
│ └── hooks.json
├── .mcp.json # MCP サーバー設定
└── .lsp.json # LSP サーバー設定
注意:
commands/、skills/、agents/、hooks/は.claude-plugin/ディレクトリの中ではなく、プラグインルートに配置してください。.claude-plugin/にはplugin.jsonのみが入ります。
plugins/<team_name>/.claude-plugin/plugin.json:
{
"name": "<team_name>",
"description": "プラグインの説明",
"version": "1.0.0",
"author": {
"name": "<team_name>"
}
}
.claude-plugin/marketplace.json の plugins 配列にエントリを追加します:
{
"name": "<team_name>",
"source": "<team_name>",
"description": "プラグインの説明"
}
# プラグイン単体のテスト
claude --plugin-dir ./plugins/<team_name>
# マーケットプレイス経由のテスト
claude
/plugin marketplace add ./
/plugin install <team_name>@claude-code-plugins
claude plugin validate .
| プラグイン名 | 説明 | インストール |
|---|---|---|
sample | サンプルプラグイン - hello world コマンドとコードレビューエージェント | /plugin install sample@claude-code-plugins |
| 要素 | 説明 |
|---|---|
Commands (commands/) | /<team_name>:<command> 形式で呼び出すコマンド |
Skills (skills/) | Claude が自動的にタスクに応じて使用するスキル |
Agents (agents/) | 特定のタスクに特化したサブエージェント |
Hooks (hooks/hooks.json) | Claude Code のイベントに応じて実行されるハンドラ |
MCP Servers (.mcp.json) | 外部ツール・サービスとの連携 |
LSP Servers (.lsp.json) | コードインテリジェンスの提供 |
Uses power tools
Uses Bash, Write, or Edit tools
No model invocation
Executes directly as bash, bypassing the AI model
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub mu-suke/claude-code-plugins --plugin sampleComprehensive development infrastructure for Claude Code projects. Includes 12 AI skills, task coordination hooks, project templates, and a visual dev-manager dashboard.
Plugin development toolkit with skills for creating agents, commands, hooks, MCP integrations, and comprehensive plugin structure guidance
Development tools for Claude Code plugins - local testing without pushing
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.