From 1c85b4f010da0d195896fd3a52c125da1dc9e39f Mon Sep 17 00:00:00 2001 From: Fabro Date: Fri, 20 Mar 2026 19:23:25 -0400 Subject: [PATCH] init run MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ⚒️ Generated with [Fabro](https://fabro.sh) --- graph.fabro | 20 ++++++++++++++++++++ manifest.json | 13 +++++++++++++ sandbox.json | 5 +++++ 3 files changed, 38 insertions(+) create mode 100644 graph.fabro create mode 100644 manifest.json create mode 100644 sandbox.json diff --git a/graph.fabro b/graph.fabro new file mode 100644 index 000000000..2808a47f5 --- /dev/null +++ b/graph.fabro @@ -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 +} diff --git a/manifest.json b/manifest.json new file mode 100644 index 000000000..c9e08c2fc --- /dev/null +++ b/manifest.json @@ -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" +} \ No newline at end of file diff --git a/sandbox.json b/sandbox.json new file mode 100644 index 000000000..2f6e414c4 --- /dev/null +++ b/sandbox.json @@ -0,0 +1,5 @@ +{ + "provider": "daytona", + "working_directory": "/home/daytona/workspace", + "identifier": "fabro-01KM6RYWXA9TZ4GFKQT99NF7A7" +} \ No newline at end of file