What problem does it solve? Next.js 16 introduced breaking changes — async request APIs, proxy.ts replacing middleware.ts, cacheHandlers replacing cacheHandler, and removed Pages Router patterns — that cause build failures and runtime errors when developers rely on outdated knowledge. This Skill provides current, version-accurate guidance so your App Router code works correctly the first time. ## Core Features & Use Cases - App Router Architecture Guidance: Covers Server Components, Client Components, Server Actions, Cache Components with 'use cache', layouts, and file conventions. - Migration Detection: Built-in validation rules flag deprecated patterns like getServerSideProps, next/router, next/head, and single-argument revalidateTag, with concrete upgrade paths. - Scaffolding & Tooling: Provides correct create-next-app flags, Geist font fixes for Tailwind v4 + shadcn, bundle analyzer usage, and upgrade commands. - Use Case: You are migrating a Pages Router app to Next.js 16 and your build fails on cookies() calls. This Skill identifies that cookies() is now async and shows the exact await pattern to fix it. ## Quick Start Ask the AI to review your Next.js app directory for Next.js 16 compatibility issues and apply the recommended App Router fixes.