mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
parent
e481145f19
commit
748bae911c
3 changed files with 35 additions and 0 deletions
18
graph.fabro
Normal file
18
graph.fabro
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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
|
||||
}
|
||||
13
manifest.json
Normal file
13
manifest.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"run_id": "01KM34GS7JM6D9D392ABDJVMAC",
|
||||
"workflow_name": "HumanGate",
|
||||
"goal": "Test human gate with auto-approve",
|
||||
"start_time": "2026-03-19T13:28:22.227441Z",
|
||||
"node_count": 6,
|
||||
"edge_count": 6,
|
||||
"run_branch": "fabro/run/01KM34GS7JM6D9D392ABDJVMAC",
|
||||
"base_sha": "77698635f21cd4794576014a650b90e3c337c701",
|
||||
"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/.tmpNJdBlG/run/worktree"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue