mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-09 22:33:37 +00:00
parent
1302bcc8f3
commit
00364308f4
4 changed files with 40 additions and 10 deletions
|
|
@ -1,15 +1,17 @@
|
|||
{
|
||||
"timestamp": "2026-03-19T13:00:01.552024Z",
|
||||
"current_node": "work",
|
||||
"timestamp": "2026-03-19T13:00:04.951453Z",
|
||||
"current_node": "verify",
|
||||
"completed_nodes": [
|
||||
"start",
|
||||
"setup",
|
||||
"work"
|
||||
"work",
|
||||
"verify"
|
||||
],
|
||||
"node_retries": {
|
||||
"setup": 1,
|
||||
"start": 1,
|
||||
"work": 1
|
||||
"work": 1,
|
||||
"setup": 1,
|
||||
"verify": 1
|
||||
},
|
||||
"context_values": {
|
||||
"thread.start.current_node": "setup",
|
||||
|
|
@ -19,23 +21,34 @@
|
|||
"graph.goal": "Verify sandbox filesystem is shared across command and agent nodes",
|
||||
"command.stderr": "",
|
||||
"last_response": "Perfect! The file `/tmp/scenario_flag.txt` contains:\n\n```\nSCENARIO_FLAG_42\n```\n\nThis confirms that the sandbox filesystem is indeed shared across command and agent nodes. The file was written during t",
|
||||
"current_node": "work",
|
||||
"command.output": "",
|
||||
"current_node": "verify",
|
||||
"command.output": "SCENARIO_FLAG_42\n",
|
||||
"internal.fidelity": "compact",
|
||||
"response.work": "Perfect! The file `/tmp/scenario_flag.txt` contains:\n\n```\nSCENARIO_FLAG_42\n```\n\nThis confirms that the sandbox filesystem is indeed shared across command and agent nodes. The file was written during the setup stage (which executed `echo SCENARIO_FLAG_42 > /tmp/scenario_flag.txt`), and we were able to read it here, demonstrating that the filesystem state persists and is accessible across different node types in the workflow execution.",
|
||||
"outcome": "success",
|
||||
"internal.node_visit_count": 1,
|
||||
"last_stage": "work",
|
||||
"internal.thread_id": "setup",
|
||||
"internal.thread_id": "work",
|
||||
"failure_signature": "",
|
||||
"thread.work.current_node": "verify",
|
||||
"failure_class": "",
|
||||
"current.preamble": "Goal: Verify sandbox filesystem is shared across command and agent nodes\n\n## Completed stages\n- **setup**: success\n - Script: `echo SCENARIO_FLAG_42 > /tmp/scenario_flag.txt`\n - Stdout: (empty)\n - Stderr: (empty)\n",
|
||||
"internal.retry_count.verify": 1,
|
||||
"current.preamble": "Goal: Verify sandbox filesystem is shared across command and agent nodes\n\n## Completed stages\n- **setup**: success\n - Script: `echo SCENARIO_FLAG_42 > /tmp/scenario_flag.txt`\n - Stdout: (empty)\n - Stderr: (empty)\n- **work**: success\n - Model: claude-haiku-4-5, 512 tokens in / 186 out\n",
|
||||
"internal.run_id": "01KM32WGARMD0C7WNS3VT9K7CZ",
|
||||
"thread.setup.current_node": "work",
|
||||
"internal.retry_count.work": 1
|
||||
},
|
||||
"logs": [],
|
||||
"node_outcomes": {
|
||||
"verify": {
|
||||
"status": "success",
|
||||
"context_updates": {
|
||||
"command.output": "SCENARIO_FLAG_42\n",
|
||||
"command.stderr": ""
|
||||
},
|
||||
"notes": "Script completed: cat /tmp/scenario_flag.txt",
|
||||
"duration_ms": 51
|
||||
},
|
||||
"work": {
|
||||
"status": "success",
|
||||
"context_updates": {
|
||||
|
|
@ -68,8 +81,9 @@
|
|||
"duration_ms": 0
|
||||
}
|
||||
},
|
||||
"next_node_id": "verify",
|
||||
"next_node_id": "exit",
|
||||
"node_visits": {
|
||||
"verify": 1,
|
||||
"work": 1,
|
||||
"setup": 1,
|
||||
"start": 1
|
||||
|
|
|
|||
5
nodes/verify/script_invocation.json
Normal file
5
nodes/verify/script_invocation.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"command": "cat /tmp/scenario_flag.txt",
|
||||
"language": "shell",
|
||||
"timeout_ms": null
|
||||
}
|
||||
5
nodes/verify/script_timing.json
Normal file
5
nodes/verify/script_timing.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"duration_ms": 50,
|
||||
"exit_code": 0,
|
||||
"timed_out": false
|
||||
}
|
||||
6
nodes/verify/status.json
Normal file
6
nodes/verify/status.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"status": "success",
|
||||
"notes": "Script completed: cat /tmp/scenario_flag.txt",
|
||||
"failure_reason": null,
|
||||
"timestamp": "2026-03-19T13:00:04.950960+00:00"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue