dependency-management
Installation
SKILL.md
Dependency Management
Safely manage project dependencies at scale.
Version Strategy
Pinning Approaches
| Strategy | Format | Risk | Best For |
|---|---|---|---|
| Exact | 1.2.3 |
Low | Docker, CI, production |
| Caret | ^1.2.3 |
Medium | Libraries, apps with good tests |
| Tilde | ~1.2.3 |
Low-Medium | Conservative updates |
| Range | >=1.2.3 <2.0.0 |
High | Rare, legacy |
| Floating | * |
Very High | Never in production |
Rule: Pin exact versions for production, caret for libraries.