What problem does it solve? Slow dev server startup and hot module replacement in large Next.js applications waste developer time, and choosing between Turbopack and webpack for dev and production builds is confusing across Next.js versions. ## Core Features & Use Cases - Turbopack Dev Guidance: Explains that Next.js 16+ runs next dev with Turbopack by default, using incremental bundling and file-system caching for faster restarts. - Bundler Selection: Clarifies when to fall back to webpack (Turbopack bugs or webpack-only plugins) and how production build behavior varies by Next.js version. - Bundle Analysis: Covers the experimental Bundle Analyzer in Next.js 16.1+ for inspecting output and trimming heavy dependencies. - Use Case: A developer notices slow HMR in a large Next.js app; this Skill helps confirm Turbopack is active, the .next cache is intact, and the Bundle Analyzer is used to find oversized dependencies. ## Quick Start Ask the AI to diagnose why your Next.js dev server starts slowly and whether Turbopack caching is configured correctly.