From fd3a27f5926168bb9e52d887e89057d06cf75837 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Fri, 13 Mar 2026 12:41:23 -0400 Subject: [PATCH] tweak repl workflow --- fabro/workflows/repl/workflow.dot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fabro/workflows/repl/workflow.dot b/fabro/workflows/repl/workflow.dot index 787657cb5..e7984d4aa 100644 --- a/fabro/workflows/repl/workflow.dot +++ b/fabro/workflows/repl/workflow.dot @@ -3,9 +3,10 @@ digraph REPL { rankdir=LR start [shape=Mdiamond, label="Start"] + exit [shape=Msquare, label="Exit"] prompt [shape=hexagon, label="Enter prompt"] - agent [label="Agent", fidelity="summary:high", prompt="Execute the user's request. Their prompt is in the context from the previous human gate."] + agent [shape=tab, label="Agent", fidelity="summary:high", prompt="Execute the user's request. Their prompt is in the current context (human.gate.text) from the previous human gate. (Ignore diagnostic information about the pipeline and stages -- just talk normally to the user like a friendly assistant.)"] start -> prompt prompt -> agent [freeform=true]