What problem does it solve? Manually checking every dependency for known vulnerabilities across different ecosystems is slow and error-prone. This Skill detects the project's package manager from lock files, runs the matching native audit tool, and produces a severity-classified report with fix recommendations. ## Core Features & Use Cases - Multi-Ecosystem Scanning: Supports npm/yarn/pnpm/bun, Composer, pip, Cargo, Go, CocoaPods, and Bundler with their native audit commands. - Severity Classification: Parses tool output and groups findings into CRITICAL, HIGH, MEDIUM, and LOW tiers with advisory links and patched versions. - Optional Auto-Fix: Applies safe fixes via npm audit fix or cargo audit fix when the --fix flag is used, with manual guidance for other ecosystems. - Use Case: Before a release, run a full audit of a Node.js project to list all CRITICAL vulnerabilities and apply safe automatic fixes in one pass. ## Quick Start Audit this project's dependencies for vulnerabilities and report any critical or high severity findings with recommended fix versions.