mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
parent
458bb70e94
commit
8a6459af80
3 changed files with 36 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": "01KMBJVE3Q1RQ8VAB3F9G8G0VD",
|
||||
"workflow_name": "HumanGate",
|
||||
"goal": "Test human gate with auto-approve",
|
||||
"start_time": "2026-03-22T20:12:51.780055Z",
|
||||
"node_count": 6,
|
||||
"edge_count": 6,
|
||||
"run_branch": "fabro/run/01KMBJVE3Q1RQ8VAB3F9G8G0VD",
|
||||
"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
5
sandbox.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"provider": "daytona",
|
||||
"working_directory": "/home/daytona/workspace",
|
||||
"identifier": "fabro-01KMBJVE3Q1RQ8VAB3F9G8G0VD"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue