
Mz Base
- Updated March 1, 2026
- mizunomi32/claude-code-marketplace
mz-base is a Claude Code skill for ai & agent building. mz-base plugin It helps developers move faster with AI-assisted coding.
Key points
- mz-base
- AI & Agent Building
- AI-coding skill
Mz Base by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add mizunomi32/claude-code-marketplace/plugin install mz-base@company-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | March 1, 2026 |
|---|---|
| Repository | mizunomi32/claude-code-marketplace ↗ |
What it does
mz-base plugin
README.md
Claude Code プラグイン マーケットプレイス
このリポジトリは、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ファイル)
plugin.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から該当のエントリを削除
参考資料
Related skills
AI & Agent Buildingagents