What problem does it solve?
This Skill automates the complex and often error-prone task of managing project dependencies, saving you time and reducing security risks. It intelligently detects your project's language (Rust, Python, Node.js) and uses the appropriate tooling to add, update, remove, and audit dependencies, ensuring your codebase remains secure, stable, and up-to-date.
Core Features & Use Cases
- Platform-Aware Management: Automatically detect project type and use
cargo, uv, npm, or pnpm for seamless dependency operations.
- Security Audits: Perform comprehensive security checks using
cargo audit, safety, pip-audit, or npm audit to identify and mitigate vulnerabilities.
- Dependency Research & Recommendation: Get intelligent recommendations for new dependencies, complete with evaluation criteria like maintenance, popularity, and security.
- Use Case: Keep your project dependencies secure and up-to-date without manual effort. Automatically audit for vulnerabilities, add new packages, and resolve conflicts, ensuring a healthy and stable codebase.
Quick Start
Add a new dependency to your project.
The AI will detect your project's language and use the correct package manager.
Example for Rust:
cargo add serde
Example for Python:
uv add pydantic
Example for Node.js:
npm install express