mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-15 23:32:46 +00:00
23 lines
864 B
Text
23 lines
864 B
Text
digraph sync {
|
|
graph [
|
|
goal="Detect and resolve drift between product docs, architecture docs, and code",
|
|
label="Sync"
|
|
]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
detect [label="Detect Drift", prompt="@prompts/sync/detect.md", reasoning_effort="high"]
|
|
propose [label="Propose Changes", prompt="@prompts/sync/propose.md"]
|
|
review [shape=hexagon, label="Review Changes"]
|
|
apply [label="Apply Changes", prompt="@prompts/sync/apply.md"]
|
|
|
|
start -> detect
|
|
detect -> exit [condition="context.drift_found=false", label="No drift"]
|
|
detect -> propose [condition="context.drift_found=true", label="Drift found"]
|
|
propose -> review
|
|
review -> apply [label="[A] Accept"]
|
|
review -> propose [label="[R] Revise"]
|
|
apply -> exit
|
|
}
|