dependency-management▌
aj-geddes/useful-ai-prompts · updated Apr 8, 2026
Comprehensive dependency management across JavaScript/Node.js, Python, Ruby, Java, and other ecosystems. Covers version control, conflict resolution, security auditing, and best practices for maintaining healthy dependencies.
Dependency Management
Table of Contents
Overview
Comprehensive dependency management across JavaScript/Node.js, Python, Ruby, Java, and other ecosystems. Covers version control, conflict resolution, security auditing, and best practices for maintaining healthy dependencies.
When to Use
- Installing or updating project dependencies
- Resolving version conflicts
- Auditing security vulnerabilities
- Managing lock files (package-lock.json, Gemfile.lock, etc.)
- Implementing semantic versioning
- Setting up monorepo dependencies
- Optimizing dependency trees
- Managing peer dependencies
Quick Start
Minimal working example:
# Initialize project
npm init -y
# Install dependencies
npm install express
npm install --save-dev jest
npm install --save-exact lodash # Exact version
# Update dependencies
npm update
npm outdated # Check for outdated packages
# Audit security
npm audit
npm audit fix
# Clean install from lock file
npm ci # Use in CI/CD
# View dependency tree
npm list
npm list --depth=0 # Top-level only
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Package Manager Basics | Package Manager Basics |
| Semantic Versioning (SemVer) | Semantic Versioning (SemVer) |
| Dependency Lock Files | Dependency Lock Files |
| Resolving Dependency Conflicts | Resolving Dependency Conflicts |
| Security Vulnerability Management | Security Vulnerability Management |
| Monorepo Dependency Management | Monorepo Dependency Management |
| Peer Dependencies | Peer Dependencies |
| Performance Optimization | Performance Optimization |
| CI/CD Best Practices | CI/CD Best Practices |
| Dependency Update Strategies | Dependency Update Strategies |
Best Practices
✅ DO
- Commit lock files to version control
- Use
npm cior equivalent in CI/CD pipelines - Regular dependency audits (weekly/monthly)
- Keep dependencies up-to-date (automate with Dependabot)
- Use exact versions for critical dependencies
- Document why specific versions are pinned
- Test after updating dependencies
- Use semantic versioning correctly
- Minimize dependency count
- Review dependency licenses
❌ DON'T
- Manually edit lock files
- Mix package managers (npm + yarn in same project)
- Use
npm installin CI/CD (usenpm ci) - Ignore security vulnerabilities
- Use wildcards (*) for versions
- Install packages globally when local install is possible
- Commit node_modules to git
- Use
latesttag in production - Blindly run
npm audit fix - Install unnecessary dependencies
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★42 reviews- ★★★★★Mei Dixit· Dec 20, 2024
Keeps context tight: dependency-management is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Dhruvi Jain· Dec 16, 2024
dependency-management fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Noor Abbas· Dec 16, 2024
I recommend dependency-management for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Sophia Mehta· Dec 8, 2024
dependency-management is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Sofia Martinez· Nov 27, 2024
Useful defaults in dependency-management — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Oshnikdeep· Nov 7, 2024
Registry listing for dependency-management matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Soo Menon· Nov 7, 2024
Keeps context tight: dependency-management is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Rahul Santra· Nov 3, 2024
dependency-management has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Ganesh Mohane· Oct 26, 2024
dependency-management reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Ren Jain· Oct 26, 2024
dependency-management is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
showing 1-10 of 42