agentsclimarketplace

Dependency audit

Skill byerlikaya/claude-starter-kit/claude-starter/skills/dependency-audit

Dependency audit: known CVEs, licence compliance, abandoned/outdated packages, lockfile integrity, and a justification for every new dependency. Trigger phrases: "dependency", "dependency audit", "npm audit", "package security", "CVE", "license"From its SKILL.md

Install
npx -y skills add byerlikaya/claude-starter-kit --skill dependency-audit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 22 stars22 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.
  • runs commandsInstructs the agent to run 3 commands, including `npm audit --production` and 2 more.

SKILL.md

1.3 KB, 217 tokens by cl100k_base, as published. Nobody here has run it

Dependency Audit

Audit axes

  1. Known vulnerabilities (CVE): audit appropriate to the ecosystem
    npm audit --production           # Node
    dotnet list package --vulnerable # .NET
    pip-audit                        # Python
    
  2. License compliance: flag licenses incompatible with the project such as copyleft/GPL (a risk in commercial closed source).
  3. Maintenance status: note abandoned / long-unmaintained / single-maintainer packages.
  4. Transitive dependencies: also scan vulnerabilities in indirect dependencies.
  5. Lockfile integrity: lockfile committed and consistent with the manifest; versions pinned.
  6. Justification for new dependencies: is it actually needed? Don't add a heavy package for a single small function (supply-chain surface).

Output

Severity-sorted list: package · version · issue (CVE/license/maintenance) · upgrade path.

DoD

  • 0 known HIGH/CRITICAL vulnerabilities; licenses compliant; lockfile consistent; every new package justified.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.