⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-03-19 08:59:48 -04:00
parent ba887d1fe5
commit 5516d0b8e4
3 changed files with 29 additions and 0 deletions

12
graph.fabro Normal file
View file

@ -0,0 +1,12 @@
digraph CommandPipeline {
graph [goal="Run two commands in sequence"]
rankdir=LR
start [shape=Mdiamond, label="Start"]
exit [shape=Msquare, label="Exit"]
step1 [label="Step 1", shape=parallelogram, script="echo hello-from-step1"]
step2 [label="Step 2", shape=parallelogram, script="echo hello-from-step2"]
start -> step1 -> step2 -> exit
}

13
manifest.json Normal file
View file

@ -0,0 +1,13 @@
{
"run_id": "01KM32WG9K5WNRTYJKBBV4Z61P",
"workflow_name": "CommandPipeline",
"goal": "Run two commands in sequence",
"start_time": "2026-03-19T12:59:48.963088Z",
"node_count": 4,
"edge_count": 3,
"run_branch": "fabro/run/01KM32WG9K5WNRTYJKBBV4Z61P",
"base_sha": "10595c9e76ba1be90de1cf49a2a3c183e287d917",
"base_branch": "main",
"workflow_slug": "scenario",
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli"
}

4
sandbox.json Normal file
View file

@ -0,0 +1,4 @@
{
"provider": "local",
"working_directory": "/private/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmpoLgl5f/run/worktree"
}