mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-20 00:11:34 +00:00
- Show tool args in dim parenthetical: read_file(CLAUDE.md) - Shorten CWD-relative paths in tool call display - Show elapsed time on completed tool calls - Emit StageStarted/StageCompleted for terminal (exit) nodes - Add --no-retro flag to skip retro generation - Add demo/02-tool-use.dot, renumber existing demos 03-07 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
389 B
Text
11 lines
389 B
Text
digraph Hello {
|
|
graph [goal="Write a haiku about software workflows"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
compose [label="Compose", prompt="Write a haiku (5-7-5 syllable) about software workflows. Output only the haiku, nothing else.", codergen_mode="one_shot", reasoning_effort="low"]
|
|
|
|
start -> compose -> exit
|
|
}
|