소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill supply-chain명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | supply-chain |
| description | Supply chain security — dependency audit, CI pinning, typosquatting. |
Supply chain attacks compromise software by injecting malicious code into dependencies, build tools, or CI/CD pipelines — not the application itself.
| Vector | Example | Risk |
|---|---|---|
| Malicious npm/PyPI/Composer package | lodash vs lodahs (typosquatting) | Code execution at install time |
| Compromised dependency account | Maintainer takeover → malicious version | All consumers affected |
| Unpinned CI/CD action | uses: actions/checkout@main | Attacker pushes to main → runs in your CI |
| Dependency confusion | Private package name leaked; public registry serves malicious version | Pulled over private package |
| Build script injection | postinstall script in package.json | Runs arbitrary code on developer machines |
Never reference actions by branch or tag — always pin to a full commit SHA.
# BAD — tag can be moved or deleted
- uses: actions/checkout@v4
# GOOD — SHA is immutable
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Audit rule: any uses: line not ending in a 40-character SHA is a [HIGH] finding.
Allowed exceptions: actions owned and controlled by your own organization (internal actions).
# pin-github-action (CLI)
pin-github-action .github/workflows/*.yml
# Renovate / Dependabot: configure to auto-update pinned SHAs
Run on every PR and in CI:
# Node.js
npm audit --audit-level=high
npx better-npm-audit audit
# Python
pip-audit
safety check
# PHP
composer audit
# Ruby
bundle audit
# Go
govulncheck ./...
# All-language scanner
trivy fs .
snyk test
Rules:
postinstall/prepare scripts from an unknown/unreviewed maintainer| Check | Why |
|---|---|
package-lock.json / yarn.lock / pnpm-lock.yaml committed and up to date | Guarantees reproducible installs |
composer.lock, Pipfile.lock, Gemfile.lock, go.sum committed | Same guarantee |
CI installs with --frozen-lockfile / ci / --no-update flag | Prevents silent dependency upgrades in CI |
Lock file diff reviewed in PRs touching package.json | Catches unexpected transitive upgrades |
# Node — fail if lock file is out of sync
npm ci # equivalent to --frozen-lockfile
yarn install --frozen-lockfile
pnpm install --frozen-lockfile
# Python
pip install --require-hashes -r requirements.txt
Before adding any new dependency, verify:
npm pack <package> locally and inspect contents before installing in CI# Node: inspect what a package actually contains
npm pack lodash --dry-run
# Check package metadata
npm info lodash | grep -E "(maintainers|dist-tags|time)"
Red flags: package published < 30 days ago, < 100 weekly downloads but claims popularity, no source repo link, postinstall script present.
Occurs when an attacker publishes a public package with the same name as your internal/private package.
Mitigations:
@yourorg/package-name@yourorg/* from your private registry only# npm .npmrc — always fetch org packages from private registry
@yourorg:registry=https://your-private-registry.com
Generate and store an SBOM for every production release:
# CycloneDX format (standard)
npx @cyclonedx/cyclonedx-npm --output-file sbom.json
syft . -o cyclonedx-json > sbom.json
# Attach to GitHub Release or store in artifact registry
| Item | Severity if missing |
|---|---|
| All CI actions pinned to SHA | HIGH |
| Lock files committed and used in CI with frozen flag | HIGH |
No unreviewed postinstall scripts | HIGH |
| Dependency audit runs in CI | HIGH |
| Scoped packages for all internal deps | MEDIUM |
| SBOM generated on release | LOW |
| Renovate/Dependabot configured for SHA updates | LOW |