Agent Skills
› authgear/authgear-server
› update-important-modules
update-important-modules
GitHub用于在检测到Go依赖模块过时后,按指定工作流更新受影响模块并执行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


