checkpoint

⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-05-06 13:18:52 -04:00
parent 0709b7cf46
commit c9081c130b
5 changed files with 186 additions and 7 deletions

169
run.json
View file

@ -204,14 +204,128 @@
"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": null,
"status": {
"kind": "starting"
"start": {
"run_id": "01KQZ4Q8JAV9JXH6KE6WTFRR74",
"start_time": "2026-05-06T17:18:10.317893Z",
"run_branch": "fabro/run/01KQZ4Q8JAV9JXH6KE6WTFRR74",
"base_sha": "c39ff666ede2c58fb9f8831c212c2036915b4f2e"
},
"status_updated_at": "2026-05-06T17:17:42.897633Z",
"status": {
"kind": "running"
},
"status_updated_at": "2026-05-06T17:18:10.317929Z",
"pending_control": null,
"checkpoint": null,
"checkpoints": [],
"checkpoint": {
"timestamp": "2026-05-06T17:18:49.702471Z",
"current_node": "greet",
"completed_nodes": [
"start",
"greet"
],
"node_retries": {},
"context_values": {
"internal.retry_count.greet": 0,
"failure_signature": "",
"thread.start.current_node": "greet",
"last_response": "Done! A haiku now lives right below the project tagline:\n\n```\ngraph guides the agent\nhuman steps in where it counts\ncode ships, trust remains\n```\n\nIt captures Fabro's core idea — workflow graphs kee",
"internal.retry_count.start": 0,
"internal.work_dir": "/home/daytona/workspace",
"current_node": "greet",
"internal.fidelity": "compact",
"internal.thread_id": "start",
"internal.run_id": "01KQZ4Q8JAV9JXH6KE6WTFRR74",
"graph.rankdir": "LR",
"outcome": "succeeded",
"response.greet": "Done! A haiku now lives right below the project tagline:\n\n```\ngraph guides the agent\nhuman steps in where it counts\ncode ships, trust remains\n```\n\nIt captures Fabro's core idea — workflow graphs keeping agents on track, humans intervening only at the right moments — in the traditional 5-7-5 syllable form.",
"last_stage": "greet",
"internal.node_visit_count": 1,
"graph.goal": "Say hello and demonstrate a basic Fabro workflow",
"failure_class": ""
},
"node_outcomes": {
"start": {
"status": "succeeded",
"usage": null
},
"greet": {
"status": "succeeded",
"context_updates": {
"response.greet": "Done! A haiku now lives right below the project tagline:\n\n```\ngraph guides the agent\nhuman steps in where it counts\ncode ships, trust remains\n```\n\nIt captures Fabro's core idea — workflow graphs keeping agents on track, humans intervening only at the right moments — in the traditional 5-7-5 syllable form.",
"last_response": "Done! A haiku now lives right below the project tagline:\n\n```\ngraph guides the agent\nhuman steps in where it counts\ncode ships, trust remains\n```\n\nIt captures Fabro's core idea — workflow graphs kee",
"last_stage": "greet"
},
"notes": "Stage completed: greet",
"usage": {
"input": {
"usage": {
"model": {
"provider": "anthropic",
"model_id": "claude-sonnet-4-6"
},
"tokens": {
"input_tokens": 4803,
"output_tokens": 545,
"reasoning_tokens": 0,
"cache_read_tokens": 25155,
"cache_write_tokens": 12468
}
},
"facts": {
"provider": "anthropic",
"cache_write_5m_tokens": 12468,
"cache_write_1h_tokens": 0
}
},
"total_usd_micros": 76885
},
"files_touched": [
"/home/daytona/workspace/README.md"
]
}
},
"next_node_id": "exit",
"node_visits": {
"start": 1,
"greet": 1
}
},
"checkpoints": [
[
19,
{
"timestamp": "2026-05-06T17:18:21.160725Z",
"current_node": "start",
"completed_nodes": [
"start"
],
"node_retries": {},
"context_values": {
"outcome": "succeeded",
"internal.work_dir": "/home/daytona/workspace",
"graph.goal": "Say hello and demonstrate a basic Fabro workflow",
"internal.fidelity": "compact",
"failure_signature": "",
"internal.node_visit_count": 1,
"internal.retry_count.start": 0,
"failure_class": "",
"internal.run_id": "01KQZ4Q8JAV9JXH6KE6WTFRR74",
"internal.thread_id": null,
"current_node": "start",
"graph.rankdir": "LR"
},
"node_outcomes": {
"start": {
"status": "succeeded",
"usage": null
}
},
"next_node_id": "greet",
"node_visits": {
"start": 1
}
}
]
],
"conclusion": null,
"retro": null,
"retro_prompt": null,
@ -228,5 +342,46 @@
"pull_request": null,
"superseded_by": null,
"pending_interviews": {},
"stages": {}
"stages": {
"greet@1": {
"first_event_seq": 20,
"prompt": null,
"response": null,
"completion": 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,
"started_at": "2026-05-06T17:18:21.160792Z",
"state": "running"
},
"start@1": {
"first_event_seq": 16,
"prompt": null,
"response": null,
"completion": {
"outcome": "succeeded",
"notes": null,
"failure_reason": null,
"timestamp": "2026-05-06T17:18:21.160559Z"
},
"provider_used": null,
"diff": null,
"script_invocation": null,
"script_timing": null,
"parallel_results": null,
"stdout": null,
"stderr": null,
"started_at": "2026-05-06T17:18:21.159743Z",
"duration_ms": 0,
"state": "succeeded"
}
}
}

View file

@ -0,0 +1,6 @@
{
"outcome": "succeeded",
"notes": null,
"failure_reason": null,
"timestamp": "2026-05-06T17:18:21.160559Z"
}

View file

@ -0,0 +1,4 @@
Goal: Say hello and demonstrate a basic Fabro workflow
Add a haiku to the README

View file

@ -0,0 +1,5 @@
{
"mode": "agent",
"provider": "anthropic",
"model": "claude-sonnet-4-6"
}

View file

@ -0,0 +1,9 @@
Done! A haiku now lives right below the project tagline:
```
graph guides the agent
human steps in where it counts
code ships, trust remains
```
It captures Fabro's core idea — workflow graphs keeping agents on track, humans intervening only at the right moments — in the traditional 5-7-5 syllable form.