Agent skill
nextjs-v16
Next.js 16 migration guide (async request APIs, "use cache", Turbopack)
Install this agent skill to your Project
npx add-skill https://github.com/bobmatnyc/claude-mpm-skills/tree/main/toolchains/nextjs/v16
SKILL.md
Next.js 16
- Async
params/cookies/headers; opt-in caching via"use cache"; Turbopack default.
Anti-patterns:
- ❌ Sync request APIs; ✅
awaitparams,cookies(), andheaders(). - ❌ Keep
middleware.ts; ✅ useproxy.tsandexport function proxy. - ❌
revalidateTag("posts"); ✅revalidateTag("posts", "max")or{ expire: ... }.
References: references/migration-checklist.md, references/cache-components.md, references/turbopack.md
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
bad-example-skill
ANTI-PATTERN - Example showing violations of self-containment (DO NOT COPY)
example-framework-skill
Example of a properly self-contained skill following all best practices
systematic-debugging
Systematic debugging methodology emphasizing root cause analysis over quick fixes
verification-before-completion
Run verification commands and confirm output before claiming success
Root Cause Tracing
Systematically trace bugs backward through call stack to find original trigger
Brainstorming Ideas Into Designs
Interactive idea refinement using Socratic method to develop fully-formed designs
Didn't find tool you were looking for?