mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-14 23:22:51 +00:00
210 lines
No EOL
6.2 KiB
JSON
210 lines
No EOL
6.2 KiB
JSON
{
|
|
"spec": {
|
|
"run_id": "01KQ0ABZ6MZFGG1T1D2VXNBJJ0",
|
|
"settings": {
|
|
"project": {
|
|
"name": null,
|
|
"description": null,
|
|
"directory": ".",
|
|
"metadata": {}
|
|
},
|
|
"workflow": {
|
|
"name": null,
|
|
"description": null,
|
|
"graph": "workflow.fabro",
|
|
"metadata": {}
|
|
},
|
|
"run": {
|
|
"goal": {
|
|
"type": "inline",
|
|
"value": "Say hello and demonstrate a basic Fabro workflow"
|
|
},
|
|
"working_dir": null,
|
|
"metadata": {},
|
|
"inputs": {},
|
|
"model": {
|
|
"provider": "anthropic",
|
|
"name": "claude-sonnet-4-6",
|
|
"fallbacks": []
|
|
},
|
|
"git": {
|
|
"author": null
|
|
},
|
|
"prepare": {
|
|
"commands": [],
|
|
"timeout_ms": 300000
|
|
},
|
|
"execution": {
|
|
"mode": "normal",
|
|
"approval": "prompt",
|
|
"retros": true
|
|
},
|
|
"checkpoint": {
|
|
"exclude_globs": []
|
|
},
|
|
"sandbox": {
|
|
"provider": "local",
|
|
"preserve": true,
|
|
"devcontainer": false,
|
|
"env": {},
|
|
"local": {
|
|
"worktree_mode": "clean"
|
|
},
|
|
"daytona": {
|
|
"auto_stop_interval": 30,
|
|
"labels": {
|
|
"repo": "fabro-sh/fabro"
|
|
},
|
|
"snapshot": {
|
|
"name": "fabro-v7",
|
|
"cpu": 8,
|
|
"memory_gb": 16,
|
|
"disk_gb": 20,
|
|
"dockerfile": {
|
|
"type": "inline",
|
|
"value": "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
|
|
}
|
|
},
|
|
"notifications": {},
|
|
"interviews": {
|
|
"provider": null,
|
|
"slack": null,
|
|
"discord": null,
|
|
"teams": null
|
|
},
|
|
"agent": {
|
|
"permissions": null,
|
|
"mcps": {}
|
|
},
|
|
"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
|
|
}
|
|
],
|
|
"scm": {
|
|
"provider": null,
|
|
"owner": null,
|
|
"repository": null,
|
|
"github": null
|
|
},
|
|
"pull_request": {
|
|
"enabled": true,
|
|
"draft": false,
|
|
"auto_merge": false,
|
|
"merge_strategy": "squash"
|
|
},
|
|
"artifacts": {
|
|
"include": []
|
|
}
|
|
}
|
|
},
|
|
"graph": {
|
|
"name": "Hello",
|
|
"nodes": {
|
|
"exit": {
|
|
"id": "exit",
|
|
"attrs": {
|
|
"shape": {
|
|
"String": "Msquare"
|
|
},
|
|
"label": {
|
|
"String": "Exit"
|
|
}
|
|
}
|
|
},
|
|
"greet": {
|
|
"id": "greet",
|
|
"attrs": {
|
|
"label": {
|
|
"String": "Greet"
|
|
},
|
|
"prompt": {
|
|
"String": "Print a listing of the top-level files and directories in this repo."
|
|
}
|
|
}
|
|
},
|
|
"start": {
|
|
"id": "start",
|
|
"attrs": {
|
|
"label": {
|
|
"String": "Start"
|
|
},
|
|
"shape": {
|
|
"String": "Mdiamond"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"edges": [
|
|
{
|
|
"from": "start",
|
|
"to": "greet",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "greet",
|
|
"to": "exit",
|
|
"attrs": {}
|
|
}
|
|
],
|
|
"attrs": {
|
|
"goal": {
|
|
"String": "Say hello and demonstrate a basic Fabro workflow"
|
|
},
|
|
"rankdir": {
|
|
"String": "LR"
|
|
}
|
|
}
|
|
},
|
|
"workflow_slug": "hello",
|
|
"working_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
|
"host_repo_path": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
|
"repo_origin_url": "https://github.com/fabro-sh/fabro",
|
|
"base_branch": "main",
|
|
"provenance": {
|
|
"server": {
|
|
"version": "0.213.0-nightly.0"
|
|
},
|
|
"client": {
|
|
"user_agent": "fabro-cli/0.213.0-nightly.0",
|
|
"name": "fabro-cli",
|
|
"version": "0.213.0-nightly.0"
|
|
},
|
|
"subject": {
|
|
"login": "dev",
|
|
"auth_method": "dev_token"
|
|
}
|
|
},
|
|
"manifest_blob": "730c3cf7151fbad7eb23f45e2fe875a6a306f184ae177eacc52321c8373b2f57",
|
|
"definition_blob": "8e4620be8ef1236135d34ea602e73fd9ec5f0db88681ea784df87105d9f0481a"
|
|
},
|
|
"graph_source": "digraph Hello {\n graph [goal=\"Say hello and demonstrate a basic Fabro workflow\"]\n rankdir=LR\n\n start [shape=Mdiamond, label=\"Start\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n greet [label=\"Greet\", prompt=\"Print a listing of the top-level files and directories in this repo.\"]\n\n start -> greet -> exit\n}\n",
|
|
"start": null,
|
|
"status": {
|
|
"kind": "starting"
|
|
},
|
|
"status_updated_at": "2026-04-24T17:59:56.917193Z",
|
|
"pending_control": null,
|
|
"checkpoint": null,
|
|
"checkpoints": [],
|
|
"conclusion": null,
|
|
"retro": null,
|
|
"retro_prompt": null,
|
|
"retro_response": null,
|
|
"sandbox": null,
|
|
"final_patch": null,
|
|
"pull_request": null,
|
|
"superseded_by": null,
|
|
"pending_interviews": {},
|
|
"nodes": {}
|
|
} |