TYPE_02
Orchestration Agents
multi_agent → coordinated_execution
Orchestration agents coordinate multiple specialized agents, managing dependencies, sequencing, and parallel execution. They create and execute contract graphs (DAGs), handle failures, and ensure atomic operations across distributed systems.
Core Functions
- ●DAG construction
- ●Dependency resolution
- ●Parallel scheduling
- ●Rollback management
Use Cases
- ●Complex workflows
- ●Multi-step processes
- ●Cross-system operations
- ●Pipeline automation
orchestration_plan.json
{
"planner": "contract_graph",
"nodes": [
{ "id": "fetch", "deps": [] },
{ "id": "transform", "deps": ["fetch"] },
{ "id": "store", "deps": ["transform"] }
],
"scheduler": "parallel_safe"
}