gitextract_p2krhmdp/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README-ja.md ├── README-zh.md ├── README.md ├── agents/ │ ├── __init__.py │ ├── s01_agent_loop.py │ ├── s02_tool_use.py │ ├── s03_todo_write.py │ ├── s04_subagent.py │ ├── s05_skill_loading.py │ ├── s06_context_compact.py │ ├── s07_task_system.py │ ├── s08_background_tasks.py │ ├── s09_agent_teams.py │ ├── s10_team_protocols.py │ ├── s11_autonomous_agents.py │ ├── s12_worktree_task_isolation.py │ └── s_full.py ├── docs/ │ ├── en/ │ │ ├── s01-the-agent-loop.md │ │ ├── s02-tool-use.md │ │ ├── s03-todo-write.md │ │ ├── s04-subagent.md │ │ ├── s05-skill-loading.md │ │ ├── s06-context-compact.md │ │ ├── s07-task-system.md │ │ ├── s08-background-tasks.md │ │ ├── s09-agent-teams.md │ │ ├── s10-team-protocols.md │ │ ├── s11-autonomous-agents.md │ │ └── s12-worktree-task-isolation.md │ ├── ja/ │ │ ├── s01-the-agent-loop.md │ │ ├── s02-tool-use.md │ │ ├── s03-todo-write.md │ │ ├── s04-subagent.md │ │ ├── s05-skill-loading.md │ │ ├── s06-context-compact.md │ │ ├── s07-task-system.md │ │ ├── s08-background-tasks.md │ │ ├── s09-agent-teams.md │ │ ├── s10-team-protocols.md │ │ ├── s11-autonomous-agents.md │ │ └── s12-worktree-task-isolation.md │ └── zh/ │ ├── s01-the-agent-loop.md │ ├── s02-tool-use.md │ ├── s03-todo-write.md │ ├── s04-subagent.md │ ├── s05-skill-loading.md │ ├── s06-context-compact.md │ ├── s07-task-system.md │ ├── s08-background-tasks.md │ ├── s09-agent-teams.md │ ├── s10-team-protocols.md │ ├── s11-autonomous-agents.md │ └── s12-worktree-task-isolation.md ├── requirements.txt ├── skills/ │ ├── agent-builder/ │ │ ├── SKILL.md │ │ ├── references/ │ │ │ ├── agent-philosophy.md │ │ │ ├── minimal-agent.py │ │ │ ├── subagent-pattern.py │ │ │ └── tool-templates.py │ │ └── scripts/ │ │ └── init_agent.py │ ├── code-review/ │ │ └── SKILL.md │ ├── mcp-builder/ │ │ └── SKILL.md │ └── pdf/ │ └── SKILL.md └── web/ ├── .gitignore ├── README.md ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── scripts/ │ └── extract-content.ts ├── src/ │ ├── app/ │ │ ├── [locale]/ │ │ │ ├── (learn)/ │ │ │ │ ├── [version]/ │ │ │ │ │ ├── client.tsx │ │ │ │ │ ├── diff/ │ │ │ │ │ │ ├── diff-content.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── compare/ │ │ │ │ │ └── page.tsx │ │ │ │ ├── layers/ │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── timeline/ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── globals.css │ │ └── page.tsx │ ├── components/ │ │ ├── architecture/ │ │ │ ├── arch-diagram.tsx │ │ │ ├── design-decisions.tsx │ │ │ ├── execution-flow.tsx │ │ │ └── message-flow.tsx │ │ ├── code/ │ │ │ └── source-viewer.tsx │ │ ├── diff/ │ │ │ ├── code-diff.tsx │ │ │ └── whats-new.tsx │ │ ├── docs/ │ │ │ └── doc-renderer.tsx │ │ ├── layout/ │ │ │ ├── header.tsx │ │ │ └── sidebar.tsx │ │ ├── simulator/ │ │ │ ├── agent-loop-simulator.tsx │ │ │ ├── simulator-controls.tsx │ │ │ └── simulator-message.tsx │ │ ├── timeline/ │ │ │ └── timeline.tsx │ │ ├── ui/ │ │ │ ├── badge.tsx │ │ │ ├── card.tsx │ │ │ └── tabs.tsx │ │ └── visualizations/ │ │ ├── index.tsx │ │ ├── s01-agent-loop.tsx │ │ ├── s02-tool-dispatch.tsx │ │ ├── s03-todo-write.tsx │ │ ├── s04-subagent.tsx │ │ ├── s05-skill-loading.tsx │ │ ├── s06-context-compact.tsx │ │ ├── s07-task-system.tsx │ │ ├── s08-background-tasks.tsx │ │ ├── s09-agent-teams.tsx │ │ ├── s10-team-protocols.tsx │ │ ├── s11-autonomous-agents.tsx │ │ ├── s12-worktree-task-isolation.tsx │ │ └── shared/ │ │ └── step-controls.tsx │ ├── data/ │ │ ├── annotations/ │ │ │ ├── s01.json │ │ │ ├── s02.json │ │ │ ├── s03.json │ │ │ ├── s04.json │ │ │ ├── s05.json │ │ │ ├── s06.json │ │ │ ├── s07.json │ │ │ ├── s08.json │ │ │ ├── s09.json │ │ │ ├── s10.json │ │ │ ├── s11.json │ │ │ └── s12.json │ │ ├── execution-flows.ts │ │ ├── generated/ │ │ │ ├── docs.json │ │ │ └── versions.json │ │ └── scenarios/ │ │ ├── s01.json │ │ ├── s02.json │ │ ├── s03.json │ │ ├── s04.json │ │ ├── s05.json │ │ ├── s06.json │ │ ├── s07.json │ │ ├── s08.json │ │ ├── s09.json │ │ ├── s10.json │ │ ├── s11.json │ │ └── s12.json │ ├── hooks/ │ │ ├── useDarkMode.ts │ │ ├── useSimulator.ts │ │ └── useSteppedVisualization.ts │ ├── i18n/ │ │ └── messages/ │ │ ├── en.json │ │ ├── ja.json │ │ └── zh.json │ ├── lib/ │ │ ├── constants.ts │ │ ├── i18n-server.ts │ │ ├── i18n.tsx │ │ └── utils.ts │ └── types/ │ └── agent-data.ts ├── tsconfig.json └── vercel.json