dagger-chores

📁 dagger/dagger 📅 Today
1
总安装量
1
周安装量
#76864
全站排名
安装命令
npx skills add https://github.com/dagger/dagger --skill dagger-chores

Agent 安装分布

amp 1
cline 1
opencode 1
cursor 1
continue 1
kimi-cli 1

Skill 文档

Dagger Chores

Go Version Bump

Use this checklist when asked to bump Go.

  1. Update the Go version string in engine/distconsts/consts.go:
  • GolangVersion = "X.Y.Z"
  1. Update the Go default version string in toolchains/go/main.go:
  • // +default="X.Y.Z" on the version argument in New(...)
  1. Use a short commit message in this format:
  • chore: bump to go <major.minor>
  • Example: chore: bump to go 1.26
  1. Create a signed commit:
  • git commit -s -m "chore: bump to go <major.minor>"
  1. Tell the user to double-check whether new Go version locations have been introduced since the last bump, and mention they can ask the agent for help finding them.
  • Suggested wording: 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.

Regenerate Generated Files

Use this checklist when asked to regenerate generated files.

  1. From the Dagger repo root, create a temp file for command output and store its path in tmp_log.

  2. Run generation and redirect all output to the temp file:

  • dagger --progress=plain call generate layer export --path . >"$tmp_log" 2>&1
  1. Search the temp file as needed instead of printing full output.

  2. Delete the temp file when done.