用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/yu-iskw/agentic-workloads --skill go-upgrade-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Workflow for auditing security vulnerabilities using trivy, osv-scanner, and trunk.
Comprehensive workflow for creating, implementing, and validating Agent Skills. Use when asked to "create a new skill", "author a skill", "add a capability", or when standardizing project-specific workflows. Support for platform detection (Cursor, Claude Code, Gemini CLI, Codex) and template selection.
Manage Architecture Decision Records (ADRs) using adr-tools. Use this to initialize, create, list, and link ADRs to document architectural evolution.
基于 SOC 职业分类
正在显示 SKILL.md
| name | go-upgrade-workflow |
| description | Step-by-step workflow for safely upgrading Go dependencies using the standard Go toolchain. |
go-upgrade-workflowThis skill guides you through the process of safely upgrading Go dependencies. Follow these steps exactly to ensure project stability and maintain a clean go.mod file.
Before starting, ensure:
go.mod file exists in the project root.go mod verify to ensure the local cache has not been tampered with.go test ./...cp go.mod go.mod.bakcp go.sum go.sum.bakChoose one of the following upgrade paths:
go get -u ./...go get -u=patch ./...go get -u <package_path> (e.g., go get -u github.com/gin-gonic/gin)go mod tidy to remove unused dependencies and update go.sum.go mod tidy.go mod verify again.go test ./...trunk is available, run trunk check.golangci-lint run).rm go.mod.bak go.sum.bak.go.mod and go.sum.If any step fails, especially the validation or test steps:
mv go.mod.bak go.modmv go.sum.bak go.sumgo mod download to ensure the original state is restored.