fabro/test/docs/workflows/human-in-the-loop/hitl-patterns.fabro
Bryan Helmkamp 85db69fdc1 Rename .dot files to .fabro and update all references
Rename 79 workflow files from .dot to .fabro extension across
fabro/workflows/, test/, test/docs/, and files-internal/demo/.
Update TOML configs, Rust production code, test code, and shell
scripts. Backward compat tests in test/attractor/ are unchanged.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-13 22:27:19 -04:00

19 lines
612 B
Text

digraph HitlPatterns {
start [shape=Mdiamond]
plan [label="Plan"]
approve [shape=hexagon, label="Approve Plan"]
implement [label="Implement"]
review [shape=hexagon, label="Review Changes"]
custom [label="Handle Custom"]
exit [shape=Msquare]
start -> plan -> approve
approve -> implement [label="[A] Approve"]
approve -> plan [label="[R] Revise"]
approve -> exit [label="[S] Skip"]
implement -> review
review -> exit [label="[A] Approve"]
review -> plan [label="[R] Revise"]
review -> custom [freeform=true]
custom -> exit
}