Multi-Agent Workflows
Multi-Agent Workflows
Connect agents together for complex task orchestration, planning, and execution.
Multi-Agent Workflows
Single agents are powerful. Multiple agents working together are transformative. Supyagent's delegation system lets you build hierarchies of specialized agents that route, plan, and execute complex tasks.
The Pattern
User → Assistant (router)
├─→ Planner (deep analysis)
│ └─→ Coder (implementation)
└─→ Coder (direct delegation)The assistant receives user requests and decides whether to handle them directly or delegate to a specialist. The planner breaks down complex tasks into steps. The coder implements the solution.
Quick Setup
delegates:
- planner
- coderThis gives the assistant two delegation tools: delegate_to_planner and delegate_to_coder.
In This Section
- Delegation — Setting up delegates and execution modes
- Orchestration — Planner-coder patterns and depth limits
- Daemon Mode — Event-driven agents with inbox polling
- Examples — Real-world multi-agent setups