Архитектурные слои
Пять ортогональных аспектов, объединяющихся в полноценного агента
L1 Tools & Execution
Что агент МОЖЕТ делать. Основа: инструменты дают модели возможности взаимодействовать с миром.
L2 Planning & Coordination
Как организована работа. От простых списков задач до досок задач с зависимостями для нескольких агентов.
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
Удержание контекста в пределах. Стратегии сжатия, позволяющие агентам работать бесконечно без потери связности.
L4 Concurrency
Неблокирующее выполнение. Фоновые потоки и шины уведомлений для параллельной работы.
L5 Collaboration
Координация нескольких агентов. Команды, обмен сообщениями и автономные помощники, которые думают сами за себя.
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
