| name | update-important-modules |
| description | Refresh the repo's important Go modules when the dependency set drifts. |
| argument-hint | <module names or audit target> |
Use this skill when make ensure-important-modules-up-to-date reports stale modules.
Workflow
- Run
make ensure-important-modules-up-to-date.
- If it reports outdated modules, update the affected module(s) in:
- Use
go get -u <module> and then go mod tidy in each affected module.
- Re-run
make ensure-important-modules-up-to-date until it passes cleanly.
Notes
- Keep the update scoped to the modules reported as stale.
- Do not update unrelated dependencies while fixing the important-module list.