name: dependency-audit description: Audit npm dependencies for security vulnerabilities, outdated packages, unused deps, license compliance, and bundle impact. Use regularly for security hygiene, before major releases, or when bundle size grows unexpectedly.
Dependency Audit
Comprehensive audit of project dependencies for security, maintenance, and efficiency.
Scope
1. Security Vulnerabilities
- Run
npm auditfor known vulnerabilities - Check severity levels (critical, high, medium, low)
- Identify transitive dependency risks
- Review Dependabot/security advisories if available
2. Outdated Packages
- Compare current vs latest versions
- Identify packages with major version gaps
- Check for deprecated packages
- Review changelogs for breaking changes
3. Unused Dependencies
- Dependencies in package.json not imported anywhere
- devDependencies that should be dependencies (or vice versa)
- Duplicate functionality (multiple packages doing same thing)
- Per AGENTS.md: "Remove unused deps promptly"
4. License Compliance
- Identify licenses of all dependencies
- Flag copyleft licenses (GPL, AGPL) if problematic
- Check for license compatibility
- Document any commercial license requirements
5. Bundle Impact Analysis
- Large dependencies affecting client bundle
- Dependencies that should be dynamically imported
- Server-only packages accidentally in client bundle
- Tree-shaking effectiveness
6. Supply Chain Risk
- Packages with very few maintainers
- Packages with no recent updates (abandoned)
- Packages with suspicious update patterns
- Typosquatting risks
7. Core Dependency Health (project-specific)
Check health of key dependencies:
- Next.js - Framework updates, security patches
- Drizzle ORM - Database layer stability
- Supabase client - Auth/storage compatibility
- TanStack Query - Caching layer
- Radix UI / shadcn - Component primitives
- TipTap - Rich text editor
- dnd-kit - Drag and drop
- date-fns - Date handling
- Zod - Validation schemas
Actions
- Run
npm auditand capture output - Run
npm outdatedto list version gaps - Search for unused imports with grep patterns
- Check
package.jsonagainst actual imports - Analyze bundle with build output
Output Format
Security Findings
[SEVERITY: CRITICAL|HIGH|MEDIUM|LOW]
Package: package-name@version
Vulnerability: CVE or advisory ID
Description: What the vulnerability allows
Fix: Upgrade path or mitigation
Outdated Packages
Package: package-name
Current: x.y.z
Latest: a.b.c
Risk: Breaking changes likelihood
Action: Upgrade/Hold/Investigate
Unused Dependencies
Package: package-name
Type: dependency|devDependency
Evidence: Not found in codebase
Action: Remove from package.json
Bundle Impact
Package: package-name
Size: XXkB (gzipped)
Location: client|server|both
Issue: Should be server-only / dynamically imported
Dependency Management Rules (from AGENTS.md)
- Install via
npm install <package>@latest - Record rationale in PRs
- Remove unused deps promptly
- Do not edit
package.jsonor lockfiles directly (use CLI)
Post-Audit
Generate:
- Security remediation priority list
- Safe upgrade commands
- Packages to remove
- Bundle optimization opportunities
- Maintenance risk assessment
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
5个月前
tools
tools automation tools
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!