소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill dependency-vulnerabilities명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | dependency-vulnerabilities |
| description | Dependency vulnerabilities — scanning, CVE triage, update strategy. |
| Ecosystem | Tool | How to run |
|---|---|---|
| Node.js / npm | npm audit | npm audit --audit-level=high |
| Node.js / npm | Snyk | snyk test |
| Node.js / npm | Dependabot | GitHub-native; auto PRs |
| Python | pip-audit | pip-audit -r requirements.txt |
| Ruby | bundle-audit | bundle audit check --update |
| Go | govulncheck | govulncheck ./... |
| Rust | cargo-audit | cargo audit |
| Java | OWASP Dependency-Check | Maven/Gradle plugin |
| .NET | dotnet list package --vulnerable | Built-in CLI |
| Docker images | Trivy | trivy image <image> |
| Multi-ecosystem | Snyk | SaaS; supports all above |
Run at minimum: on every PR and as a nightly scheduled job.
| CVSS Score | Severity | Fix SLA | Action |
|---|---|---|---|
| 9.0 – 10.0 | Critical | 24 hours | Emergency patch; notify security team; hotfix branch |
| 7.0 – 8.9 | High | 7 days | Prioritize over feature work; tracked in sprint |
| 4.0 – 6.9 | Medium | 30 days | Schedule in next sprint or Renovate auto-PR |
| 0.1 – 3.9 | Low | 90 days | Batch with routine dependency updates |
| N/A | Unscored | Assess manually | Treat as Medium until scored |
If the answer to all three is "no", you may downgrade one severity tier — document the reasoning.
1.2.3), not ranges (^1.2.3), to prevent surprise updates--force bypass is never acceptable in CI — if npm audit fails, fix the vulnerability or use npm audit --omit=dev only when the vulnerable package is provably not in the production bundle{
"extends": ["config:base"],
"vulnerabilityAlerts": { "enabled": true, "labels": ["security"] },
"packageRules": [
{ "matchUpdateTypes": ["patch"], "automerge": true },
{ "matchUpdateTypes": ["major"], "automerge": false }
]
}
| Practice | Why |
|---|---|
Pin exact versions in package-lock.json / Pipfile.lock / go.sum | Prevents dependency confusion attacks and surprise behavior changes |
| Verify package checksums | Lock files include integrity hashes — commit them and verify in CI |
| Prefer packages with active maintainers | Abandoned packages accumulate unpatched CVEs |
| Check publish dates and download counts | Typosquatting packages mimic popular names with low download counts |
Enable npm publish 2FA for owned packages | Prevents account takeover leading to malicious releases |
| Use a private registry mirror (Artifactory, Nexus) | Cache approved versions; block unknown packages |
SECURITY.md or responsible disclosure policy--force bypass in CI audit steps