What problem does it solve? Upgrading Next.js across major versions involves breaking API changes, deprecated features, and dependency coordination that are easy to miss when done manually. This Skill walks through the official migration path so nothing is skipped. ## Core Features & Use Cases - Version Detection and Upgrade Planning: Reads package.json to identify the current Next.js version and determines the incremental migration path for major version jumps. - Automated Codemods: Runs official @next/codemod transforms such as next-async-request-api to apply breaking changes automatically. - Dependency and Type Updates: Upgrades next, react, react-dom, and their TypeScript type packages together, then verifies the result with build and dev server checks. - Use Case: A project on Next.js 13 needs to reach the latest release. The Skill detects the version, applies codemods for each intermediate major release, updates dependencies, and validates the build. ## Quick Start Upgrade my Next.js project to the latest version and run the necessary codemods.