thedaviddias/front-end-checklist

dependency-audit

Use when reviewing a project's security posture, setting up CI pipelines, or responding to a reported vulnerability in a dependency.

First seen Jun 19, 2026

Installation

$ npx skills add thedaviddias/front-end-checklist --skill dependency-audit

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from thedaviddias/front-end-checklist · top by installs.

npx skills add thedaviddias/front-end-checklist

Browse all from thedaviddias/front-end-checklist

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 74.1K
License MIT
Default branch main
Open issues 5
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
category
security
priority
high
difficulty
beginner
estimatedTime
15
source
frontendchecklist.io
url
https://frontendchecklist.io/en/rules/security/dependency-audit

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,859 B
  • docs SUMMARY.md 156 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 10 installs

SKILL.md

Audit dependencies for known vulnerabilities

Third-party packages are the most common attack surface in modern web applications. The 2021 Log4Shell incident, the 2022 node-ipc supply-chain attack, and countless npm package hijackings demonstrate that a single vulnerable transitive dependency can compromise every application that depends on it. Automated, continuous scanning drastically reduces the window between a CVE being published and your team being aware of it.

Quick Reference

  • Run pnpm audit (or npm audit) before every production deployment
  • Integrate automated dependency scanning in CI (GitHub Dependabot or Snyk)
  • Treat critical and high severity findings as release blockers
  • Pin transitive dependencies with a lock file committed to version control

Check

Check the project's dependencies for known security vulnerabilities using the package manager audit command.

Fix

Upgrade, patch, or replace vulnerable dependencies and configure automated scanning in the CI pipeline.

Explain

Explain how supply-chain attacks work and why dependency auditing is a critical part of modern application security.

Code Review

Review the lock file and package.json for unpinned version ranges, abandoned packages, and any packages flagged in recent CVE databases.


For full implementation details, code examples, and framework-specific guidance, see references/rule.md.

Rule page: https://frontendchecklist.io/en/rules/security/dependency-audit