What problem does it solve?
Upgrading Next.js often breaks builds due to dependency changes, codemods, and version-specific migration steps, forcing teams to debug issues manually.
Core Features & Use Cases
- Current version detection: Reads package.json to determine the existing Next.js and related React dependencies before choosing the right migration path.
- Official guide + codemod driven migration: Pulls the relevant Next.js upgrade guidance and applies recommended codemods to automate common breaking-change updates.
- Dependency and compatibility updates: Updates Next.js and peer dependencies together, then addresses TypeScript-related type alignment when applicable.
- Use case: When moving a production app from Next.js 14 to 15, this Skill helps you apply codemods, update dependencies, check for required manual changes, and verify the upgrade through build and runtime testing.
Quick Start
Ask: Upgrade my project to the latest Next.js version by following the official migration guides, applying the relevant codemods, and verifying the result with a build and dev run.