mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
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>
19 lines
612 B
Text
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
|
|
}
|