Help us improve
Share bugs, ideas, or general feedback.
From dependency-manager
Safely updates npm/pip dependencies by risk category (patch/minor/major), verifies changelogs/compatibility, runs tests per batch, commits changes, and outputs summary report.
npx claudepluginhub rohitg00/awesome-claude-code-toolkit --plugin dependency-managerHow this command is triggered — by the user, by Claude, or both
Slash command
/dependency-manager:update-depsThe summary Claude sees in its command listing — used to decide when to auto-load this command
Safely update project dependencies with compatibility verification. ## Steps 1. List all outdated dependencies: `npm outdated`, `pip list --outdated`. 2. Categorize updates by risk: - **Patch**: Bug fixes, safe to auto-update. - **Minor**: New features, backward compatible. - **Major**: Breaking changes, requires review. 3. For each update candidate: - Read the changelog for breaking changes. - Check peer dependency compatibility. - Verify TypeScript type compatibility if applicable. 4. Apply updates in order: patch first, then minor, then major. 5. After each batch, run...
/dependency-upgradeSafely upgrades outdated dependencies one at a time with test verification after each. Auto-detects package manager and categorizes by risk level.
/update-node-depsAnalyzes Node.js dependencies from package.json, assesses update risks (safe/caution/danger), proposes code changes, and generates updated package.json.
/update-node-depsAnalyzes Node.js dependencies from package.json or npm outdated, evaluates update risks, researches changes, suggests safe upgrades with code fixes, and generates updated package.json.
/update-node-depsSafely updates Node.js dependencies: analyzes risks from changelogs, suggests code changes, generates updated package.json, and plans progressive upgrades.
/update-node-depsSafely analyzes and updates Node.js dependencies: assesses risks by version type/breaking changes, suggests code fixes, generates updated package.json.
/update-node-depsSafely updates Node.js dependencies: analyzes package.json, researches latest versions, assesses semver risks (safe/caution/dangerous), suggests code changes, generates updated package.json.
Share bugs, ideas, or general feedback.
Safely update project dependencies with compatibility verification.
npm outdated, pip list --outdated.Dependency Updates Applied:
Patch (safe):
- <pkg> 1.0.0 -> 1.0.1
Minor (compatible):
- <pkg> 1.0.0 -> 1.1.0
Major (breaking - review required):
- <pkg> 1.0.0 -> 2.0.0: <breaking change summary>
Tests: <pass/fail after updates>