基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/authgear/oauthrelyingparty --skill dep-audit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | dep-audit |
| description | Audit and fix Go dependency vulnerabilities. Runs govulncheck and upgrades affected modules. |
| argument-hint | --fix |
Audit and fix dependency vulnerabilities in this project. Follow the steps below in order.
Run make govulncheck in the repository root.
Parse the output:
go list -m -u <module> to find the latest available version.v1.x.x → v2.x.x), generate a Breaking Change Report (see below), defer the upgrade, and continue with any patchable work.go get <module>@latest then go mod tidy in the repository root.Important:
go get <module>@latest is for Go module dependencies only. Do not use it to change the Go toolchain version..tool-versions and go.mod directly, then run go mod tidy.Breaking Change Report (major version bumps) must include:
After updating Go deps:
go build ./... to verify the build.go.mod and go.sum with commit message: chore: fix Go dependency vulnerabilitiesOutput a summary with three sections:
List every module that was updated (name, old version → new version).
List any breaking changes that were confirmed and applied.
List any vulnerabilities that could not be resolved, including: