mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-05 08:10:39 +00:00
370 lines
No EOL
11 KiB
JSON
370 lines
No EOL
11 KiB
JSON
{
|
|
"spec": {
|
|
"run_id": "01KQF4WN966XC57QWCEC1QYDEV",
|
|
"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": "docker",
|
|
"preserve": false,
|
|
"devcontainer": false,
|
|
"env": {},
|
|
"local": {
|
|
"worktree_mode": "always"
|
|
},
|
|
"docker": {
|
|
"image": "buildpack-deps:noble",
|
|
"network_mode": null,
|
|
"memory_limit": 4000000000,
|
|
"cpu_quota": 200000,
|
|
"env_vars": {},
|
|
"skip_clone": false
|
|
},
|
|
"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": [],
|
|
"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": "Add a haiku to the README"
|
|
}
|
|
}
|
|
},
|
|
"start": {
|
|
"id": "start",
|
|
"attrs": {
|
|
"shape": {
|
|
"String": "Mdiamond"
|
|
},
|
|
"label": {
|
|
"String": "Start"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"edges": [
|
|
{
|
|
"from": "start",
|
|
"to": "greet",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "greet",
|
|
"to": "exit",
|
|
"attrs": {}
|
|
}
|
|
],
|
|
"attrs": {
|
|
"rankdir": {
|
|
"String": "LR"
|
|
},
|
|
"goal": {
|
|
"String": "Say hello and demonstrate a basic Fabro workflow"
|
|
}
|
|
}
|
|
},
|
|
"workflow_slug": "hello",
|
|
"source_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
|
"provenance": {
|
|
"server": {
|
|
"version": "0.219.0-nightly.0"
|
|
},
|
|
"client": {
|
|
"user_agent": "fabro-cli/0.219.0-nightly.0",
|
|
"name": "fabro-cli",
|
|
"version": "0.219.0-nightly.0"
|
|
},
|
|
"subject": {
|
|
"login": "brynary",
|
|
"auth_method": "github"
|
|
}
|
|
},
|
|
"manifest_blob": "ec9b847313ede8bd6ca019bcffeb0a4e2fa27020913c58e83e6f2203dc52dd9e",
|
|
"definition_blob": "17ac72de38b73efd9f53523bb97f5c33a1f3cc7be6e5547227833a0f871834b2",
|
|
"git": {
|
|
"origin_url": "https://github.com/fabro-sh/fabro",
|
|
"branch": "main",
|
|
"sha": "c8185eaee6797e5f48963fcfff688838c5ff497d",
|
|
"dirty": "dirty",
|
|
"push_outcome": {
|
|
"type": "not_attempted"
|
|
}
|
|
},
|
|
"in_place": false
|
|
},
|
|
"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=\"Add a haiku to the README\"]\n\n start -> greet -> exit\n}\n",
|
|
"start": {
|
|
"run_id": "01KQF4WN966XC57QWCEC1QYDEV",
|
|
"start_time": "2026-04-30T12:12:58.089567081Z",
|
|
"run_branch": "fabro/run/01KQF4WN966XC57QWCEC1QYDEV",
|
|
"base_sha": "c8185eaee6797e5f48963fcfff688838c5ff497d"
|
|
},
|
|
"status": {
|
|
"kind": "running"
|
|
},
|
|
"status_updated_at": "2026-04-30T12:12:58.089599748Z",
|
|
"pending_control": null,
|
|
"checkpoint": {
|
|
"timestamp": "2026-04-30T12:13:10.124448962Z",
|
|
"current_node": "greet",
|
|
"completed_nodes": [
|
|
"start",
|
|
"greet"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"failure_signature": "",
|
|
"graph.rankdir": "LR",
|
|
"last_stage": "greet",
|
|
"internal.run_id": "01KQF4WN966XC57QWCEC1QYDEV",
|
|
"response.greet": "Added a haiku to the bottom of the README:\n\n```\nAgents in a graph —\neach stage a deliberate step.\nCode ships while you sleep.\n```\n\nIt nods to Fabro's core ideas — workflow graphs, deliberate staged execution, and the promise of autonomous overnight runs.",
|
|
"internal.work_dir": "/workspace",
|
|
"internal.fidelity": "compact",
|
|
"current_node": "greet",
|
|
"graph.goal": "Say hello and demonstrate a basic Fabro workflow",
|
|
"internal.retry_count.start": 0,
|
|
"internal.thread_id": "start",
|
|
"thread.start.current_node": "greet",
|
|
"internal.retry_count.greet": 0,
|
|
"outcome": "succeeded",
|
|
"last_response": "Added a haiku to the bottom of the README:\n\n```\nAgents in a graph —\neach stage a deliberate step.\nCode ships while you sleep.\n```\n\nIt nods to Fabro's core ideas — workflow graphs, deliberate stage",
|
|
"failure_class": "",
|
|
"internal.node_visit_count": 1
|
|
},
|
|
"node_outcomes": {
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
},
|
|
"greet": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"last_stage": "greet",
|
|
"last_response": "Added a haiku to the bottom of the README:\n\n```\nAgents in a graph —\neach stage a deliberate step.\nCode ships while you sleep.\n```\n\nIt nods to Fabro's core ideas — workflow graphs, deliberate stage",
|
|
"response.greet": "Added a haiku to the bottom of the README:\n\n```\nAgents in a graph —\neach stage a deliberate step.\nCode ships while you sleep.\n```\n\nIt nods to Fabro's core ideas — workflow graphs, deliberate staged execution, and the promise of autonomous overnight runs."
|
|
},
|
|
"notes": "Stage completed: greet",
|
|
"usage": {
|
|
"input": {
|
|
"usage": {
|
|
"model": {
|
|
"provider": "anthropic",
|
|
"model_id": "claude-sonnet-4-6"
|
|
},
|
|
"tokens": {
|
|
"input_tokens": 4703,
|
|
"output_tokens": 346,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 15523,
|
|
"cache_write_tokens": 19730
|
|
}
|
|
},
|
|
"facts": {
|
|
"provider": "anthropic",
|
|
"cache_write_5m_tokens": 19730,
|
|
"cache_write_1h_tokens": 0
|
|
}
|
|
},
|
|
"total_usd_micros": 97942
|
|
},
|
|
"files_touched": [
|
|
"/workspace/README.md"
|
|
]
|
|
}
|
|
},
|
|
"next_node_id": "exit",
|
|
"node_visits": {
|
|
"greet": 1,
|
|
"start": 1
|
|
}
|
|
},
|
|
"checkpoints": [
|
|
[
|
|
20,
|
|
{
|
|
"timestamp": "2026-04-30T12:13:00.266686047Z",
|
|
"current_node": "start",
|
|
"completed_nodes": [
|
|
"start"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"internal.thread_id": null,
|
|
"internal.work_dir": "/workspace",
|
|
"internal.run_id": "01KQF4WN966XC57QWCEC1QYDEV",
|
|
"internal.retry_count.start": 0,
|
|
"graph.rankdir": "LR",
|
|
"graph.goal": "Say hello and demonstrate a basic Fabro workflow",
|
|
"internal.node_visit_count": 1,
|
|
"failure_signature": "",
|
|
"internal.fidelity": "compact",
|
|
"failure_class": "",
|
|
"outcome": "succeeded",
|
|
"current_node": "start"
|
|
},
|
|
"node_outcomes": {
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "greet",
|
|
"node_visits": {
|
|
"start": 1
|
|
}
|
|
}
|
|
]
|
|
],
|
|
"conclusion": null,
|
|
"retro": null,
|
|
"retro_prompt": null,
|
|
"retro_response": null,
|
|
"sandbox": {
|
|
"provider": "docker",
|
|
"working_directory": "/workspace",
|
|
"identifier": "e112d85e0cac3e99a92235cd074fa7e6247752bf6a63106b2a09996121608594",
|
|
"repo_cloned": true,
|
|
"clone_origin_url": "https://github.com/fabro-sh/fabro",
|
|
"clone_branch": "main"
|
|
},
|
|
"final_patch": null,
|
|
"pull_request": null,
|
|
"superseded_by": null,
|
|
"pending_interviews": {},
|
|
"nodes": {
|
|
"greet@1": {
|
|
"prompt": null,
|
|
"response": null,
|
|
"status": null,
|
|
"provider_used": {
|
|
"mode": "agent",
|
|
"provider": "anthropic",
|
|
"model": "claude-sonnet-4-6"
|
|
},
|
|
"diff": null,
|
|
"script_invocation": null,
|
|
"script_timing": null,
|
|
"parallel_results": null,
|
|
"stdout": null,
|
|
"stderr": null
|
|
},
|
|
"start@1": {
|
|
"prompt": null,
|
|
"response": null,
|
|
"status": {
|
|
"status": "succeeded",
|
|
"notes": null,
|
|
"failure_reason": null,
|
|
"timestamp": "2026-04-30T12:13:00.266644922Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": null,
|
|
"script_timing": null,
|
|
"parallel_results": null,
|
|
"stdout": null,
|
|
"stderr": null
|
|
}
|
|
}
|
|
} |