with one click
dep-check
Run govulncheck locally and check for outdated Go dependencies
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run govulncheck locally and check for outdated Go dependencies
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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: