Agent Skills
› authgear/authgear-server
› update-important-modules
update-important-modules
GitHub用于在检测到Go依赖模块过时后,自动更新指定目录下的关键模块版本并执行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


