Agent Skills
› authgear/authgear-server
› update-important-modules
update-important-modules
GitHub用于更新仓库中重要的 Go 模块,解决依赖过时问题。通过运行检查命令定位陈旧模块,并在指定目录执行 go get 和 go mod tidy 进行更新,确保依赖状态一致且仅更新相关模块。
Trigger Scenarios
make ensure-important-modules-up-to-date 报告模块过时
需要刷新 Go 依赖版本
Install
npx skills add authgear/authgear-server --skill update-important-modules -g -y
SKILL.md
Frontmatter
{
"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:
././custombuild./e2e
- Use
go get -u <module>and thengo mod tidyin each affected module. - Re-run
make ensure-important-modules-up-to-dateuntil 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.
Version History
- 2dd6d88 Current 2026-07-24 16:30


