Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

nextjsNext.js 开发

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

192

周安装

8

GitHub Stars

32

下载量

64
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nextjs(Next.js 开发)
来源仓库:https://github.com/faqndo97/ai-skills
仓库路径:skills/nextjs
安装命令:
npx skills add https://github.com/faqndo97/ai-skills --skill nextjs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/faqndo97/ai-skills --skill nextjs

简介

nextjs 利用 React Server Components 特性构建服务端优先渲染页面提升首屏性能。

  • 默认启用 App Router 模式配合 Turbopack 打包器加速开发体验与生产构建效率。
  • 遵循 BFF 模式隔离前后端职责,仅在必要时引入客户端组件处理交互与浏览器 API 调用。
  • 缓存组件与数据获取逻辑需谨慎设计防止 stale data 问题发生影响用户体验一致性。
  • nextjs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

<essential_principles>

How Next.js 16 Works

Next.js 16 uses the App Router with React Server Components by default. It introduces Cache Components with the "use cache" directive, Turbopack as the default bundler, and React 19.2 features.

1. Server-First Rendering

Components are Server Components by default. They:

  • Run only on the server
  • Can directly fetch data (no useEffect needed)
  • Cannot use hooks, event handlers, or browser APIs
  • Reduce client JavaScript bundle

Add 'use client' only when you need interactivity, state, or browser APIs.

2. BFF Pattern (Backend for Frontend)

Next.js acts as an intermediate layer between your React UI and backend APIs:

  • Server Components fetch data from Rails during render
  • Server Actions handle mutations by calling Rails APIs
  • Route Handlers provide API endpoints when needed (webhooks, external integrations)

Keep sensitive logic (tokens, API keys) in the server layer - never expose to client.

3. Cache Components (New in Next.js 16)

Next.js 16 introduces explicit, opt-in caching with the "use cache" directive:

// next.config.ts
const nextConfig = {
  cacheComponents: true,
};
"use cache"

export async function getProducts() {
  // This function is cached
  return await db.products.findMany()
}
  • All dynamic code runs at request time by default
  • Use "use cache" to opt-in to caching pages, components, and functions
  • Compiler automatically generates cache keys
  • Replaces experimental.dynamicIO and experimental.ppr flags

4. New Caching APIs

revalidateTag(tag, profile) - Now requires a cacheLife profile:

revalidateTag('products', 'max')  // Built-in profiles: 'max', 'hours', 'days'
revalidateTag('products', { revalidate: 3600 })  // Custom time

updateTag(tag) - New! Immediate refresh (read-your-writes):

import { updateTag } from 'next/cache'
// Use in Server Actions for instant UI updates
updateTag('user-profile')

refresh() - New! Refresh uncached data only:

import { refresh } from 'next/cache'
// Use in Server Actions to refresh uncached data (notifications, metrics)
refresh()

5. File-Based Conventions

Special files in app/ directory:

  • page.tsx - Route UI
  • layout.tsx - Shared wrapper (persists across navigations)
  • loading.tsx - Suspense fallback
  • error.tsx - Error boundary
  • route.ts - API endpoint (Route Handler)
  • proxy.ts - Network boundary (replaces middleware.ts)

6. Turbopack (Default Bundler)

Turbopack is now the default bundler:

  • 2-5× faster production builds
  • Up to 10× faster Fast Refresh
  • Opt out with next dev --webpack or next build --webpack

7. React 19.2 Features

Next.js 16 includes React 19.2 with:

  • View Transitions - Animate elements during navigation/state updates
  • Activity - Hide UI with display: none while maintaining state
  • useEffectEvent - Extract non-reactive logic from Effects

</essential_principles>

  1. Build a new Next.js app
  2. Add a page or feature
  3. Add a Server Action (mutation)
  4. Add a Route Handler (API endpoint)
  5. Debug an issue
  6. Write tests
  7. Optimize performance
  8. Ship/deploy

Then read the matching workflow from workflows/ and follow it.

After reading the workflow, follow it exactly.

<verification_loop>

After Every Change

# 1. TypeScript compiles?
bunx tsc --noEmit

# 2. Lint passes?
bun run lint

# 3. Dev server runs?
bun run dev

Check browser for:

  • No hydration errors in console
  • No "use client" / "use server" boundary violations
  • Data loads correctly from Rails API

Report to user:

  • "TypeScript: ✓"
  • "Lint: ✓"
  • "Dev server: Running on localhost:3000"
  • "Ready for you to verify [specific feature]"

</verification_loop>

<reference_index>

Domain Knowledge

All in references/:

Architecture: app-router.md, project-structure.md, bff-patterns.md Components: server-components.md, client-components.md Data: data-fetching.md, server-actions.md, route-handlers.md Navigation: redirecting.md UX: loading-streaming.md, error-handling.md Configuration: environment-variables.md, scripts.md Security: security.md Quality: typescript.md, testing.md, performance.md, accessibility.md, anti-patterns.md

</reference_index>

<workflows_index>

Workflows

All in workflows/:

FilePurpose
build-new-app.mdCreate Next.js 16 app from scratch
add-page.mdAdd pages, components, layouts
add-server-action.mdServer Actions for mutations
add-route-handler.mdAPI endpoints (Route Handlers)
debug-app.mdFix errors, hydration issues, build failures
write-tests.mdUnit, integration, E2E testing
optimize-performance.mdCore Web Vitals, bundle size, caching
ship-app.mdDeploy to Vercel, Docker, etc.

</workflows_index>

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.94%
按下载量换算26

Claude

29.48%
按下载量换算19

Cursor

17.37%
按下载量换算11

Gemini CLI

8.54%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills