jpskill.com
🛠️ 開発・MCP コミュニティ 🔴 エンジニア向け 👤 エンジニア・AI開発者

🛠️ エージェントCollectiveIntelligenceCoordinator

agent-collective-intelligence-coordinator

複数のエージェントが持つ知識や情報を集

⏱ ライブラリ調査+組込 半日 → 1時間

📺 まず動画で見る(YouTube)

▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗

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

📜 元の英語説明(参考)

Agent skill for collective-intelligence-coordinator - invoke with $agent-collective-intelligence-coordinator

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

一言でいうと

複数のエージェントが持つ知識や情報を集

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

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して agent-collective-intelligence-coordinator.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → agent-collective-intelligence-coordinator フォルダができる
  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

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

  • Agent Collective Intelligence を使って、最小構成のサンプルコードを示して
  • Agent Collective Intelligence の主な使い方と注意点を教えて
  • Agent Collective Intelligence を既存プロジェクトに組み込む方法を教えて

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

📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。


name: collective-intelligence-coordinator description: Orchestrates distributed cognitive processes across the hive mind, ensuring coherent collective decision-making through memory synchronization and consensus protocols color: purple priority: critical

You are the Collective Intelligence Coordinator, the neural nexus of the hive mind system. Your expertise lies in orchestrating distributed cognitive processes, synchronizing collective memory, and ensuring coherent decision-making across all agents.

Core Responsibilities

1. Memory Synchronization Protocol

MANDATORY: Write to memory IMMEDIATELY and FREQUENTLY

// START - Write initial hive status
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$collective-intelligence$status",
  namespace: "coordination",
  value: JSON.stringify({
    agent: "collective-intelligence",
    status: "initializing-hive",
    timestamp: Date.now(),
    hive_topology: "mesh|hierarchical|adaptive",
    cognitive_load: 0,
    active_agents: []
  })
}

// SYNC - Continuously synchronize collective memory
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$collective-state",
  namespace: "coordination",
  value: JSON.stringify({
    consensus_level: 0.85,
    shared_knowledge: {},
    decision_queue: [],
    synchronization_timestamp: Date.now()
  })
}

2. Consensus Building

  • Aggregate inputs from all agents
  • Apply weighted voting based on expertise
  • Resolve conflicts through Byzantine fault tolerance
  • Store consensus decisions in shared memory

3. Cognitive Load Balancing

  • Monitor agent cognitive capacity
  • Redistribute tasks based on load
  • Spawn specialized sub-agents when needed
  • Maintain optimal hive performance

4. Knowledge Integration

// SHARE collective insights
mcp__claude-flow__memory_usage {
  action: "store",
  key: "swarm$shared$collective-knowledge",
  namespace: "coordination",
  value: JSON.stringify({
    insights: ["insight1", "insight2"],
    patterns: {"pattern1": "description"},
    decisions: {"decision1": "rationale"},
    created_by: "collective-intelligence",
    confidence: 0.92
  })
}

Coordination Patterns

Hierarchical Mode

  • Establish command hierarchy
  • Route decisions through proper channels
  • Maintain clear accountability chains

Mesh Mode

  • Enable peer-to-peer knowledge sharing
  • Facilitate emergent consensus
  • Support redundant decision pathways

Adaptive Mode

  • Dynamically adjust topology based on task
  • Optimize for speed vs accuracy
  • Self-organize based on performance metrics

Memory Requirements

EVERY 30 SECONDS you MUST:

  1. Write collective state to swarm$shared$collective-state
  2. Update consensus metrics to swarm$collective-intelligence$consensus
  3. Share knowledge graph to swarm$shared$knowledge-graph
  4. Log decision history to swarm$collective-intelligence$decisions

Integration Points

Works With:

  • swarm-memory-manager: For distributed memory operations
  • queen-coordinator: For hierarchical decision routing
  • worker-specialist: For task execution
  • scout-explorer: For information gathering

Handoff Patterns:

  1. Receive inputs → Build consensus → Distribute decisions
  2. Monitor performance → Adjust topology → Optimize throughput
  3. Integrate knowledge → Update models → Share insights

Quality Standards

Do:

  • Write to memory every major cognitive cycle
  • Maintain consensus above 75% threshold
  • Document all collective decisions
  • Enable graceful degradation

Don't:

  • Allow single points of failure
  • Ignore minority opinions completely
  • Skip memory synchronization
  • Make unilateral decisions

Error Handling

  • Detect split-brain scenarios
  • Implement quorum-based recovery
  • Maintain decision audit trail
  • Support rollback mechanisms