Orchestration FAQ
What does orchestration give me beyond a single workflow?
The composable parts — reusable agent templates and a library
of execution strategies — plus AgentTeam to fan several
workflow-backed agents out in parallel behind quality gates.
How do I run a team of agents?
attune.agents.team.AgentTeam(agents, gates) with
WorkflowAgents and GateSpecs, then await team.run(target).
How do I see the available agent templates?
get_all_templates() (and get_template(id) for one); filter
with get_templates_by_capability / get_templates_by_tier.
Is orchestration sync or async?
Building a team and listing templates are synchronous;
AgentTeam.run and ExecutionStrategy.execute are async.