diff --git a/graph.fabro b/graph.fabro new file mode 100644 index 000000000..ce512c3a8 --- /dev/null +++ b/graph.fabro @@ -0,0 +1,12 @@ +digraph RewindTest { + graph [goal="Create a hello.txt file, then verify it exists"] + rankdir=LR + + start [shape=Mdiamond, label="Start"] + exit [shape=Msquare, label="Exit"] + + create [label="Create File", prompt="Create a file called hello.txt in the current directory with the content 'Hello from Fabro'. Use the Write tool."] + verify [label="Verify File", shape=parallelogram, script="cat hello.txt 2>&1"] + + start -> create -> verify -> exit +} diff --git a/manifest.json b/manifest.json new file mode 100644 index 000000000..57fbf1cd5 --- /dev/null +++ b/manifest.json @@ -0,0 +1,11 @@ +{ + "run_id": "01KKPHR5BRDJFSPTGW05SCH88D", + "workflow_name": "RewindTest", + "goal": "Create a hello.txt file, then verify it exists", + "start_time": "2026-03-14T16:09:31.517315Z", + "node_count": 4, + "edge_count": 3, + "run_branch": "arc/run/01KKPHR5BRDJFSPTGW05SCH88D", + "base_sha": "0347d5bf0d747c25b43d4a5c68b077b1c7a9930e", + "base_branch": "main" +} \ No newline at end of file diff --git a/sandbox.json b/sandbox.json new file mode 100644 index 000000000..ad7cb65c6 --- /dev/null +++ b/sandbox.json @@ -0,0 +1,5 @@ +{ + "provider": "daytona", + "working_directory": "/home/daytona/workspace", + "identifier": "fabro-01KKPHR5BRDJFSPTGW05SCH88D" +} \ No newline at end of file