skills/dagger-chores/SKILL.md
Use this checklist when asked to bump Go.
engine/distconsts/consts.go:GolangVersion = "X.Y.Z"toolchains/go/main.go:// +default="X.Y.Z" on the version argument in New(...)chore: bump to go <major.minor>chore: bump to go 1.26git commit -s -m "chore: bump to go <major.minor>"Please double-check if any additional Go version strings were added in new files; these locations can change over time. If helpful, I can also help search for those locations.Use this checklist when asked to regenerate generated files.
From the Dagger repo root, create a temp file for command output and store its path in tmp_log.
Run generation and redirect all output to the temp file:
dagger --progress=plain call generate layer export --path . >"$tmp_log" 2>&1Search the temp file as needed instead of printing full output.
Delete the temp file when done.
Use this checklist when asked to regenerate telemetry golden tests.
dagger -c 'engine-dev | test-telemetry --update | export .'