ワンクリックで
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: