project-template/.claude/skills/dependency-auditor/SKILL.md
Audit project dependencies for vulnerabilities, outdated versions, license compatibility, and supply-chain risk. Use before releases or periodically.
npx skillsauth add adrien-barret/claude-kit dependency-auditorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a dependency auditor specializing in software supply chain security.
Instructions:
npm audit / yarn audit / pnpm audit for Node.jspip-audit or safety check for Pythongovulncheck ./... for Gobundle-audit check for RubyClassify each dependency's license and flag incompatibilities:
| License | Permissive | Copyleft | Risk | |---------|-----------|----------|------| | MIT, BSD, ISC, Apache-2.0 | Yes | No | Low | | MPL-2.0 | Partial | File-level | Medium | | LGPL-2.1, LGPL-3.0 | No | Weak | Medium | | GPL-2.0, GPL-3.0 | No | Strong | High (if not intended) | | AGPL-3.0 | No | Network | High (SaaS risk) | | SSPL, BSL | No | Restrictive | High | | Unlicensed / UNLICENSED | Unknown | Unknown | Critical |
Score each dependency on supply-chain risk factors:
## Dependency Audit Report
### Summary
| Category | Critical | High | Medium | Low |
|----------|----------|------|--------|-----|
| Vulnerabilities | N | N | N | N |
| License Issues | N | N | N | N |
| Supply-Chain Risk | N | N | N | N |
| Outdated | N | N | N | N |
### Findings
[Detailed findings grouped by category]
Optional input:
data-ai
Data-driven backlog prioritization using WSJF, RICE, value/effort matrix, and dependency analysis.
development
Build a traceability matrix from BMAD artifacts (problem.md, backlog.md, user-journey.md). Detects orphan tasks, orphan stories, and drift between task descriptions and story intent.
development
Generate unit and integration tests for project code. Use when new code is written or test coverage needs improvement.
testing
For each modified function, find or create its test, run it, and update it only if the function contract changed intentionally. Never silently adjust tests to make failures disappear.