Skip to content

Coordinator Agent

Alessio Rocchi edited this page Jan 27, 2026 · 1 revision

Coordinator Agent

Orchestrate multi-agent tasks and manage workflows


Purpose

Orchestrate multi-agent tasks and manage workflows

Capabilities

task-decomposition, agent-coordination, progress-tracking, result-synthesis, workflow-management

When to Use

Complex features, End-to-end workflows, Multi-component systems

Examples

Basic Usage

Spawn a coordinator agent to help with orchestrate multi-agent tasks and manage workflows

In Workflow

const session = await memory.createSession({ feature: 'my-feature' });

const agent = spawnAgent('coordinator', {
  name: 'my-coordinator',
  sessionId: session.id
});

Best Practices

  • Provide clear, specific requirements
  • Give context about the work
  • Use sessions for related tasks
  • Combine with other agents for complete workflows

Common Workflows

See Agent Overview for common agent combination patterns.

Related

Clone this wiki locally