← スキル一覧に戻る

multi-agent-orchestration
by abhishekmmgn
agent skills
⭐ 0🍴 0📅 2026年1月20日
SKILL.md
name: multi-agent-orchestration description: design patterns for coordinating multiple agents. Use this to implement Hierarchical, Diamond, Peer-to-Peer, or Collaborative architectures for complex workflows.
Multi-Agent Orchestration Patterns
Goal
Design robust architectures where specialized agents collaborate to solve complex problems that are too difficult for a single agent.
Core Design Patterns
1. Hierarchical (The "Manager")
- Structure: A central Orchestrator Agent acts as a router. It classifies the user's intent and delegates the task to a specific specialized agent (e.g., Navigation Agent, Media Agent).
- Usage: Best for tasks with clear, distinct domains where a single specialist can handle the request.
- Flow: User -> Orchestrator -> Specialist -> User.
2. The Diamond Pattern (The "Moderator")
- Structure: Similar to Hierarchical, but the specialist's output doesn't go back to the user immediately. It passes through a second central node (e.g., a Rephraser or Safety agent) to standardize or polish the final response.
- Usage: Essential when you need consistent tone, style, or safety guardrails across diverse specialists.
- Flow: User -> Orchestrator -> Specialist -> Rephraser -> User.
3. Peer-to-Peer (The "Network")
- Structure: Agents can hand off tasks directly to one another without returning to a central orchestrator.
- Usage: Best for resilience. If the Navigation Agent realizes a query is actually about history, it can hand off directly to the Knowledge Agent, recovering from initial routing errors.
- Flow: User -> Agent A -> Agent B -> User.
4. Collaborative (The "Mixer")
- Structure: Multiple specialists work on the same query in parallel. A Response Mixer agent then takes the partial answers from all of them and synthesizes a single, comprehensive response.
- Usage: Best for multifaceted queries (e.g., "How do I handle hydroplaning?") where you need safety data, physics explanations, and driving tips simultaneously.
- Flow: User -> [Agent A, Agent B, Agent C] -> Mixer -> User.
Orchestration Best Practices
- Specialization: Ensure each agent has a narrow, well-defined domain. Specialized agents are easier to optimize and debug than generalists.
- Adaptive Loops: Implement retry loops where an agent can reformulate its own query if the initial attempt fails (e.g., broadening search terms if no results are found).
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です