What problem does it solve? Dependency versions drift across workspaces in an npm monorepo, causing mismatched ranges, broken lock files, and surprise major-version bumps that are hard to detect until a build fails. ## Core Features & Use Cases - Check and fix mismatches: Runs syncpack lint/fix and manypkg check/fix to align dependency ranges across all workspaces, then resyncs the lock file with npm install. - Controlled updates: Performs a full npm update --workspaces sweep with major-version caps enforced through root overrides, including handling of EOVERRIDE and peer-dependency conflicts. - Config management: Creates a starter .syncpackrc.json from a template and maintains version groups, semver groups, and banned-dependency rules over time. - Use Case: Before a release, run the update operation to sweep patch and minor bumps across every workspace, cap unwanted majors like TypeScript or ESLint in root overrides, and verify the lock file stays consistent. ## Quick Start Ask the agent to run /monorepo-deps update to check, fix, and bump all dependencies across the npm workspaces in this repository.