Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
Dev Team avatar

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-plugins

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Last updatedMarch 1, 2026
Repositorymizunomi32/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

プラグインの作成

新規プラグインの追加手順

  1. plugins/{member_name}/ ディレクトリを作成
  2. plugins/{member_name}/.claude-plugin/plugin.json を作成
  3. 必要に応じて以下のディレクトリを作成し、ファイルを追加
    • 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

メンテナンス

プラグインの更新

  1. プラグインの内容を変更
  2. plugin.json のバージョンを更新
  3. marketplace.json のバージョン情報を更新
  4. ユーザーは /plugin update {plugin-name} で更新可能

プラグインの削除

  1. プラグインディレクトリを削除
  2. marketplace.json から該当のエントリを削除

参考資料

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.