Delegation
How the Boss dispatches tasks and receives results. See Delegation.
A Boss agent is a regular agent with one extra capability: it holds persistent context on the other agents assigned to it. Instead of you tracking which terminal is working on what, you talk to the Boss — it knows the whole team’s state and decides who to dispatch.
flowchart TD You([You]) -->|single conversation| Boss Boss -->|delegates| A[Subordinate A] Boss -->|delegates| B[Subordinate B] Boss -->|delegates| C[Subordinate C] A -->|reports back| Boss B -->|reports back| Boss C -->|reports back| BossWhen you spawn a Boss you assign subordinates from the existing agent pool. The Boss receives a continuously-updated context block containing:
idle, working, blocked, need-review)This context is injected at the top of every Boss turn so it always has a current picture of the team without you needing to summarise anything.

A normal agent is reactive — you send it a task and it works. A Boss is a coordinator:
| Normal agent | Boss agent |
|---|---|
| One working directory, one task at a time | Aware of the whole team’s work |
| You write the task | Boss writes tasks for subordinates |
| Outputs go to your conversation | Subordinate outputs reported back to Boss |
| No knowledge of other agents | Full team context on every turn |
The Boss class also carries the Boss Instructions skill which defines the delegation protocol: zero-questions dispatch, structured work-plan format, parallel delegation strategy, and completion reporting.
You assign subordinates at spawn time from the Spawn Boss Agent modal. Any existing agent can be made a subordinate — it doesn’t need to be idle or a specific class.

Subordinates automatically report their tracking status back to the Boss context via API calls (driven by the Agent Tracking skill). The Boss sees real-time updates:
working — currently processing a taskneed-review — finished, waiting for your sign-offblocked — stuck, needs input or a dependency resolvedwaiting-subordinates — (nested Boss) waiting on its own teamcan-clear-context — fully done, safe to compactDelegation
How the Boss dispatches tasks and receives results. See Delegation.
Classes
The Boss class and what makes it different from other built-in classes. See Classes.