一键导入
dep-check
Run govulncheck locally and check for outdated Go dependencies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run govulncheck locally and check for outdated Go dependencies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run gosec on a specific package and cross-reference findings against suppression list and TODO tracker
Generate table-driven Go tests for a package with httptest, context helpers, and config parsing patterns
Validate a config.yaml file against the Config schema and constraint rules from config/config.go
Build and smoke-test the Docker image locally to validate Dockerfile and binary startup
Draft conventional commit messages from staged changes for release-please
| name | dep-check |
| description | Run govulncheck locally and check for outdated Go dependencies |
| user_invocable | true |
Run govulncheck and check for outdated dependencies without waiting for CI.
/dep-check — no arguments needed
govulncheck installed (go install golang.org/x/vuln/cmd/govulncheck@latest)which govulncheck || go install golang.org/x/vuln/cmd/govulncheck@latest
govulncheck ./... 2>&1
go list -m -u all 2>&1 | grep '\[' | head -30
Vulnerabilities: <count> (or "None found")
Outdated deps: <count>
Vulnerabilities:
- <vuln-id>: <package> — <description>
Fixed in: <version>
Current: <version>
Available updates:
- <module> <current> → <available>
- ...
For any vulnerabilities found:
go get <module>@<fixed-version> commands for fixesFor outdated dependencies: