Dependency audit
Marketplace for AI Agent Skills, Prompts, Agents, and MCP servers. Powered by @skillscraft.
npx -y skills add Pratiyush/agent-catalog --skill dependency-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Audit project dependencies for known vulnerabilities, outdated packages, and license compliance issues. Use when the user asks to check dependencies, audit packages, review licenses, or assess supply chain security.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, as published. Nobody here has run it
Dependency Audit
When to use this skill
Activate when the user wants to:
- Audit npm dependencies for vulnerabilities or outdated versions
- Check license compliance across the dependency tree
- Assess supply chain risk before adding a new dependency
Instructions
- For vulnerability and staleness checks, run:
node scripts/audit-packages.mjs <project-directory> - For license compliance, run:
node scripts/check-licenses.mjs <project-directory> - Parse the JSON output from each script
- Present findings sorted by severity: critical > high > medium > low
- Suggest specific remediation steps for each issue
Output format
The audit script outputs:
{
"project": "./my-app",
"packageManager": "npm",
"totalDependencies": 42,
"issues": [
{
"package": "lodash",
"version": "4.17.15",
"issue": "outdated",
"severity": "medium",
"message": "Current: 4.17.15, no repository field in package.json"
}
],
"summary": { "critical": 0, "high": 0, "medium": 1, "low": 2 }
}
Gotchas
- Only supports npm, yarn, and pnpm (reads
package-lock.json,yarn.lock, orpnpm-lock.yaml) - Does not fetch live vulnerability data from remote APIs — analyzes lock file structure and package metadata locally
- License check walks
node_modules/— runnpm installfirst if modules are missing - GPL-family licenses are flagged as warnings in MIT/Apache projects, not errors