mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
commit
a6fa17fa6c
2 changed files with 244 additions and 0 deletions
11
graph.fabro
Normal file
11
graph.fabro
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
digraph DaytonaMedium {
|
||||
graph [goal="Verify the Daytona daytona-medium sandbox starts with standard tooling", retry_target=exit]
|
||||
rankdir=LR
|
||||
|
||||
start [shape=Mdiamond, label="Start"]
|
||||
exit [shape=Msquare, label="Exit"]
|
||||
|
||||
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'"]
|
||||
|
||||
start -> inspect -> exit
|
||||
}
|
||||
233
run.json
Normal file
233
run.json
Normal file
|
|
@ -0,0 +1,233 @@
|
|||
{
|
||||
"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": null,
|
||||
"status": {
|
||||
"kind": "starting"
|
||||
},
|
||||
"status_updated_at": "2026-05-11T17:08:50.691474Z",
|
||||
"last_event_at": "2026-05-11T17:09:05.345308Z",
|
||||
"pending_control": null,
|
||||
"checkpoints": [],
|
||||
"conclusion": null,
|
||||
"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": {}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue