mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-12 23:02:41 +00:00
parent
ac42fa8ef0
commit
1c85b4f010
3 changed files with 38 additions and 0 deletions
20
graph.fabro
Normal file
20
graph.fabro
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
digraph GhImplement {
|
||||
graph [
|
||||
goal="Implement a GitHub issue",
|
||||
model_stylesheet="
|
||||
* { model: claude-opus-4-6; }
|
||||
"
|
||||
]
|
||||
rankdir=LR
|
||||
|
||||
start [shape=Mdiamond, label="Start"]
|
||||
exit [shape=Msquare, label="Exit"]
|
||||
|
||||
plan [label="Plan", prompt="Fetch the GitHub issue from the goal using: gh issue view $goal --json title,body,labels,comments\n\nRead the issue title, description, and any comments carefully. Analyze what code changes are needed to resolve the issue.\n\nWrite a detailed implementation plan to plan.md that includes:\n- Summary of the issue\n- Files to create or modify\n- Step-by-step implementation approach\n- Test cases to add or update\n\nThe plan should be specific enough for another agent to implement without seeing the original issue.\n\nRespond with the location of the plan file (plan.md)."]
|
||||
|
||||
implement [label="Implement", shape=house, stack.child_workflow="../implement/workflow.fabro", manager.max_cycles=100]
|
||||
|
||||
start -> plan
|
||||
plan -> implement [fidelity="summary:high"]
|
||||
implement -> exit
|
||||
}
|
||||
13
manifest.json
Normal file
13
manifest.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"run_id": "01KM6RYWXA9TZ4GFKQT99NF7A7",
|
||||
"workflow_name": "GhImplement",
|
||||
"goal": "https://github.com/fabro-sh/fabro/issues/126",
|
||||
"start_time": "2026-03-20T23:23:25.672565Z",
|
||||
"node_count": 4,
|
||||
"edge_count": 3,
|
||||
"run_branch": "fabro/run/01KM6RYWXA9TZ4GFKQT99NF7A7",
|
||||
"base_sha": "09809ad51c9552da09282788379c8f8b373c0e1b",
|
||||
"base_branch": "main",
|
||||
"workflow_slug": "gh-implement",
|
||||
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro"
|
||||
}
|
||||
5
sandbox.json
Normal file
5
sandbox.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"provider": "daytona",
|
||||
"working_directory": "/home/daytona/workspace",
|
||||
"identifier": "fabro-01KM6RYWXA9TZ4GFKQT99NF7A7"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue