mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-15 23:32:46 +00:00
parent
f747d277d9
commit
65c5e579f4
3 changed files with 35 additions and 0 deletions
19
graph.fabro
Normal file
19
graph.fabro
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
digraph Styled {
|
||||
graph [
|
||||
goal="Build a styled pipeline",
|
||||
model_stylesheet="
|
||||
* { model: claude-sonnet-4-5;}
|
||||
.code { model: claude-opus-4-6; }
|
||||
#critical_review { model: gpt-5.2;reasoning_effort: high; }
|
||||
"
|
||||
]
|
||||
|
||||
start [shape=Mdiamond]
|
||||
exit [shape=Msquare]
|
||||
|
||||
plan [label="Plan", class="planning"]
|
||||
implement [label="Implement", class="code"]
|
||||
critical_review [label="Critical Review", class="code"]
|
||||
|
||||
start -> plan -> implement -> critical_review -> exit
|
||||
}
|
||||
12
manifest.json
Normal file
12
manifest.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"run_id": "01KKQ2KT7A348CZBSXSXR95XWW",
|
||||
"workflow_name": "Styled",
|
||||
"goal": "Build a styled pipeline",
|
||||
"start_time": "2026-03-14T21:04:10.873955Z",
|
||||
"node_count": 5,
|
||||
"edge_count": 4,
|
||||
"run_branch": "fabro/run/01KKQ2KT7A348CZBSXSXR95XWW",
|
||||
"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-01KKQ2KT7A348CZBSXSXR95XWW/worktree"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue