Auto-discovered marketplace from mizunomi32/claude-code-marketplace
npx claudepluginhub mizunomi32/claude-code-marketplacemz-base plugin: codebase analyzer agent, analyze-codebase skill, and Serena MCP
Share bugs, ideas, or general feedback.
このリポジトリは、Claude Code のプラグインを自社内で配布するためのマーケットプレイスです。
Claude Code のプラグイン、スラッシュコマンド、サブエージェント、MCPサーバー、フックなどを一元管理し、組織内で共有するためのリポジトリです。
.
├── .claude-plugin/
│ └── marketplace.json # マーケットプレイス定義
├── plugins/ # 各メンバーのプラグインディレクトリ
│ ├── sample/ # メンバー別ディレクトリ
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json # プラグインマニフェスト
│ │ ├── commands/ # スラッシュコマンド
│ │ ├── agents/ # サブエージェント
│ │ ├── skills/ # Agent Skills(オプション)
│ │ └── hooks/ # フック(オプション)
│ └── {member_name}/
└── README.md
plugins/{member_name}/ ディレクトリを作成plugins/{member_name}/.claude-plugin/plugin.json を作成commands/ - スラッシュコマンド(.mdファイル)agents/ - サブエージェント(.mdファイル)skills/ - Agent Skills(.mdファイル)hooks/ - フック(.jsonファイル){
"name": "sample",
"version": "1.0.0",
"description": "Sample plugin",
"author": "Your Name",
"commands": [
{
"name": "hello",
"description": "Hello world command"
}
],
"agents": [
{
"name": "code-reviewer",
"description": "Code review agent"
}
]
}
commands/hello.md)---
name: hello
description: Hello world command
---
Hello, World!
agents/code-reviewer.md)---
name: code-reviewer
description: Code review agent
---
You are a code reviewer. Review the code for potential issues.
.claude-plugin/marketplace.json に新しいプラグインを追加します。
{
"name": "company-plugins",
"owner": {
"name": "Dev Team",
"email": "dev@example.com"
},
"plugins": [
{
"name": "sample",
"source": "./plugins/sample",
"description": "Sample plugin",
"version": "1.0.0"
},
{
"name": "{plugin-name}",
"source": "./plugins/{member_name}",
"description": "{description}",
"version": "{version}"
}
]
}
/plugin marketplace add {owner}/{repo}
/plugin install {plugin-name}@company-plugins
plugin.json のバージョンを更新marketplace.json のバージョン情報を更新/plugin update {plugin-name} で更新可能marketplace.json から該当のエントリを削除