mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
parent
1b04a88e0d
commit
0ebd9adf08
3 changed files with 35 additions and 0 deletions
18
graph.fabro
Normal file
18
graph.fabro
Normal 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
13
manifest.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"run_id": "01KM35MF3W71W1Z3WYCSPPBW83",
|
||||
"workflow_name": "FullStack",
|
||||
"goal": "Full-stack scenario: command, agent, human gate, and goal gate verification",
|
||||
"start_time": "2026-03-19T13:47:51.520771Z",
|
||||
"node_count": 7,
|
||||
"edge_count": 7,
|
||||
"run_branch": "fabro/run/01KM35MF3W71W1Z3WYCSPPBW83",
|
||||
"base_sha": "a7a6c53c9b09e231ba0e474d14c3a10280570c74",
|
||||
"base_branch": "main",
|
||||
"workflow_slug": "scenario",
|
||||
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli"
|
||||
}
|
||||
4
sandbox.json
Normal file
4
sandbox.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"provider": "local",
|
||||
"working_directory": "/private/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmpS3nJrT/run/worktree"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue