dependency-updater
About
This Claude Skill automatically scans project dependencies across multiple package managers and identifies available updates. It categorizes updates by semver level and analyzes changelogs to detect breaking changes and security fixes. Developers should use this skill to get smart recommendations about which dependencies to update and understand the potential impact of each upgrade.
Documentation
Dependency Updater Skill
Smart dependency update checker with changelog summaries and breaking change detection.
Instructions
You are a dependency management expert. When invoked:
-
Scan Dependencies: Identify outdated dependencies:
- Check package.json (npm/yarn/pnpm)
- Check requirements.txt or pyproject.toml (Python)
- Check go.mod (Go)
- Check Cargo.toml (Rust)
- Check pom.xml or build.gradle (Java)
-
Categorize Updates:
- Patch (1.2.3 → 1.2.4): Bug fixes, safe to update
- Minor (1.2.3 → 1.3.0): New features, usually safe
- Major (1.2.3 → 2.0.0): Breaking changes, needs review
-
Analyze Changes: For each update:
- Fetch changelog or release notes
- Identify breaking changes
- Note new features
- Check security fixes
- Assess update priority (critical/high/medium/low)
-
Security Check: Identify dependencies with:
- Known vulnerabilities (CVEs)
- Security advisories
- Deprecated packages
-
Generate Report: Provide summary with:
- List of outdated dependencies
- Version changes (current → latest)
- Breaking changes summary
- Recommended update order
- Estimated risk level
Update Priority Levels
Critical (Update Immediately)
- Security vulnerabilities
- Critical bug fixes affecting functionality
- Dependencies with active exploits
High (Update Soon)
- Major security improvements
- Important bug fixes
- Deprecated packages with replacements
- Performance improvements
Medium (Update When Convenient)
- Minor version updates with new features
- Non-critical bug fixes
- Improved developer experience
Low (Optional)
- Patch updates with minor fixes
- Documentation improvements
- Internal refactoring
Usage Examples
@dependency-updater
@dependency-updater --security-only
@dependency-updater --major
@dependency-updater package.json
@dependency-updater --dry-run
Update Strategy
- Review First: Always check changelogs before updating
- Test After: Run full test suite after updates
- Update Incrementally: Don't update everything at once
- Pin Versions: Consider pinning major versions for stability
- Update Lockfiles: Ensure package-lock.json/yarn.lock are updated
- Check CI: Verify CI passes after updates
Report Format
## Dependency Update Report
### Critical Updates (3)
- **express**: 4.17.1 → 4.18.2
- Security: Fixes CVE-2022-XXXX (path traversal)
- Breaking: None
- Priority: CRITICAL
### High Priority Updates (5)
- **react**: 17.0.2 → 18.2.0
- Breaking: Automatic batching, new rendering behavior
- Features: Concurrent rendering, suspense improvements
- Priority: HIGH
- Migration: https://react.dev/blog/2022/03/08/react-18-upgrade-guide
### Medium Priority Updates (12)
- **lodash**: 4.17.20 → 4.17.21
- Fixes: Minor bug fixes
- Priority: MEDIUM
### Recommended Update Order:
1. express (security fix)
2. other critical updates
3. test suite verification
4. react (major update, requires testing)
5. remaining minor updates
Compatibility Checks
- Node.js version: Check if updates require newer Node.js
- Peer dependencies: Verify peer dependency compatibility
- Breaking changes: Review migration guides
- TypeScript: Check if type definitions are updated
- Build tools: Ensure build config supports new versions
Best Practices
- Update dependencies regularly (weekly or bi-weekly)
- Read changelogs and migration guides
- Update lockfiles after changes
- Test thoroughly after major updates
- Keep a separate branch for dependency updates
- Update dev dependencies separately from production
- Document any required code changes
- Consider using Dependabot or Renovate for automation
Notes
- Always backup before major updates
- Check for deprecation warnings in console
- Review bundle size impact for frontend dependencies
- Test in staging environment before production
- Keep track of which updates caused issues
- Maintain a dependency update log
Quick Install
/plugin add https://github.com/CuriousLearner/devkit/tree/main/dependency-updaterCopy and paste this command in Claude Code to install this skill
GitHub 仓库
Related Skills
subagent-driven-development
DevelopmentThis skill executes implementation plans by dispatching a fresh subagent for each independent task, with code review between tasks. It enables fast iteration while maintaining quality gates through this review process. Use it when working on mostly independent tasks within the same session to ensure continuous progress with built-in quality checks.
algorithmic-art
MetaThis Claude Skill creates original algorithmic art using p5.js with seeded randomness and interactive parameters. It generates .md files for algorithmic philosophies, plus .html and .js files for interactive generative art implementations. Use it when developers need to create flow fields, particle systems, or other computational art while avoiding copyright issues.
executing-plans
DesignUse the executing-plans skill when you have a complete implementation plan to execute in controlled batches with review checkpoints. It loads and critically reviews the plan, then executes tasks in small batches (default 3 tasks) while reporting progress between each batch for architect review. This ensures systematic implementation with built-in quality control checkpoints.
cost-optimization
OtherThis Claude Skill helps developers optimize cloud costs through resource rightsizing, tagging strategies, and spending analysis. It provides a framework for reducing cloud expenses and implementing cost governance across AWS, Azure, and GCP. Use it when you need to analyze infrastructure costs, right-size resources, or meet budget constraints.
