The cargo test preflight step is slow and unnecessary since the verify
step already runs tests after implementation.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Each script node runs in a fresh sh shell, so sourcing .cargo/env
in the toolchain node doesn't persist. Symlinking into /usr/local/bin
puts cargo, rustc, clippy etc. on the default PATH for every node.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The `. $HOME/.cargo/env` was running inside a subshell so the PATH
change didn't persist to the subsequent `cargo --version` command.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Bake the imagegen script into a Daytona snapshot so the agent
can just run `imagegen <prompt> <output>` instead of manually
calling the Gemini API with curl/jq.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
These are local test files like imagegen.dot/imagegen.toml.
They live in gitignored tmp/ and don't need to be tracked.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>