nextjs-16-architecture
SKILL.md
Next.js 16 Architecture
Architecture patterns for Next.js 16 with Cache Components and feature-based organization.
Core Philosophy
- Dynamic by default, cache what you choose - Use
"use cache"explicitly - Fetch in smallest possible component - Don't prop-drill data
- Keep everything static, stream only dynamic - Use Suspense for dynamic parts
- Suspense boundaries high - Place in pages/layouts, not feature components