What problem does it solve? Building modern Next.js applications requires navigating complex App Router concepts like Server Components, streaming, parallel routes, and caching strategies, which often leads to architectural mistakes and performance issues. ## Core Features & Use Cases - Server Component Patterns: Implement data fetching, Suspense streaming, and proper Server/Client component boundaries with 'use client' directives. - Advanced Routing: Set up parallel routes, intercepting routes for modals, route handlers for APIs, and dynamic metadata generation for SEO. - Server Actions & Caching: Build mutations with Server Actions, revalidate data with tags and paths, and configure ISR caching strategies. - Use Case: When building an e-commerce product page, use this Skill to structure the page with a blocking product header, stream in reviews and recommendations via Suspense boundaries, and handle add-to-cart with a Server Action that revalidates the cart cache. ## Quick Start Ask the AI to scaffold a Next.js App Router product page with Server Components, streaming Suspense boundaries, and a Server Action for mutations.