Sub-skill of technology-stack-modernization: Dependency Management.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill dependency-management --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dependency Management?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-dependency-management-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: technology-stack-modernization-dependency-management
description: 'Sub-skill of technology-stack-modernization: Dependency Management.'
version: 1.0.0
category: business
type: reference
scripts_exempt: true
---
# Dependency Management
## Dependency Management
1. **Pin major versions, allow minor updates:**
```toml
# Good: Allows security updates
dependencies = ["pandas>=2.0.0,<3.0.0"]
# Bad: Too strict, misses security patches
dependencies = ["pandas==2.0.0"]
```
2. **Test after each major update:**
- Update one package at a time
- Run full test suite
- Check for deprecation warnings
- Validate outputs
3. **Document breaking changes:**
```markdown
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.