Next.js App Router — Skill

SkillMonitoring & ops

Ensure correct Next.js App Router architecture, rendering strategy, and data fetching. Use whenever working under /app — routing, layouts, server/client component boundaries, data fetching, Suspense, and Server Actions. Defaults to Server Components and adds 'use client' only for interactivity. Not for the Pages Router (/pages).

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Next.js App Router — Skill skill

What this skill tells your AI

The instructions your AI receives, as published by asymmetric-al/core in .agents/skills/nextjs-app-router/SKILL.md and read by ahel’s review.

Name: nextjs-app-router Purpose: Ensure correct App Router architecture, rendering strategy, and data fetching in Next.js. Use this skill whenever working under /app.

Applies when: Routing, layouts, server/client boundaries, data fetching, Suspense, Server Actions. Do not use when: Working in the Pages Router (/pages) or non-Next.js projects.

Rules

  • Server-first: Default to Server Components; add 'use client' only for interactivity or browser APIs.
  • Routing/layouts: Use layout.tsx for shared UI; keep layouts stable; use route groups (group) for organization.
  • Data fetching: Fetch in Server Components by default and colocate with usage.
  • Rendering strategy: Choose static, cached, or dynamic intentionally; avoid accidental dynamic rendering.
  • Client components: Keep them small, prop-driven, and avoid server data fetching inside them.
  • Suspense/streaming: Use <Suspense> for slow or user-specific UI.
  • Mutations: Prefer Server Actions and invalidate caches as needed.
  • Errors: Use error.tsx and not-found.tsx for route-level handling.

Workflow

  1. Decide server vs client boundaries first.
  2. Choose the rendering strategy (static/cached/dynamic).
  3. Fetch data in the closest Server Component.
  4. Isolate interactivity into small Client Components.
  5. Add Suspense boundaries for dynamic or slow UI.
  6. Use Server Actions for mutations and add error boundaries.

Checklists

Implementation checklist

  • Server Components used by default
  • Client Components are small and justified
  • Data fetching is colocated and not duplicated
  • Rendering strategy is explicit
  • Suspense isolates dynamic UI
  • Server Actions used for mutations

Review checklist

  • No accidental 'use client' on large trees
  • No server data fetching inside client-only components
  • Errors handled via error.tsx / not-found.tsx

Minimal examples

Server Component (default)

export default async function Page() {
  const data = await getData();
  return <View data={data} />;
}

Client Component (isolated)

"use client";

export function Button({ onClick }: { onClick: () => void }) {
  return <button onClick={onClick}>Click</button>;
}

Layout usage

export default function Layout({ children }: { children: React.ReactNode }) {
  return (
    <>
      <Header />
      {children}
    </>
  );
}

Common mistakes / pitfalls

  • Marking entire pages as 'use client'
  • Fetching server data in Client Components
  • Reading request data in shared/cached logic
  • Overusing route segment config instead of code-local controls
  • Mixing routing concerns with component UI logic

Signals

GitHub stars
391
Forks
7
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
nextjs-app-router
Source
github.com/asymmetric-al/core