Back to list
pluginagentmarketplace

multi-agent

by pluginagentmarketplace

AI Agents Plugin Development

1🍴 0📅 Jan 5, 2026

SKILL.md


name: multi-agent description: Build multi-agent systems - orchestration, coordination, workflows, and distributed architectures sasmp_version: "1.3.0" bonded_agent: 05-multi-agent bond_type: PRIMARY_BOND version: "2.0.0"

Multi-Agent Systems

Build coordinated multi-agent systems for complex tasks.

When to Use This Skill

Invoke this skill when:

  • Tasks require multiple specialized agents
  • Building orchestrator-worker patterns
  • Implementing agent workflows
  • Coordinating parallel execution

Parameter Schema

ParameterTypeRequiredDescriptionDefault
taskstringYesMulti-agent goal-
architectureenumNoorchestrator-worker, hierarchical, peer-to-peerorchestrator-worker
frameworkenumNolanggraph, autogen, crewailanggraph

Quick Start

from langgraph.graph import StateGraph, MessagesState
from langgraph.prebuilt import create_react_agent

# Create specialized agents
researcher = create_react_agent(llm, [web_search])
coder = create_react_agent(llm, [execute_code])

# Build graph
graph = StateGraph(MessagesState)
graph.add_node("researcher", researcher)
graph.add_node("coder", coder)
graph.add_conditional_edges("coordinator", router)

Architecture Patterns

Orchestrator-Worker

Orchestrator (Opus)
    ├── Researcher (Sonnet)
    ├── Analyst (Sonnet)
    └── Writer (Haiku)

Hierarchical

Manager (Opus)
    ├── Research Lead (Sonnet)
    │   ├── Web Researcher (Haiku)
    │   └── Doc Analyst (Haiku)
    └── Engineering Lead (Sonnet)
        ├── Frontend Dev (Haiku)
        └── Backend Dev (Haiku)

Model Allocation

Agent TypeModelRationale
OrchestratorOpusComplex planning
SpecialistSonnetReasoning
WorkerHaikuSimple tasks

Troubleshooting

IssueSolution
Agents not coordinatingCheck message bus
DeadlockAdd timeout, detect cycles
Inconsistent resultsSynchronize state
High costsUse cheaper models for workers

Best Practices

  • One job per agent (single responsibility)
  • Orchestrator handles planning only
  • Use checkpointing for long workflows
  • Implement circuit breakers per agent
  • ai-agent-basics - Single agents
  • agent-memory - Shared state
  • tool-calling - Per-agent tools

References

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon