학습 경로
s01에서 s12까지: 진행형 에이전트 설계
레이어 범례
The Agent LoopBash is All You Need
“The minimal agent kernel is a while loop + one tool”
자세히 알아보기ToolsOne Handler Per Tool
“The loop stays the same; new tools register into the dispatch map”
자세히 알아보기TodoWritePlan Before You Act
“An agent without a plan drifts; list the steps first, then execute”
자세히 알아보기SubagentsClean Context Per Subtask
“Subagents use independent messages[], keeping the main conversation clean”
자세히 알아보기SkillsLoad on Demand
“Inject knowledge via tool_result when needed, not upfront in the system prompt”
자세히 알아보기CompactThree-Layer Compression
“Context will fill up; three-layer compression strategy enables infinite sessions”
자세히 알아보기TasksTask Graph + Dependencies
“A file-based task graph with ordering, parallelism, and dependencies -- the coordination backbone for multi-agent work”
자세히 알아보기Background TasksBackground Threads + Notifications
“Run slow operations in the background; the agent keeps thinking ahead”
자세히 알아보기Agent TeamsTeammates + Mailboxes
“When one agent can't finish, delegate to persistent teammates via async mailboxes”
자세히 알아보기Team ProtocolsShared Communication Rules
“One request-response pattern drives all team negotiation”
자세히 알아보기Autonomous AgentsScan Board, Claim Tasks
“Teammates scan the board and claim tasks themselves; no need for the lead to assign each one”
자세히 알아보기Worktree + Task IsolationIsolate by Directory
“Each works in its own directory; tasks manage goals, worktrees manage directories, bound by ID”
자세히 알아보기