Agent skill
install-dependencies
Use when adding project dependencies. Defines dependency management rules and language-specific patterns.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/install-dependencies
SKILL.md
Install Dependencies
Philosophy
Core Principle: Let package managers handle version resolution automatically. Never specify version numbers unless absolutely necessary.
Why This Approach
- Package managers are smarter: Modern package managers (uv, npm, cargo) resolve compatible versions automatically
- Avoid version conflicts: Manual version specifications often create dependency hell
- Get latest features: Always use the newest compatible versions
- Simpler maintenance: No need to manually track and update versions
- Trust the ecosystem: Package managers understand semver and compatibility better than manual pinning
Universal Rules
✅ DO:
- Add dependency names without version numbers
- Let the package manager resolve versions
- Trust the lock file (package-lock.json, Cargo.lock, uv.lock)
- Update dependencies regularly through the package manager
❌ DON'T:
- Specify version numbers (>=, ^, ~, =)
- Manually pin versions without good reason
- Override package manager decisions
- Commit version specifications to dependency files
Exception Case
The ONLY time to specify a version is when there's a known breaking change or compatibility issue that requires pinning to a specific version.
Requirements for version pinning:
- Must be documented with a comment explaining why
- Must be treated as temporary until the issue is resolved
- Should include link to issue/ticket tracking the problem
Example:
dependencies = [
"problematic-lib", # Pinned to v1.2.3 due to breaking change in v1.3.0 (see issue #123)
]
Language-Specific Details
For language-specific syntax and examples:
- Python: See PYTHON.md
- TypeScript/JavaScript: See TYPESCRIPT.md
- Rust: See RUST.md
Workflow
- Add dependency: Add dependency name only (no version)
- Let package manager resolve: Run the appropriate install/sync command
- Verify: Check that dependency was resolved and installed
- Commit lock file: Always commit the updated lock file
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?