Update Execution Flow in Autonomous Agent Design Document to Include Trigger Decision Point

- Added a decision point for triggers in the execution flow diagram, clarifying the paths for schedule and human/event triggers.
- Revised the connections in the flowchart to reflect the new structure, ensuring a clear distinction between the Inspiration phase and goal generation based on trigger types.
- Enhanced the overall clarity of the document by improving the representation of the agent's operational phases.
This commit is contained in:
Max 2026-01-13 09:13:24 +08:00
parent a9c1eb9bf5
commit 81cc25c6bb

View file

@ -40,7 +40,8 @@ flowchart TB
end
subgraph Executor["Executor"]
P0["P0: Inspiration<br/>(Schedule only)"]
TT{"Trigger?"}
P0["P0: Inspiration"]
P1["P1: Goals"]
P2["P2: Tasks"]
P3["P3: Run"]
@ -62,8 +63,9 @@ flowchart TB
Dedup -->|OK| Queue
Dedup -->|Dup| Cache
Queue --> W1 & W2 & W3
W1 --> P0
W2 & W3 -.->|Human/Event| P1
W1 & W2 & W3 --> TT
TT -->|Schedule| P0
TT -->|Human/Event| P1
P0 --> P1 --> P2 --> P3 --> P4 --> P5
P5 --> KB & DB & Job
KB -.->|History| P0