From 81cc25c6bb82110415ffb348de8fa1721545bce6 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 13 Jan 2026 09:13:24 +0800 Subject: [PATCH] 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. --- agent/autonomous/DESIGN.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/agent/autonomous/DESIGN.md b/agent/autonomous/DESIGN.md index eb81832d..52848eaa 100644 --- a/agent/autonomous/DESIGN.md +++ b/agent/autonomous/DESIGN.md @@ -40,7 +40,8 @@ flowchart TB end subgraph Executor["Executor"] - P0["P0: Inspiration
(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