jpskill.com
💼 ビジネス コミュニティ 🟡 少し慣れが必要 👤 経営者・事業責任者・マーケ

💼 Hive Mind

hive-mind

複数のシステムやエージェントが連携し、一部に

⏱ 営業メール作成 15分/通 → 1分/通

📺 まず動画で見る(YouTube)

▶ 【自動化】AIガチ勢の最新活用術6選がこれ1本で丸分かり!【ClaudeCode・AIエージェント・AI経営・Skills・MCP】 ↗

※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。

📜 元の英語説明(参考)

Byzantine fault-tolerant consensus and distributed coordination. Queen-led hierarchical swarm management with multiple consensus strategies. Use when: distributed coordination, fault-tolerant operations, multi-agent consensus, collective decision making. Skip when: single-agent tasks, simple operations, local-only work.

🇯🇵 日本人クリエイター向け解説

一言でいうと

複数のシステムやエージェントが連携し、一部に

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o hive-mind.zip https://jpskill.com/download/2130.zip && unzip -o hive-mind.zip && rm hive-mind.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/2130.zip -OutFile "$d\hive-mind.zip"; Expand-Archive "$d\hive-mind.zip" -DestinationPath $d -Force; ri "$d\hive-mind.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して hive-mind.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → hive-mind フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-17
取得日時
2026-05-17
同梱ファイル
1

💬 こう話しかけるだけ — サンプルプロンプト

  • Hive Mind で、私のビジネスを分析して改善案を3つ提案して
  • Hive Mind を使って、来週の会議用の資料を作って
  • Hive Mind で、現状の課題を整理してアクションプランに落として

これをClaude Code に貼るだけで、このSkillが自動発動します。

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

[Skill 名] hive-mind

Hive-Mind スキル

目的

ビザンチン障害耐性のある合意形成と分散型スウォーム協調。

トリガーするタイミング

  • マルチエージェント分散タスク
  • 障害耐性のある操作が必要な場合
  • 集団意思決定
  • 複雑な協調パターン

トポロジー

トポロジー 説明 ユースケース
hierarchical クイーンがワーカーを制御 デフォルト、ドリフト防止
mesh 完全接続されたピア 研究、探索
hierarchical-mesh ハイブリッド 複雑なケースに推奨
adaptive 負荷に基づいて動的 オートスケーリング

合意形成戦略

戦略 許容範囲 ユースケース
byzantine f < n/3 の故障 信頼できない環境
raft f < n/2 の故障 リーダーベース、一貫性
gossip 結果整合性 大規模、可用性
crdt 競合なし 同時更新
quorum 設定可能 調整可能な一貫性

コマンド

Hive-Mind の初期化

npx claude-flow hive-mind init --topology hierarchical-mesh --consensus raft

クイーンの生成

npx claude-flow hive-mind spawn --role queen --name coordinator

合意形成ステータスの確認

npx claude-flow hive-mind consensus --status

セッションの表示

npx claude-flow hive-mind sessions --active

ベストプラクティス

  1. コーディングタスクには hierarchical (ドリフト防止) を使用します。
  2. 一貫性のためには raft consensus を使用します。
  3. 協調のためにはエージェント数を8未満に保ちます。
  4. 頻繁にチェックポイントを実行します。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Hive-Mind Skill

Purpose

Byzantine fault-tolerant consensus and distributed swarm coordination.

When to Trigger

  • Multi-agent distributed tasks
  • Fault-tolerant operations needed
  • Collective decision making
  • Complex coordination patterns

Topologies

Topology Description Use Case
hierarchical Queen controls workers Default, anti-drift
mesh Fully connected peers Research, exploration
hierarchical-mesh Hybrid Recommended for complex
adaptive Dynamic based on load Auto-scaling

Consensus Strategies

Strategy Tolerance Use Case
byzantine f < n/3 faulty Untrusted environment
raft f < n/2 faulty Leader-based, consistent
gossip Eventual Large scale, availability
crdt Conflict-free Concurrent updates
quorum Configurable Tunable consistency

Commands

Initialize Hive-Mind

npx claude-flow hive-mind init --topology hierarchical-mesh --consensus raft

Spawn Queen

npx claude-flow hive-mind spawn --role queen --name coordinator

Check Consensus Status

npx claude-flow hive-mind consensus --status

View Sessions

npx claude-flow hive-mind sessions --active

Best Practices

  1. Use hierarchical for coding tasks (anti-drift)
  2. Use raft consensus for consistency
  3. Keep agent count under 8 for coordination
  4. Run frequent checkpoints