⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-03-19 08:59:48 -04:00
parent ba887d1fe5
commit a9d07230a8
3 changed files with 35 additions and 0 deletions

18
graph.fabro Normal file
View file

@ -0,0 +1,18 @@
digraph FullStack {
graph [goal="Full-stack scenario: command, agent, human gate, and goal gate verification"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
setup [label="Setup", shape=parallelogram, script="mkdir -p /tmp/scenario_full && echo ready > /tmp/scenario_full/flag.txt"]
plan [label="Plan", prompt="Read /tmp/scenario_full/flag.txt. Then create a file /tmp/scenario_full/result.txt containing the word PASS.", shape=tab]
approve [label="Approve?", shape=hexagon]
impl [label="Implement", prompt="Create the file /tmp/scenario_full/result.txt containing exactly the word PASS on the first line."]
verify [label="Verify", shape=parallelogram, script="cat /tmp/scenario_full/result.txt", goal_gate=true, retry_target="impl"]
start -> setup -> plan -> approve
approve -> impl [label="[A] Approve"]
approve -> plan [label="[R] Revise"]
impl -> verify -> exit
}

13
manifest.json Normal file
View file

@ -0,0 +1,13 @@
{
"run_id": "01KM32WG9GYX638SCY467AW018",
"workflow_name": "FullStack",
"goal": "Full-stack scenario: command, agent, human gate, and goal gate verification",
"start_time": "2026-03-19T12:59:48.969045Z",
"node_count": 7,
"edge_count": 7,
"run_branch": "fabro/run/01KM32WG9GYX638SCY467AW018",
"base_sha": "10595c9e76ba1be90de1cf49a2a3c183e287d917",
"base_branch": "main",
"workflow_slug": "scenario",
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli"
}

4
sandbox.json Normal file
View file

@ -0,0 +1,4 @@
{
"provider": "local",
"working_directory": "/private/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmpITw1YV/run/worktree"
}