원클릭으로
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: