Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

multi-agent-patterns多 Agent 模式

Agent Skill

multi-agent-patterns 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

312

周安装

13

GitHub Stars

公开资料未说明

下载量

104
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-agent-patterns(多 Agent 模式)
来源仓库:https://github.com/vamseeachanta/workspace-hub
仓库路径:skills/multi-agent-patterns
安装命令:
npx skills add vamseeachanta/workspace-hub --skill "multi-agent-patterns"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add vamseeachanta/workspace-hub --skill "multi-agent-patterns"

简介

multi-agent-patterns 用于发现并安装 AI 代理的多智能体协作模式。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等复杂任务场景。
  • 通过 npx 从 vamseeachanta/workspace-hub 仓库添加指定技能。
  • 安装前需核实权限、维护状态及是否触发网络通信。
  • 建议查阅原始 README 了解角色分配和协调协议。

SKILL.md

Multi-Agent Patterns Skill

Overview

This skill addresses multi-agent system design, covering scenarios where supervisor patterns, swarm architectures, or agent coordination strategies are needed. Core insight: "Sub-agents exist primarily to isolate context, not to anthropomorphize role division."

Quick Start

  1. Identify need - Why multiple agents? (context limits, parallelism, specialization)
  2. Choose pattern - Supervisor, peer-to-peer, or hierarchical
  3. Design communication - Message passing, handoffs, state sharing
  4. Implement safeguards - Validation, timeouts, conflict resolution
  5. Monitor - Token usage, bottlenecks, failures

When to Use

  • Context window limits prevent single-agent solutions
  • Tasks benefit from parallel execution
  • Different domains require specialized knowledge
  • Complex workflows need coordination
  • Resilience through redundancy is required

Three Primary Patterns

1. Supervisor/Orchestrator

Structure: Central coordinator delegates to specialists and synthesizes results.

         [Supervisor]
        /     |      \
   [Agent A] [Agent B] [Agent C]
       ↑        ↑         ↑
       └────────┴─────────┘
           Results flow up

Best for:

  • Tasks with clear decomposition
  • Human oversight needs
  • Sequential dependencies
  • Quality control requirements

Key consideration: The "telephone game problem" emerges when supervisors paraphrase sub-agent responses incorrectly.

Solution: Implement forward_message tool enabling direct sub-agent-to-user communication:

def forward_message(agent_id: str, message: str, to: str = "user"):
    """Forward agent message directly without supervisor interpretation."""
    return {"from": agent_id, "message": message, "forwarded": True}

2. Peer-to-Peer/Swarm

Structure: No central control; agents communicate directly through protocols.

   [Agent A] ←→ [Agent B]
       ↑↓          ↑↓
   [Agent C] ←→ [Agent D]

Best for:

  • Flexible exploration
  • Emergent problem-solving
  • Parallel processing
  • Resilient architectures

Key requirements:

  • Predefined communication protocols
  • Explicit handoff mechanisms
  • Shared state management
  • Conflict resolution rules

3. Hierarchical

Structure: Layers of agents with strategy, planning, and execution tiers.

        [Strategy Layer]
              ↓
        [Planning Layer]
        /      |      \
   [Exec A] [Exec B] [Exec C]

Best for:

  • Complex organizational workflows
  • Multi-level abstraction
  • Clear separation of concerns
  • Enterprise-scale systems

Layer responsibilities:

  • Strategy: Goals, priorities, resource allocation
  • Planning: Task decomposition, scheduling, coordination
  • Execution: Actual work, reporting, feedback

Token Economics

Reality check: Multi-agent systems consume ~15x baseline tokens compared to single-agent approaches.

ApproachToken MultiplierUse Case
Single Agent1xSimple, focused tasks
2-3 Agents3-5xModerate complexity
Full Swarm10-20xComplex, parallel work

Optimization strategies:

  • Model selection often provides larger gains than more agents
  • Use smaller models for routine tasks
  • Reserve large models for synthesis and decisions
  • Implement aggressive context compression

Communication Patterns

Message Passing

class AgentMessage:
    sender: str
    recipient: str
    content: str
    message_type: Literal["request", "response", "broadcast"]
    requires_ack: bool = False

Handoff Protocol

class Handoff:
    from_agent: str
    to_agent: str
    context: dict  # Compressed relevant state
    task: str
    expected_output: str
    timeout_seconds: int = 300

State Sharing

class SharedState:
    version: int
    last_updated: datetime
    data: dict
    lock_holder: Optional[str] = None

    def acquire_lock(self, agent_id: str) -> bool: ...
    def release_lock(self, agent_id: str) -> bool: ...
    def update(self, agent_id: str, changes: dict) -> bool: ...

Implementation Guidance

Validation Requirements

  • Validate outputs before inter-agent transfer
  • Check message format and completeness
  • Verify agent capabilities before assignment
  • Validate state consistency after updates

Consensus Mechanisms

MechanismDescriptionBest For
Simple Majority>50% agreementQuick decisions
Weighted VotingVotes weighted by confidenceQuality-sensitive
QuorumMinimum respondents requiredFault tolerance
Leader ElectionDesignated decision makerSpeed

Recommendation: Implement weighted voting rather than simple majority:

def weighted_consensus(votes: List[Vote]) -> Decision:
    weighted_sum = sum(v.confidence * v.value for v in votes)
    total_weight = sum(v.confidence for v in votes)
    return Decision(value=weighted_sum / total_weight)

Safeguards

  1. Execution TTL - Prevent infinite loops: max_execution_time = 300 # seconds max_iterations = 100
  2. Checkpoint Monitoring - Detect supervisor bottlenecks: checkpoint_interval = 30 # seconds alert_threshold = 3 # missed checkpoints
  3. Circuit Breaker - Handle cascading failures: failure_threshold = 3 recovery_timeout = 60 # seconds

Best Practices

Do

  1. Start with simplest pattern that works
  2. Define explicit handoff protocols
  3. Include state management from the start
  4. Monitor token usage per agent
  5. Implement graceful degradation
  6. Log all inter-agent communication

Don't

  1. Use multi-agent for single-agent problems
  2. Assume agents will coordinate implicitly
  3. Ignore token costs during design
  4. Skip validation between agents
  5. Create deeply nested hierarchies
  6. Forget timeout handling

Error Handling

ErrorCauseSolution
Agent timeoutTask too complexBreak into subtasks, extend timeout
Conflicting outputsAmbiguous taskClarify requirements, add validation
Lost messagesNetwork/state issuesImplement acknowledgments, retry
Infinite loopMissing terminationAdd TTL, iteration limits
Supervisor bottleneckToo many reportsAdd intermediate aggregators

Metrics

MetricTargetDescription
Task completion rate>95%Successfully completed tasks
Token efficiency>0.5Output value / tokens used
Coordination overhead<30%Tokens for coordination vs. work
Agent utilization>70%Active time vs. waiting
Error rate<5%Failed inter-agent operations

Pattern Selection Guide

Is context window sufficient?
├── Yes → Single agent
└── No → Are tasks parallelizable?
    ├── Yes → Can agents work independently?
    │   ├── Yes → Peer-to-peer
    │   └── No → Supervisor with parallel workers
    └── No → Is there clear hierarchy?
        ├── Yes → Hierarchical
        └── No → Supervisor/Orchestrator

Related Skills


Version History

  • 1.0.0 (2026-01-19): Initial release adapted from Agent-Skills-for-Context-Engineering

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.56%
按下载量换算31

windsurf

24.76%
按下载量换算26

trae

16.69%
按下载量换算17

OpenCode

11.48%
按下载量换算12

Cursor

7.7%
按下载量换算8

Codex

3.23%
按下载量换算3

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills