Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/en/s01-the-agent-loop.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s01: The Agent Loop

`[ s01 ] s02 > s03 > s04 > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`
`[ s01 ] > s02 > s03 > s04 > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`

> *"One loop & Bash is all you need"* -- one tool + one loop = an agent.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s02-tool-use.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s02: Tool Use

`s01 > [ s02 ] s03 > s04 > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`
`s01 > [ s02 ] > s03 > s04 > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`

> *"Adding a tool means adding one handler"* -- the loop stays the same; new tools register into the dispatch map.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s03-todo-write.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s03: TodoWrite

`s01 > s02 > [ s03 ] s04 > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`
`s01 > s02 > [ s03 ] > s04 > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`

> *"An agent without a plan drifts"* -- list the steps first, then execute.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s04-subagent.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s04: Subagents

`s01 > s02 > s03 > [ s04 ] s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`
`s01 > s02 > s03 > [ s04 ] > s05 > s06 | s07 > s08 > s09 > s10 > s11 > s12`

> *"Break big tasks down; each subtask gets a clean context"* -- subagents use independent messages[], keeping the main conversation clean.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s05-skill-loading.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s05: Skills

`s01 > s02 > s03 > s04 > [ s05 ] s06 | s07 > s08 > s09 > s10 > s11 > s12`
`s01 > s02 > s03 > s04 > [ s05 ] > s06 | s07 > s08 > s09 > s10 > s11 > s12`

> *"Load knowledge when you need it, not upfront"* -- inject via tool_result, not the system prompt.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s07-task-system.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s07: Task System

`s01 > s02 > s03 > s04 > s05 > s06 | [ s07 ] s08 > s09 > s10 > s11 > s12`
`s01 > s02 > s03 > s04 > s05 > s06 | [ s07 ] > s08 > s09 > s10 > s11 > s12`

> *"Break big goals into small tasks, order them, persist to disk"* -- a file-based task graph with dependencies, laying the foundation for multi-agent collaboration.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s08-background-tasks.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s08: Background Tasks

`s01 > s02 > s03 > s04 > s05 > s06 | s07 > [ s08 ] s09 > s10 > s11 > s12`
`s01 > s02 > s03 > s04 > s05 > s06 | s07 > [ s08 ] > s09 > s10 > s11 > s12`

> *"Run slow operations in the background; the agent keeps thinking"* -- daemon threads run commands, inject notifications on completion.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s09-agent-teams.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s09: Agent Teams

`s01 > s02 > s03 > s04 > s05 > s06 | s07 > s08 > [ s09 ] s10 > s11 > s12`
`s01 > s02 > s03 > s04 > s05 > s06 | s07 > s08 > [ s09 ] > s10 > s11 > s12`

> *"When the task is too big for one, delegate to teammates"* -- persistent teammates + async mailboxes.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s10-team-protocols.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s10: Team Protocols

`s01 > s02 > s03 > s04 > s05 > s06 | s07 > s08 > s09 > [ s10 ] s11 > s12`
`s01 > s02 > s03 > s04 > s05 > s06 | s07 > s08 > s09 > [ s10 ] > s11 > s12`

> *"Teammates need shared communication rules"* -- one request-response pattern drives all negotiation.
>
Expand Down
2 changes: 1 addition & 1 deletion docs/en/s11-autonomous-agents.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# s11: Autonomous Agents

`s01 > s02 > s03 > s04 > s05 > s06 | s07 > s08 > s09 > s10 > [ s11 ] s12`
`s01 > s02 > s03 > s04 > s05 > s06 | s07 > s08 > s09 > s10 > [ s11 ] > s12`

> *"Teammates scan the board and claim tasks themselves"* -- no need for the lead to assign each one.
>
Expand Down