Quick Start
Process Types
| Process | Description | Use Case |
|---|---|---|
Sequential | One after another | Pipeline (research → write → edit) |
Parallel | All at once | Independent analysis |
Hierarchical | Manager delegates | Complex coordination |
Examples
Sequential Pipeline
Parallel Analysis
Builder Methods
| Method | Type | Description |
|---|---|---|
.agent(agent) | Agent | Add an agent |
.process(p) | Process | Set execution order |
.verbose(bool) | bool | Enable logging |
.build() | - | Create the team |
Context Passing
In sequential mode, each agent receives the previous agent’s output:Best Practices
Specialized agents
Specialized agents
Give each agent a focused role for better results.
Clear handoffs
Clear handoffs
Sequential agents should have complementary instructions.
Use parallel for independence
Use parallel for independence
Only use parallel when agents don’t depend on each other.

