mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
15 lines
617 B
Text
15 lines
617 B
Text
digraph ImplementAndTest {
|
|
graph [goal="Implement the plan and make tests pass"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
implement [label="Implement", prompt="Read plan.md and implement every step. Write the code and tests to disk."]
|
|
validate [label="Validate", shape=parallelogram, script="python3 -m pytest -v 2>&1 || true"]
|
|
gate [shape=diamond, label="Tests passing?"]
|
|
|
|
start -> implement -> validate -> gate
|
|
gate -> exit [label="Pass", condition="outcome=succeeded"]
|
|
gate -> implement [label="Fix", max_visits=5]
|
|
}
|