mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +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>
13 lines
555 B
Text
13 lines
555 B
Text
digraph CommandAgentMixed {
|
|
graph [goal="Verify sandbox filesystem is shared across command and agent nodes"]
|
|
rankdir=LR
|
|
|
|
start [shape=Mdiamond, label="Start"]
|
|
exit [shape=Msquare, label="Exit"]
|
|
|
|
setup [label="Setup", shape=parallelogram, script="echo SCENARIO_FLAG_42 > /tmp/scenario_flag.txt"]
|
|
work [label="Work", prompt="Read the file /tmp/scenario_flag.txt and tell me what it contains."]
|
|
verify [label="Verify", shape=parallelogram, script="cat /tmp/scenario_flag.txt"]
|
|
|
|
start -> setup -> work -> verify -> exit
|
|
}
|