mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-12 23:02:41 +00:00
parent
f747d277d9
commit
0ceb5bb8ce
3 changed files with 32 additions and 0 deletions
16
graph.fabro
Normal file
16
graph.fabro
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
digraph Branch {
|
||||
graph [goal="Implement and validate a feature"]
|
||||
rankdir=LR
|
||||
node [shape=box, timeout="900s"]
|
||||
|
||||
start [shape=Mdiamond, label="Start"]
|
||||
exit [shape=Msquare, label="Exit"]
|
||||
plan [label="Plan", prompt="Plan the implementation for: $goal"]
|
||||
implement [label="Implement", prompt="Implement the plan", goal_gate=true]
|
||||
validate [label="Validate", prompt="Run tests"]
|
||||
gate [shape=diamond, label="Tests passing?"]
|
||||
|
||||
start -> plan -> implement -> validate -> gate
|
||||
gate -> exit [label="Yes", condition="outcome=success"]
|
||||
gate -> implement [label="No"]
|
||||
}
|
||||
12
manifest.json
Normal file
12
manifest.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"run_id": "01KKQ2KT7916BT652VW9CPDMV5",
|
||||
"workflow_name": "Branch",
|
||||
"goal": "Implement and validate a feature",
|
||||
"start_time": "2026-03-14T21:04:10.860747Z",
|
||||
"node_count": 6,
|
||||
"edge_count": 6,
|
||||
"run_branch": "fabro/run/01KKQ2KT7916BT652VW9CPDMV5",
|
||||
"base_sha": "312bef9b877f49abf4a2f34679f564826061b0d9",
|
||||
"base_branch": "main",
|
||||
"workflow_slug": "test"
|
||||
}
|
||||
4
sandbox.json
Normal file
4
sandbox.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"provider": "local",
|
||||
"working_directory": "/Users/bhelmkamp/.fabro/runs/20260314-01KKQ2KT7916BT652VW9CPDMV5/worktree"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue