What problem does it solve?
Many Next.js projects require manual, error-prone changes when moving across major versions; this Skill automates detection, codemod application, dependency updates, and verification to reduce regressions and migration effort.
Core Features & Use Cases
- Version detection: Reads package.json and related files to determine current Next.js and peer dependency versions.
- Codemod orchestration: Suggests and runs official @next codemods to automate breaking-change transformations.
- Dependency and config updates: Recommends and applies updates to next, react, react-dom, TypeScript types, and next.config adjustments; verifies with build and dev runs.
- Use Case: Migrate a monorepo or single app from Next.js 13 to 15 by applying incremental codemods, updating peer deps, addressing App Router changes, and validating the build.
Quick Start
Upgrade the project to the latest Next.js by detecting the current version, applying the official codemods, updating peer dependencies, and running a build to verify success.