数据分析

NextJS

构建并调试 Next.js App Router 应用——服务端/客户端边界、缓存、Server Actions、鉴权与部署。

它能做什么

围绕 App Router 的实际开发组织知识:默认服务端组件的边界划分、并行数据请求、Suspense 流式渲染、Server Actions 与失效逻辑,并整理 Next 14–16 之间的行为差异。覆盖常见排错场景——水合不匹配、动态读取连带整条路由走动态、缓存陈旧、围绕 CVE-2025-29927 的鉴权加固;按部署目标(Vercel、Docker、独立服务、静态导出)给出对应构建配置。会记下你项目的偏好(包管理器、样式方案、命名、目录结构、ORM 等)并在后续会话中自动沿用。

什么时候用它

  • 排查 "useState only works in Client Components" 与水合不匹配类错误
  • 定位页面陈旧、ISR 行为异常,或在写入后忘记失效缓存导致 UI 滞后
  • 接入登录会话、受保护路由,以及 Server Actions 的鉴权与输入校验
  • 在 Vercel、Docker、独立服务、静态导出之间做出选择并完成构建配置

技能文档

Setup

All persistent data for this skill lives in ~/Clawic/data/nextjs/. On first use, read setup.md for project integration.

Configuration

User-dependent variables. Defaults apply until the user states a preference; store them in ~/Clawic/data/nextjs/config.yaml.

VariableTypeDefaultEffect
package_managernpm | pnpm | yarn | bunnpmSelects install/run command syntax, lockfile references, and Docker corepack/cache-mount advice
deployment_targetvercel | docker | standalone | static-exportvercelDrives build config (output mode), env-var handling, and which parts of deployment.md apply; static-export disables SSR/ISR/Server Actions guidance
stylingtailwind | css-modules | styled-components | vanilla-extracttailwindShapes styling examples and the RSC-compatibility caveats (styled-components needs a client boundary/registry)
component_namingPascalCase | kebab-casePascalCaseSets filenames used in generated components and import examples
folder_conventionfeature-folders | type-foldersfeature-foldersGoverns where new routes, components, and colocated files are placed

Preference areas to record as the user reveals them:

  • conventions — component/file naming, folder organization, barrel-file usage
  • stack — TypeScript, ORM (Prisma/Drizzle), auth library, state management
  • proactivity — how eagerly to flag caching/boundary/performance issues vs only on request
  • safety posture — how proactively to surface auth hardening (data-access layer, CVE-2025-29927) vs only when asked

When To Use

  • Building or debugging a Next.js App Router application — routing, rendering, data, deploy
  • Boundary errors: "useState only works in Client Components", hydration mismatch, "functions cannot be passed to Client Components"
  • Cache surprises: stale pages, data not updating, ISR behaving "randomly"
  • Wiring auth: sessions, protected routes, role checks
  • Shipping: Vercel, Docker, standalone server, static export
  • Not for plain React questions (see react skill) or Pages Router deep-dives — App Router is assumed throughout

Architecture

~/Clawic/data/nextjs/
├── memory.md          # Project conventions, patterns
└── projects/          # Per-project learnings

See memory-template.md for the file formats. If you have data at an old location (~/nextjs/ or ~/clawic/nextjs/), move it to ~/Clawic/data/nextjs/.

Quick Reference

SituationGo to
First session with a user or projectsetup.md, then memory-template.md
Page slow, sequential awaits, streaming, Server Actionsdata-fetching.md
Stale or over-fresh data, revalidate, ISR, cache debuggingcaching.md
Login, sessions, protected routes, rolesauth.md
Modals over pages, parallel routes, layouts, navigationrouting.md
Docker, self-hosting, env vars, static exportdeployment.md
Anything else Next.jsApply Core Rules below; open the closest file only if they don't settle it

Core Rules

1. Server by Default, Client at the Leaves

'use client' marks a boundary, not one component: everything imported below it ships to the browser. Put interactivity in leaf components; a 'use client' layout de-RSCs its whole subtree.

2. Parallel Fetches or You Pay the Sum

Sequential awaits cost sum(t1..tn); Promise.all costs max(). Three 300ms fetches: 900ms sequential, 300ms parallel. Chain awaits only when one call genuinely needs the other's result.

3. One Dynamic Read Poisons the Whole Route

cookies(), headers(), or an uncached fetch anywhere in the tree — layouts included — forces the entire route to render per-request. Read them in the leaf that needs them, behind ``.

4. Dev Lies About Caching

next dev renders everything dynamically. Verify cache behavior only with next build && next start; debug headers and build-output symbols are in caching.md.

5. Middleware Redirects, the Data Layer Enforces

Middleware does optimistic cookie checks for UX; every Server Action, route handler, and query re-verifies the session. CVE-2025-29927 let a spoofed request header skip middleware entirely — patched versions and the data-access-layer pattern in auth.md.

6. Server Actions Are Public Endpoints

Anyone can POST to an action with its id; a hidden button protects nothing. First lines of every action: session check, then input validation.

7. Write, Revalidate, Then Redirect

Every mutating action ends with revalidatePath/revalidateTag, or the UI keeps serving stale cache. redirect() throws — call it after the try/catch, never inside one.

8. NEXT_PUBLIC_ Is Baked at Build Time

Inlined into the bundle during next build; changing it at runtime does nothing. Unprefixed vars stay server-only — and any differing public var means one Docker image per environment (deployment.md).

9. Suspense Converts Blocking Into Streaming

TTFB = the slowest await chain outside any Suspense boundary. Wrap each independent slow fetch in its own `` so the shell paints immediately.

Server vs Client

Server ComponentClient Component
Default in App RouterRequires 'use client'
Can be asyncCannot be async
Access backend, env varsAccess hooks, browser APIs
Zero JS shippedJS shipped to browser

Decision: Start Server. Add 'use client' only for: useState, useEffect, event handlers, browser APIs.

The boundary is a serialization boundary. Props crossing server→client must serialize: plain objects, arrays, Date, Map, Set — yes; functions and class instances — no (exceptions: Server Actions passed as props, and Promises, which the client unwraps with use()). A Server Component can't be imported into a Client Component — pass it as children.

Version Gates

  • next >=13.4 — App Router stable; everything here assumes it
  • next 14fetch cached by default (the version where the default flips)
  • next >=15fetch and GET route handlers uncached by default; params/searchParams are Promises, await them; React 19 (useActionState)
  • next >=16 — Turbopack is the default bundler; synchronous params access removed; middleware.ts renamed proxy.ts (old name deprecated)

Traps

TrapWhy it failsDo instead
try/catch around redirect()it throws NEXT_REDIRECT; your catch swallows itredirect after the try, or rethrow
Fetching your own API route from a Server Componentextra HTTP round-trip, lost typescall the DB/function directly
useEffect for initial datadouble round-trip (HTML, then JSON), no streamingfetch in a Server Component
cookies() in root layoutwhole app goes dynamic (Rule 3)read in the consuming leaf
new PrismaClient() at module top leveldev hot-reload piles up connections until the DB refusesglobalThis singleton
Date.now()/Math.random() in renderserver and client HTML differ → hydration errorcompute in useEffect, or pass from server as prop
Secrets imported into client codebundled into public JSimport 'server-only' in server modules — build fails on misuse
next/image with fill but no sizessrcset assumes 100vw; phones download desktop-size imagesset sizes to the actual rendered width
Heavy work or DB calls in middlewareruns on every matched request, before any cacheoptimistic checks only; real work in the route
router.push in a Server Componentno client router on the serverredirect()

Where Experts Disagree

QuestionCampsThe boundary
Server Actions vs route handlers for mutationsactions-everywhere vs RESTActions for your own app's forms (progressive enhancement, typed); handlers for webhooks, external clients, explicit status codes
Edge vs Node runtimeedge-first vs Node-defaultNode unless the route is latency-critical AND every dependency runs on edge; a single native module decides it for you
Still need SWR/React Query?server-only vs client cacheServer fetch for read-mostly pages; reach for a client library only for polling, optimistic UI, or infinite scroll
Vercel vs self-hostDX vs cost/controlVercel to validate; revisit when ISR/image bills grow or compliance demands your infra — the move is covered in deployment.md

More Clawic skills, get them at https://clawic.com/skills/nextjs (install if the user confirms):

  • react — React fundamentals and patterns
  • typescript — Type safety for better DX
  • prisma — Database ORM for Next.js apps
  • tailwindcss — Styling with utility classes
  • nodejs — Server runtime knowledge

Feedback

Part of Clawic, the verified skill library. Get this skill: https://clawic.com/skills/nextjs.

常见问题

是否覆盖 Pages Router?
不覆盖。默认假设使用 App Router(Next 13.4+),Pages Router 的深入内容不在范围内。
会沿用我项目原有的约定吗?
会。包管理器、样式方案、组件命名、目录组织、ORM、鉴权库以及积极程度都会被记录并在后续会话中继续套用。
是否包含 Next 15 和 16 的变更?
包含。版本说明里写到了 15 的异步 params、默认不缓存的 fetch 与 GET 路由处理器,以及 16 默认启用 Turbopack、`middleware.ts` 更名为 `proxy.ts` 等变化。

相关技能

按规则构建、调试和审查 React 应用,覆盖组件、状态、表单、性能与 React 19 特性。

245 次安装3 星标

通过 curl 调用 JSON-RPC API 发布 Web 应用,并获得一个公开访问的网址。

152 次安装8 星标

排查并修复 Svelte 与 SvelteKit 的响应式、SSR 与构建问题,并把 Svelte 4 代码迁移到 runes。

62 次安装3 星标

通过自然语言提示生成交互式仪表盘、数据可视化与网页应用。

155 次安装5 星标

针对 Vue 3 响应式、组件、路由和性能问题,依据控制台报错与代码形态给出具体修复方案。

121 次安装8 星标

为 Node 与 TypeScript 项目设计 Prisma schema、编写类型安全查询,并解决迁移、连接池与 N+1 关联加载问题。

101 次安装2 星标