원클릭으로
dependency-audit
Scan dependencies for CVEs, outdated packages, license issues, and unused deps to produce a prioritized remediation list
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Scan dependencies for CVEs, outdated packages, license issues, and unused deps to produce a prioritized remediation list
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create Architecture Decision Records using the Michael Nygard template with context, decision, alternatives, and consequences
Generate or validate OpenAPI and AsyncAPI specs from code or requirements with consistent naming, errors, and pagination
Generate CHANGELOG.md from git history in Keep a Changelog format with Added, Changed, Deprecated, Removed, Fixed, and Security categories
Generate CI/CD pipeline config for detected platform with lint, test, build, and deploy stages
Guide deployment processes including CI/CD pipeline creation, environment setup, and rollback procedures
Analyze Dockerfile and produce optimized version with multi-stage builds, layer caching, minimal base, and security hardening
| name | dependency-audit |
| description | Scan dependencies for CVEs, outdated packages, license issues, and unused deps to produce a prioritized remediation list |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"general"} |
Use this skill when you need to:
Detect: Identify package manager and lockfiles
package-lock.json / yarn.lock / pnpm-lock.yaml (Node.js)requirements.txt / poetry.lock / Pipfile.lock (Python)pom.xml / build.gradle (Java)go.sum (Go)Cargo.lock (Rust)Scan for vulnerabilities: Run the appropriate audit command
# Node.js
npm audit --json
# Python
pip-audit --format=json
# Go
govulncheck ./...
Check for outdated packages: List packages behind latest
npm outdated --json
pip list --outdated --format=json
Detect unused dependencies: Cross-reference imports against declared deps
License audit: Extract license from each dependency
Prioritize findings: Produce a remediation table
## Dependency Audit Report
### Critical Vulnerabilities
| Package | Version | CVE | Severity | Fix Version |
|---------|---------|-----|----------|-------------|
| example | 1.2.3 | CVE-2024-XXXXX | Critical | 1.2.4 |
### Outdated Packages
| Package | Current | Latest | Type |
|---------|---------|--------|------|
| example | 1.0.0 | 2.0.0 | Major |
### License Issues
| Package | License | Issue |
|---------|---------|-------|
| example | GPL-3.0 | Incompatible with MIT project |
### Unused Dependencies
- `unused-pkg` — not imported anywhere in source