mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
parent
23035a29cc
commit
20789fdc50
3 changed files with 172 additions and 0 deletions
162
run.json
Normal file
162
run.json
Normal file
|
|
@ -0,0 +1,162 @@
|
|||
{
|
||||
"run_id": "01KMQVJVPX7HJXFHJAMD95DTGM",
|
||||
"created_at": "2026-03-27T14:36:14.943796Z",
|
||||
"config": {
|
||||
"version": 1,
|
||||
"goal": "Run two commands in sequence",
|
||||
"llm": {
|
||||
"model": "claude-sonnet-4-6",
|
||||
"provider": "anthropic",
|
||||
"fallbacks": null
|
||||
},
|
||||
"sandbox": {
|
||||
"provider": "local",
|
||||
"preserve": null,
|
||||
"devcontainer": null,
|
||||
"local": null,
|
||||
"daytona": {
|
||||
"auto_stop_interval": 30,
|
||||
"labels": {
|
||||
"repo": "fabro-sh/fabro"
|
||||
},
|
||||
"snapshot": {
|
||||
"name": "fabro-v6",
|
||||
"cpu": 4,
|
||||
"memory": 8,
|
||||
"disk": 20,
|
||||
"dockerfile": "FROM ubuntu:24.04\n\nRUN apt-get update && apt-get install -y --no-install-recommends curl git ca-certificates build-essential pkg-config libssl-dev unzip python3 && rm -rf /var/lib/apt/lists/*\n\n# GitHub CLI\nRUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main\" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null && apt-get update && apt-get install -y --no-install-recommends gh && rm -rf /var/lib/apt/lists/*\n\n# Rust\nRUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y\nENV PATH=\"/root/.cargo/bin:${PATH}\"\nRUN cargo install cargo-nextest --locked\nENV CARGO_INCREMENTAL=0\n\n# Bun\nRUN curl -fsSL https://bun.sh/install | bash\nENV PATH=\"/root/.bun/bin:${PATH}\"\n\nWORKDIR /root\n"
|
||||
},
|
||||
"network": null,
|
||||
"skip_clone": false
|
||||
},
|
||||
"ssh": null,
|
||||
"env": null
|
||||
},
|
||||
"pull_request": {
|
||||
"enabled": true,
|
||||
"draft": false,
|
||||
"auto_merge": false,
|
||||
"merge_strategy": "squash"
|
||||
},
|
||||
"hooks": [
|
||||
{
|
||||
"name": "cargo-fmt",
|
||||
"event": "post_tool_use",
|
||||
"command": "cargo fmt",
|
||||
"matcher": "write_file|edit_file|apply_patch",
|
||||
"blocking": true,
|
||||
"timeout_ms": null,
|
||||
"sandbox": null
|
||||
}
|
||||
],
|
||||
"verbose": false,
|
||||
"dry_run": false,
|
||||
"auto_approve": true,
|
||||
"no_retro": true,
|
||||
"features": {
|
||||
"session_sandboxes": false,
|
||||
"retros": false
|
||||
},
|
||||
"log": {
|
||||
"level": "debug"
|
||||
},
|
||||
"git": {
|
||||
"provider": "github",
|
||||
"app_id": "2993730",
|
||||
"client_id": "Iv23li3Pu4pCpsmPopVN",
|
||||
"slug": "brynary-fabro",
|
||||
"author": {
|
||||
"name": null,
|
||||
"email": null
|
||||
},
|
||||
"webhooks": null
|
||||
},
|
||||
"fabro": {
|
||||
"root": "fabro/"
|
||||
}
|
||||
},
|
||||
"graph": {
|
||||
"name": "CommandPipeline",
|
||||
"nodes": {
|
||||
"exit": {
|
||||
"id": "exit",
|
||||
"attrs": {
|
||||
"label": {
|
||||
"String": "Exit"
|
||||
},
|
||||
"shape": {
|
||||
"String": "Msquare"
|
||||
}
|
||||
}
|
||||
},
|
||||
"step1": {
|
||||
"id": "step1",
|
||||
"attrs": {
|
||||
"script": {
|
||||
"String": "echo hello-from-step1"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
},
|
||||
"label": {
|
||||
"String": "Step 1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"step2": {
|
||||
"id": "step2",
|
||||
"attrs": {
|
||||
"label": {
|
||||
"String": "Step 2"
|
||||
},
|
||||
"script": {
|
||||
"String": "echo hello-from-step2"
|
||||
},
|
||||
"shape": {
|
||||
"String": "parallelogram"
|
||||
}
|
||||
}
|
||||
},
|
||||
"start": {
|
||||
"id": "start",
|
||||
"attrs": {
|
||||
"shape": {
|
||||
"String": "Mdiamond"
|
||||
},
|
||||
"label": {
|
||||
"String": "Start"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"edges": [
|
||||
{
|
||||
"from": "start",
|
||||
"to": "step1",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "step1",
|
||||
"to": "step2",
|
||||
"attrs": {}
|
||||
},
|
||||
{
|
||||
"from": "step2",
|
||||
"to": "exit",
|
||||
"attrs": {}
|
||||
}
|
||||
],
|
||||
"attrs": {
|
||||
"goal": {
|
||||
"String": "Run two commands in sequence"
|
||||
},
|
||||
"rankdir": {
|
||||
"String": "LR"
|
||||
}
|
||||
}
|
||||
},
|
||||
"workflow_slug": "command_pipeline",
|
||||
"working_directory": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli",
|
||||
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro/lib/crates/fabro-cli",
|
||||
"base_branch": "fabro-core"
|
||||
}
|
||||
4
sandbox.json
Normal file
4
sandbox.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"provider": "local",
|
||||
"working_directory": "/var/folders/nm/bd2dwzy52t1ckn3tklsfmy1c0000gn/T/.tmp5sGVeR/run/worktree"
|
||||
}
|
||||
6
start.json
Normal file
6
start.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"run_id": "01KMQVJVPX7HJXFHJAMD95DTGM",
|
||||
"start_time": "2026-03-27T14:36:16.495965Z",
|
||||
"run_branch": "fabro/run/01KMQVJVPX7HJXFHJAMD95DTGM",
|
||||
"base_sha": "401c192d276de804d496ad1bdfe0e82789bc5ed2"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue