skills/codebase-cleanup-deps-audit/SKILL.md
Review project dependencies for security, licensing, maintenance, and supply-chain risk. Use this whenever the user asks for a dependency audit, `npm audit` help, package vulnerability review, SBOM or license compliance checks, stale package cleanup, upgrade planning, Dependabot/Renovate triage, or a production-readiness scan that should include third-party dependencies, even if they do not explicitly ask for a "dependency audit."
npx skillsauth add cenjie/skills codebase-cleanup-deps-auditInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to turn a vague "check our dependencies" request into a concrete audit with prioritized remediation. The goal is not to dump scanner output. The goal is to tell the user what matters, what can wait, and what to change safely.
Use this skill when the user asks to:
npm audit issues, or supply-chain riskDo not use this skill for:
Start by identifying scope before recommending fixes:
If the repo has no dependency manifests or lockfiles, say that clearly and stop the audit rather than pretending to have findings.
Follow this sequence. Skip steps that are impossible in the current environment, but say what was skipped.
Prefer project-native tools when available. Examples:
npm audit, pnpm audit, yarn audit, npm outdated, lockfile inspectionpip-audit, safety, poetry show --outdated, pip list --outdatedcargo audit, cargo outdatedgovulncheck, go list -m -u allbundle audit, bundle outdatedIf tool execution is unavailable, infer what you can from manifests, lockfiles, and version ranges, and label those findings as lower-confidence.
Prioritize issues using context, not scanner output alone:
Favor the smallest safe change that materially reduces risk:
Explain the tradeoff for each recommendation so the user can decide quickly.
Keep the report concise, ranked, and actionable. Do not paste raw audit JSON unless the user asks for it.
Use this structure:
Repeat only for findings that truly matter.
--force style upgrades casually; mention regression risk when using them.Open resources/implementation-playbook.md when you need deeper examples for multi-ecosystem discovery, license analysis, supply-chain review, remediation scripting, or CI monitoring patterns.
development
Provides React Native performance optimization guidelines for FPS, TTI, bundle size, memory leaks, re-renders, and animations. Applies to tasks involving Hermes optimization, JS thread blocking, bridge overhead, FlashList, native modules, or debugging jank and frame drops.
development
Design engineering principles for making interfaces feel polished. Use when building UI components, reviewing frontend code, implementing animations, hover states, shadows, borders, typography, micro-interactions, enter/exit animations, or any visual detail work. Triggers on UI polish, design details, "make it feel better", "feels off", stagger animations, border radius, optical alignment, font smoothing, tabular numbers, image outlines, box shadows.
development
General-purpose Static Application Security Testing (SAST) skill for code vulnerability analysis. Trigger when the user asks to: "analyze code for vulnerabilities", "review code security", "find security bugs", "do a SAST scan", "check for [vulnerability type] in code", "audit source code", or requests a security code review of any language or framework. Covers 34 vulnerability classes across web, API, auth, mobile, and logic layers.
tools
Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with EAS build pipelines or deployment automation.