Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Build Next.js 15 apps with App Router, server components, caching, auth, and production patterns.
Build Next.js 15 apps with App Router, server components, caching, auth, and production patterns.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
On first use, read setup.md for project integration.
User needs Next.js expertise β routing, data fetching, caching, authentication, or deployment. Agent handles App Router patterns, server/client boundaries, and production optimization.
Project patterns stored in ~/nextjs/. See memory-template.md for setup. ~/nextjs/ βββ memory.md # Project conventions, patterns βββ projects/ # Per-project learnings
TopicFileSetupsetup.mdMemory templatememory-template.mdRouting (parallel, intercepting)routing.mdData fetching & streamingdata-fetching.mdCaching & revalidationcaching.mdAuthenticationauth.mdDeploymentdeployment.md
Everything is Server Component in App Router. Add 'use client' only for useState, useEffect, event handlers, or browser APIs. Server Components can't be imported into Client β pass as children.
Fetch in Server Components, not useEffect. Use Promise.all for parallel requests. See data-fetching.md for patterns.
fetch is cached by default β use cache: 'no-store' for dynamic data. Set revalidate for ISR. See caching.md for strategies.
Use 'use server' functions for form submissions and data mutations. Progressive enhancement β works without JS. See data-fetching.md.
NEXT_PUBLIC_ exposes to client bundle. Server Components access all env vars. Use .env.local for secrets.
Use <Suspense> boundaries to stream content progressively. Wrap slow components individually. See data-fetching.md.
Protect routes in middleware, not in pages. Middleware runs on Edge β lightweight auth checks only. See auth.md.
Server ComponentClient ComponentDefault in App RouterRequires 'use client'Can be asyncCannot be asyncAccess backend, env varsAccess hooks, browser APIsZero JS shippedJS shipped to browser Decision: Start Server. Add 'use client' only for: useState, useEffect, onClick, browser APIs.
TrapFixrouter.push in ServerUse redirect()<Link> prefetches allprefetch={false}next/image no sizeAdd width/height or fillMetadata in ClientMove to Server or generateMetadatauseEffect for dataFetch in Server ComponentImport ServerβClientPass as children/propsMiddleware DB callCall API route insteadMissing await params (v15)Params are async in Next.js 15
params and searchParams are now Promise β must await fetch not cached by default β opt-in with cache: 'force-cache' Use React 19 hooks: useActionState, useFormStatus
Install with clawhub install <slug> if 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
If useful: clawhub star nextjs Stay updated: clawhub sync
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.