mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-08 22:21:45 +00:00
Add coverage for validate, model list, workflow list, doctor, exec, ps, inspect, logs, rm, system df, asset list, asset cp, and cp. Uses HOME isolation for run lifecycle tests and synthetic assets for asset/cp testing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
598 B
Text
18 lines
598 B
Text
digraph HumanGate {
|
|
graph [goal="Test human gate with auto-approve"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
draft [label="Draft", prompt="Write a short greeting message.", shape=tab]
|
|
approve [label="Approve?", shape=hexagon]
|
|
ship [label="Ship", shape=parallelogram, script="echo shipped"]
|
|
revise [label="Revise", prompt="Revise the greeting.", shape=tab]
|
|
|
|
start -> draft -> approve
|
|
approve -> ship [label="[A] Approve"]
|
|
approve -> revise [label="[R] Revise"]
|
|
ship -> exit
|
|
revise -> draft
|
|
}
|