fabro/graph.fabro
Fabro a6fa17fa6c init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-05-11 13:09:06 -04:00

11 lines
710 B
Text

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
}