Agent Skills: Next.js Best Practices (App Router)

Build modern Next.js apps with App Router and best practices

UncategorizedID: academind/ai-config/modern-best-practice-nextjs

Install this agent skill to your local

pnpm dlx add-skill https://github.com/academind/ai-config/tree/HEAD/skills/modern-best-practice-nextjs

Skill Files

Browse the full folder contents for modern-best-practice-nextjs.

Download Skill

Loading file tree…

skills/modern-best-practice-nextjs/SKILL.md

Skill Metadata

Name
modern-best-practice-nextjs
Description
Build modern Next.js apps with App Router and best practices

Next.js Best Practices (App Router)

Next.js is a library that changes frequently - use web search or context7 MCP (via DocsExplorer agent) for exploring the current documentation.

Routing & Structure

  • Use the App Router in app/ for new work
  • Use nested layouts and route groups to organize sections
  • Keep server components as the default; add 'use client' only where needed

Data Fetching & Caching

  • Fetch data in React Server Components - AVOID fetching via useEffect() and fetch()
  • Use server actions ("Server Functions") for mutations, potentially in conjunction with React Hooks like useActionState

UI States

  • Provide loading.tsx and error.tsx for route-level UX
  • Use Suspense boundaries around async UI

Metadata & SEO

  • Use the Metadata API in layouts and pages
  • Prefer static metadata when possible; keep dynamic metadata minimal