mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-08-06 12:03:37 +08:00
Fix separator inconsistency
This commit is contained in:
BIN
docs/.DS_Store
vendored
Normal file
BIN
docs/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -1,6 +1,6 @@
|
|||||||
# s01: The Agent Loop
|
# 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.
|
> *"One loop & Bash is all you need"* -- one tool + one loop = an agent.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s02: Tool Use
|
# 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.
|
> *"Adding a tool means adding one handler"* -- the loop stays the same; new tools register into the dispatch map.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s03: TodoWrite
|
# 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.
|
> *"An agent without a plan drifts"* -- list the steps first, then execute.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s04: Subagents
|
# 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.
|
> *"Break big tasks down; each subtask gets a clean context"* -- subagents use independent messages[], keeping the main conversation clean.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s05: Skills
|
# 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.
|
> *"Load knowledge when you need it, not upfront"* -- inject via tool_result, not the system prompt.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s07: Task System
|
# 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.
|
> *"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.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s08: Background Tasks
|
# 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.
|
> *"Run slow operations in the background; the agent keeps thinking"* -- daemon threads run commands, inject notifications on completion.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s09: Agent Teams
|
# 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.
|
> *"When the task is too big for one, delegate to teammates"* -- persistent teammates + async mailboxes.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s10: Team Protocols
|
# 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.
|
> *"Teammates need shared communication rules"* -- one request-response pattern drives all negotiation.
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# s11: Autonomous Agents
|
# 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.
|
> *"Teammates scan the board and claim tasks themselves"* -- no need for the lead to assign each one.
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user