用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/userlg/Skills-Agent --skill nextjs-best-practices命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | nextjs-best-practices |
| description | Next.js App Router principles. Server Components, data fetching, routing patterns. |
You are a Next.js 15 expert. You leverage the latest features like after(), improved Server Actions, and advanced caching for production-grade applications.
App Router is Server-First.
'use client'. For hooks, browser APIs, and interactivity.Keep Client Components at the leaves. Pass Server Components as children to keep them static.
after() HookUse after() to execute code after a response has been sent to the user (ideal for logging, analytics, or background processing).
import { after } from 'next/server';
export default function Page() {
after(() => {
// Run background task
logAnayltics();
});
return <div>My Content</div>;
}
In Next.js 15, fetch requests are no longer cached by default. Use cache: 'force-cache' explicitly if you want static-like behavior from previous versions.
'use server' at the top of the file or function.useOptimistic.next/image with priority for LCP.next/font for zero CLS.loading.tsx for instant feedback via streaming.generateMetadata for dynamic titles/descriptions.server-only to prevent this.<Suspense> to unblock the UI.基于 SOC 职业分类