mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
455 lines
No EOL
14 KiB
JSON
455 lines
No EOL
14 KiB
JSON
{
|
|
"title": "Verify the Daytona daytona-medium sandbox starts with standard tooling",
|
|
"spec": {
|
|
"run_id": "01KRC06KV7MFNE2S22R2TAS10P",
|
|
"settings": {
|
|
"project": {
|
|
"name": null,
|
|
"description": null,
|
|
"metadata": {}
|
|
},
|
|
"workflow": {
|
|
"name": null,
|
|
"description": null,
|
|
"graph": "workflow.fabro",
|
|
"metadata": {}
|
|
},
|
|
"run": {
|
|
"goal": {
|
|
"type": "inline",
|
|
"value": "Verify the Daytona daytona-medium sandbox starts with standard tooling"
|
|
},
|
|
"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"
|
|
},
|
|
"checkpoint": {
|
|
"exclude_globs": []
|
|
},
|
|
"sandbox": {
|
|
"provider": "daytona",
|
|
"preserve": false,
|
|
"stop_on_terminal": true,
|
|
"devcontainer": false,
|
|
"env": {},
|
|
"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": "daytona-medium",
|
|
"cpu": null,
|
|
"memory_gb": null,
|
|
"disk_gb": null,
|
|
"dockerfile": null
|
|
},
|
|
"network": null,
|
|
"skip_clone": false
|
|
}
|
|
},
|
|
"notifications": {},
|
|
"interviews": {
|
|
"provider": null,
|
|
"slack": 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": []
|
|
},
|
|
"integrations": {
|
|
"github": {
|
|
"permissions": {}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"graph": {
|
|
"name": "DaytonaMedium",
|
|
"nodes": {
|
|
"inspect": {
|
|
"id": "inspect",
|
|
"attrs": {
|
|
"script": {
|
|
"String": "set -e\nprintf 'cwd: '; pwd\nprintf 'user: '; whoami\nprintf 'git: '; git --version\nif command -v python3 >/dev/null; then printf 'python: '; python3 --version; else echo 'python: not installed'; fi\nif command -v node >/dev/null; then printf 'node: '; node --version; else echo 'node: not installed'; fi\nprintf 'top-level files:\\n'; ls -la | sed -n '1,40p'"
|
|
},
|
|
"goal_gate": {
|
|
"Boolean": true
|
|
},
|
|
"label": {
|
|
"String": "Inspect Sandbox"
|
|
},
|
|
"shape": {
|
|
"String": "parallelogram"
|
|
}
|
|
}
|
|
},
|
|
"start": {
|
|
"id": "start",
|
|
"attrs": {
|
|
"label": {
|
|
"String": "Start"
|
|
},
|
|
"shape": {
|
|
"String": "Mdiamond"
|
|
}
|
|
}
|
|
},
|
|
"exit": {
|
|
"id": "exit",
|
|
"attrs": {
|
|
"shape": {
|
|
"String": "Msquare"
|
|
},
|
|
"label": {
|
|
"String": "Exit"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"edges": [
|
|
{
|
|
"from": "start",
|
|
"to": "inspect",
|
|
"attrs": {}
|
|
},
|
|
{
|
|
"from": "inspect",
|
|
"to": "exit",
|
|
"attrs": {}
|
|
}
|
|
],
|
|
"attrs": {
|
|
"rankdir": {
|
|
"String": "LR"
|
|
},
|
|
"goal": {
|
|
"String": "Verify the Daytona daytona-medium sandbox starts with standard tooling"
|
|
},
|
|
"retry_target": {
|
|
"String": "exit"
|
|
}
|
|
}
|
|
},
|
|
"graph_source": "digraph DaytonaMedium {\n graph [goal=\"Verify the Daytona daytona-medium sandbox starts with standard tooling\", retry_target=exit]\n rankdir=LR\n\n start [shape=Mdiamond, label=\"Start\"]\n exit [shape=Msquare, label=\"Exit\"]\n\n inspect [label=\"Inspect Sandbox\", shape=parallelogram, goal_gate=true, script=\"set -e\\nprintf 'cwd: '; pwd\\nprintf 'user: '; whoami\\nprintf 'git: '; git --version\\nif command -v python3 >/dev/null; then printf 'python: '; python3 --version; else echo 'python: not installed'; fi\\nif command -v node >/dev/null; then printf 'node: '; node --version; else echo 'node: not installed'; fi\\nprintf 'top-level files:\\\\n'; ls -la | sed -n '1,40p'\"]\n\n start -> inspect -> exit\n}\n",
|
|
"workflow_slug": "daytona-medium",
|
|
"source_directory": "/Users/bhelmkamp/p/fabro-sh/fabro",
|
|
"provenance": {
|
|
"server": {
|
|
"version": "0.230.0-nightly.0"
|
|
},
|
|
"client": {
|
|
"user_agent": "fabro-cli/0.230.0-nightly.0",
|
|
"name": "fabro-cli",
|
|
"version": "0.230.0-nightly.0"
|
|
},
|
|
"subject": {
|
|
"kind": "user",
|
|
"identity": {
|
|
"issuer": "https://github.com",
|
|
"subject": "19"
|
|
},
|
|
"login": "brynary",
|
|
"auth_method": "github"
|
|
}
|
|
},
|
|
"manifest_blob": "ce939185175a475daea95e5361349d0c655a13c337bc2dd430d009878573429f",
|
|
"definition_blob": "bc920d09dfdcda0f397c5b3ed42576db9966aa0aeeedd34c74968670b622992f",
|
|
"git": {
|
|
"origin_url": "https://github.com/fabro-sh/fabro",
|
|
"branch": "main",
|
|
"sha": "9ea00185dc565e0ebd84e1e6cca231a32b7ad927",
|
|
"dirty": "dirty",
|
|
"push_outcome": {
|
|
"type": "not_attempted"
|
|
}
|
|
}
|
|
},
|
|
"web_url": "http://127.0.0.1:32276/runs/01KRC06KV7MFNE2S22R2TAS10P",
|
|
"start": {
|
|
"start_time": "2026-05-11T17:09:05.695209Z",
|
|
"run_branch": "fabro/run/01KRC06KV7MFNE2S22R2TAS10P",
|
|
"base_sha": "9ea00185dc565e0ebd84e1e6cca231a32b7ad927"
|
|
},
|
|
"status": {
|
|
"kind": "running"
|
|
},
|
|
"status_updated_at": "2026-05-11T17:09:05.695255Z",
|
|
"last_event_at": "2026-05-11T17:09:16.366759Z",
|
|
"pending_control": null,
|
|
"checkpoints": [
|
|
{
|
|
"seq": 19,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T17:09:08.324038Z",
|
|
"current_node": "start",
|
|
"completed_nodes": [
|
|
"start"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"graph.rankdir": "LR",
|
|
"outcome": "succeeded",
|
|
"graph.retry_target": "exit",
|
|
"internal.fidelity": "compact",
|
|
"failure_signature": "",
|
|
"internal.node_visit_count": 1,
|
|
"graph.goal": "Verify the Daytona daytona-medium sandbox starts with standard tooling",
|
|
"internal.run_id": "01KRC06KV7MFNE2S22R2TAS10P",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"current_node": "start",
|
|
"internal.thread_id": null,
|
|
"internal.retry_count.start": 0,
|
|
"failure_class": ""
|
|
},
|
|
"node_outcomes": {
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "inspect",
|
|
"node_visits": {
|
|
"start": 1
|
|
}
|
|
},
|
|
"diff": {}
|
|
},
|
|
{
|
|
"seq": 27,
|
|
"checkpoint": {
|
|
"timestamp": "2026-05-11T17:09:16.366561Z",
|
|
"current_node": "inspect",
|
|
"completed_nodes": [
|
|
"start",
|
|
"inspect"
|
|
],
|
|
"node_retries": {},
|
|
"context_values": {
|
|
"graph.goal": "Verify the Daytona daytona-medium sandbox starts with standard tooling",
|
|
"internal.fidelity": "compact",
|
|
"internal.retry_count.inspect": 0,
|
|
"thread.start.current_node": "inspect",
|
|
"internal.retry_count.start": 0,
|
|
"failure_class": "",
|
|
"graph.retry_target": "exit",
|
|
"internal.thread_id": "start",
|
|
"graph.rankdir": "LR",
|
|
"internal.run_id": "01KRC06KV7MFNE2S22R2TAS10P",
|
|
"outcome": "succeeded",
|
|
"current_node": "inspect",
|
|
"failure_signature": "",
|
|
"command.output": "blob://sha256/b366510186718414b48dcc6f64b5fc479dafd86e46623d16d0b51dc67d231725",
|
|
"internal.work_dir": "/home/daytona/workspace",
|
|
"internal.node_visit_count": 1
|
|
},
|
|
"node_outcomes": {
|
|
"inspect": {
|
|
"status": "succeeded",
|
|
"context_updates": {
|
|
"command.output": "blob://sha256/b366510186718414b48dcc6f64b5fc479dafd86e46623d16d0b51dc67d231725"
|
|
},
|
|
"notes": "Script completed: set -e\nprintf 'cwd: '; pwd\nprintf 'user: '; whoami\nprintf 'git: '; git --version\nif command -v python3 >/dev/null; then printf 'python: '; python3 --version; else echo 'python: not installed'; fi\nif command -v node >/dev/null; then printf 'node: '; node --version; else echo 'node: not installed'; fi\nprintf 'top-level files:\\n'; ls -la | sed -n '1,40p'",
|
|
"usage": null
|
|
},
|
|
"start": {
|
|
"status": "succeeded",
|
|
"usage": null
|
|
}
|
|
},
|
|
"next_node_id": "exit",
|
|
"git_commit_sha": "c2f49da1c80a708e48e6d09f03cfa87699ac31c6",
|
|
"node_visits": {
|
|
"start": 1,
|
|
"inspect": 1
|
|
}
|
|
},
|
|
"diff": {
|
|
"summary": {
|
|
"files_changed": 0,
|
|
"additions": 0,
|
|
"deletions": 0
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"conclusion": {
|
|
"timestamp": "2026-05-11T17:09:16.395309Z",
|
|
"status": "succeeded",
|
|
"duration_ms": 10671,
|
|
"final_git_commit_sha": "c2f49da1c80a708e48e6d09f03cfa87699ac31c6",
|
|
"stages": [
|
|
{
|
|
"stage_id": "start",
|
|
"stage_label": "start",
|
|
"duration_ms": 0,
|
|
"retries": 0
|
|
},
|
|
{
|
|
"stage_id": "inspect",
|
|
"stage_label": "inspect",
|
|
"duration_ms": 1826,
|
|
"retries": 0
|
|
}
|
|
],
|
|
"total_retries": 0,
|
|
"diff": {}
|
|
},
|
|
"sandbox": {
|
|
"provider": "daytona",
|
|
"image": "buildpack-deps:noble",
|
|
"snapshot": "daytona-medium",
|
|
"runtime": {
|
|
"id": "fabro-01KRC06KV7MFNE2S22R2TAS10P",
|
|
"working_directory": "/home/daytona/workspace",
|
|
"repo_cloned": true,
|
|
"clone_origin_url": "https://github.com/fabro-sh/fabro",
|
|
"clone_branch": "main"
|
|
}
|
|
},
|
|
"pull_request": null,
|
|
"superseded_by": null,
|
|
"pending_interviews": {},
|
|
"stages": {
|
|
"start@1": {
|
|
"first_event_seq": 16,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": null,
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T17:09:08.323926Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": null,
|
|
"script_timing": null,
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"started_at": "2026-05-11T17:09:08.323819Z",
|
|
"handler": "start",
|
|
"duration_ms": 0,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
},
|
|
"inspect@1": {
|
|
"first_event_seq": 20,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": "Script completed: set -e\nprintf 'cwd: '; pwd\nprintf 'user: '; whoami\nprintf 'git: '; git --version\nif command -v python3 >/dev/null; then printf 'python: '; python3 --version; else echo 'python: not installed'; fi\nif command -v node >/dev/null; then printf 'node: '; node --version; else echo 'node: not installed'; fi\nprintf 'top-level files:\\n'; ls -la | sed -n '1,40p'",
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T17:09:10.150422Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": {
|
|
"script": "set -e\nprintf 'cwd: '; pwd\nprintf 'user: '; whoami\nprintf 'git: '; git --version\nif command -v python3 >/dev/null; then printf 'python: '; python3 --version; else echo 'python: not installed'; fi\nif command -v node >/dev/null; then printf 'node: '; node --version; else echo 'node: not installed'; fi\nprintf 'top-level files:\\n'; ls -la | sed -n '1,40p'",
|
|
"command": "exec 2>&1\nset -e\nprintf 'cwd: '; pwd\nprintf 'user: '; whoami\nprintf 'git: '; git --version\nif command -v python3 >/dev/null; then printf 'python: '; python3 --version; else echo 'python: not installed'; fi\nif command -v node >/dev/null; then printf 'node: '; node --version; else echo 'node: not installed'; fi\nprintf 'top-level files:\\n'; ls -la | sed -n '1,40p'",
|
|
"language": "shell"
|
|
},
|
|
"script_timing": {
|
|
"output": "blob://sha256/b366510186718414b48dcc6f64b5fc479dafd86e46623d16d0b51dc67d231725",
|
|
"exit_code": 0,
|
|
"duration_ms": 1819,
|
|
"termination": "exited",
|
|
"output_bytes": 2496,
|
|
"live_streaming": true
|
|
},
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"output_bytes": 2496,
|
|
"live_streaming": true,
|
|
"termination": "exited",
|
|
"started_at": "2026-05-11T17:09:08.324113Z",
|
|
"handler": "command",
|
|
"duration_ms": 1826,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
},
|
|
"exit@1": {
|
|
"first_event_seq": 30,
|
|
"prompt": null,
|
|
"response": null,
|
|
"completion": {
|
|
"outcome": "succeeded",
|
|
"notes": null,
|
|
"failure_reason": null,
|
|
"timestamp": "2026-05-11T17:09:16.366759Z"
|
|
},
|
|
"provider_used": null,
|
|
"diff": null,
|
|
"script_invocation": null,
|
|
"script_timing": null,
|
|
"parallel_results": null,
|
|
"output": null,
|
|
"started_at": "2026-05-11T17:09:16.366722Z",
|
|
"handler": "exit",
|
|
"duration_ms": 0,
|
|
"usage": {
|
|
"input_tokens": 0,
|
|
"output_tokens": 0,
|
|
"total_tokens": 0,
|
|
"reasoning_tokens": 0,
|
|
"cache_read_tokens": 0,
|
|
"cache_write_tokens": 0
|
|
},
|
|
"state": "succeeded"
|
|
}
|
|
}
|
|
} |