What problem does it solve?
It prevents breaking changes and risky upgrades when moving a Next.js app to a newer major version by aligning the upgrade to official migration guidance.
Core Features & Use Cases
- Upgrade planning from your current versions: Detects the installed Next.js (and related) versions from
package.json to choose the correct migration path, including incremental upgrades for large jumps.
- Automated codemod application: Runs Next.js codemods for known breaking changes to reduce manual edits and speed up compliance with newer APIs.
- Dependency and compatibility updates: Upgrades Next.js and peer dependencies together and then applies any required manual changes (config, deprecated features, and TypeScript types).
- Use Case: You maintain an invoicing web app on an older Next.js major release; this Skill helps upgrade to the newest stable version without runtime or build failures by following the correct versioned guide steps and codemods.
Quick Start
Ask the AI to upgrade your project to the latest Next.js version by reading your package.json, applying the relevant codemods from the official migration guides, then updating Next.js and peer dependencies and running a build and dev smoke test.