mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
parent
8a8497b011
commit
e7da70a445
3 changed files with 28 additions and 0 deletions
12
graph.fabro
Normal file
12
graph.fabro
Normal file
|
|
@ -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
|
||||
}
|
||||
11
manifest.json
Normal file
11
manifest.json
Normal file
|
|
@ -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"
|
||||
}
|
||||
5
sandbox.json
Normal file
5
sandbox.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"provider": "daytona",
|
||||
"working_directory": "/home/daytona/workspace",
|
||||
"identifier": "fabro-01KKPHR5BRDJFSPTGW05SCH88D"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue