Agent Skills
› authgear/authgear-server
› update-important-modules
update-important-modules
GitHub用于在依赖检测工具报告过时模块时,更新指定的 Go 模块。通过执行 make 命令、使用 go get 和 tidy 更新受影响目录中的模块,并重复验证直至通过,确保重要依赖保持最新且范围受限。
Trigger Scenarios
make ensure-important-modules-up-to-date 报告过时模块
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


