Loading...
Loading...
Manage project dependencies effectively. Use when adding, updating, or auditing dependencies. Covers version management, security scanning, and lockfiles.
npx skill4agent add nguyenhuuca/assessment dependency-management# Node.js
npm audit
pnpm audit
# Python
pip-audit
safety check
# Go
govulncheck ./...
# Rust
cargo audit// package.json
{
"dependencies": {
"exact": "1.2.3", // Exactly 1.2.3
"patch": "~1.2.3", // 1.2.x (patch updates)
"minor": "^1.2.3", // 1.x.x (minor updates)
"range": ">=1.2.3 <2.0.0" // Range
}
}package-lock.jsonpnpm-lock.yamlpoetry.lockuv.lockgo.sumCargo.lock# Node.js
npx depcheck
# Python
pip-autoremove
# Go
go mod tidy