⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-03-22 16:12:53 -04:00
parent d4f43d2c52
commit 834fdd873f
3 changed files with 36 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": "01KMBJVDZAQHS05N3B6AQF67TG",
"workflow_name": "FullStack",
"goal": "Full-stack scenario: command, agent, human gate, and goal gate verification",
"start_time": "2026-03-22T20:12:53.747356Z",
"node_count": 7,
"edge_count": 7,
"run_branch": "fabro/run/01KMBJVDZAQHS05N3B6AQF67TG",
"base_sha": "04320ff5f2f4a21a809ec9dc29c72c6bed3af156",
"base_branch": "issue-135",
"workflow_slug": "run",
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli"
}

5
sandbox.json Normal file
View file

@ -0,0 +1,5 @@
{
"provider": "daytona",
"working_directory": "/home/daytona/workspace",
"identifier": "fabro-01KMBJVDZAQHS05N3B6AQF67TG"
}