What problem does it solve? Updating a Dextinity project is tedious because the repo root, api/, admin/, and any site packages each have their own package.json and package-lock.json, and every core @dextinity/* dependency must be pinned to the same exact version. This Skill automates finding, bumping, installing, and verifying a minor or patch update across all of them. ## Core Features & Use Cases - Cross-package discovery: Finds every @dextinity/* dependency in the root, api/, admin/, and any site packages (detected by content, not path), and distinguishes core packages from non-core ones. - Safe version targeting: Queries npm for the newest stable version in the current major, filtering out canary, beta, and rc pre-releases. - Install and verification: Runs npm install in each directory, verifies lockfiles moved, and runs lint/tests with --if-present, reporting failures without attempting risky fixes. - Use Case: You ask to "update Dextinity to the latest 8.x" — the Skill bumps 8.20.4 to 8.21.0 in every package.json, installs in each directory, runs lint and tests, and reminds you to start the dev server so generated files refresh. ## Quick Start Ask the assistant to update all Dextinity packages in this project to the latest minor or patch version of the current major.