Livelli Architetturali
Cinque aspetti ortogonali che compongono un agente completo
L1 Tools & Execution
Cosa l'agente PUÒ fare. La base: gli strumenti danno al modello capacità di interagire con il mondo.
L2 Planning & Coordination
Come il lavoro è organizzato. Dalle semplici liste todo alle bacheche task consapevoli delle dipendenze condivise tra agenti.
TodoWrite
Plan Before You Act
An agent without a plan drifts; list the steps first, then execute
Subagents
Clean Context Per Subtask
Subagents use independent messages[], keeping the main conversation clean
Skills
Load on Demand
Inject knowledge via tool_result when needed, not upfront in the system prompt
Tasks
Task Graph + Dependencies
A file-based task graph with ordering, parallelism, and dependencies -- the coordination backbone for multi-agent work
L3 Memory Management
Mantenere il contesto entro i limiti. Strategie di compressione che permettono agli agenti di lavorare infinitamente senza perdere coerenza.
L4 Concurrency
Esecuzione non bloccante. Thread in background e bus di notifica per lavoro parallelo.
L5 Collaboration
Coordinamento multi-agente. Team, messaggistica e compagni autonomi che pensano per conto proprio.
Agent Teams
Teammates + Mailboxes
When one agent can't finish, delegate to persistent teammates via async mailboxes
Team Protocols
Shared Communication Rules
One request-response pattern drives all team negotiation
Autonomous Agents
Scan Board, Claim Tasks
Teammates scan the board and claim tasks themselves; no need for the lead to assign each one
Worktree + Task Isolation
Isolate by Directory
Each works in its own directory; tasks manage goals, worktrees manage directories, bound by ID
