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

nextjs-v16Next.js V16 工具

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

公开资料未说明

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/violabg/dev-recruit --skill nextjs-v16

简介

nextjs-v16 用于辅助前端页面、组件、样式和交互逻辑的开发与维护。

  • 适合生成或审查 React、Next.js、Vue、Tailwind、CSS 相关代码,整理组件结构。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需指定技能名称和仓库地址。
  • 使用时需要结合项目现有设计系统和路由,避免生成孤立片段。
  • nextjs-v16 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Next.js v16 Skills

This skill covers best practices and patterns for developing with Next.js version 16, focusing on cache components, server-side rendering, and robust error handling.

Cache Components

Purpose

Implement efficient caching strategies to optimize performance and reduce server load using Next.js 16's cache components feature.

Key Concepts

  1. "use cache" Directive

- Mark functions as cacheable to enable automatic memoization - Applied at the function level in server components - Revalidates based on cacheLife() configuration - Use for data fetching and computationally expensive operations

  1. Cache Tags with cacheTag()

- Tag cached data for granular revalidation - Allows invalidating specific data patterns - Use updateTag() utility after mutations

  1. Cache Lifespan with cacheLife()

- Define how long cached data remains valid - Supports absolute time and relative expiration - Configure based on data freshness requirements

Implementation Patterns

// Basic cache component
"use cache";
export async function getData() {
  const data = await db.query.execute();
  return data;
}

// With cache tags and lifespan
("use cache");
import { cacheLife, cacheTag } from "next/cache";

export async function getQuizzes() {
  cacheLife({ max: 60 * 60 }); // 1 hour
  cacheTag("quizzes");

  return await db.quizzes.findMany();
}

Usage in Components

// Page using cached data
import { Suspense } from "react";
import { QuizzesContent } from "./content";
import { Skeleton } from "@/components/ui/skeleton";

export default function QuizzesPage() {
  return (
    <Suspense fallback={<Skeleton />}>
      <QuizzesContent />
    </Suspense>
  );
}

// Content component with 'use cache'
("use cache");
import { getQuizzes } from "@/lib/data/quizzes";

export async function QuizzesContent() {
  const quizzes = await getQuizzes();
  return <div>{/* Render quizzes */}</div>;
}

Cache Invalidation

After mutations, invalidate related cache:

"use server";
import { updateTag } from "@/lib/utils/cache-utils";

export async function createQuiz(data) {
  const quiz = await db.quizzes.create(data);
  updateTag("quizzes"); // Invalidate quiz cache
  return quiz;
}

Server Actions

Purpose

Server actions provide a unified way to handle mutations and data operations directly from components without creating API routes. They are the preferred method for data mutations in Next.js 16.

Why Server Actions Over API Routes

  1. Type Safety - Direct TypeScript types from server to client
  2. Colocation - Actions defined near the components that use them
  3. Progressive Enhancement - Forms work without JavaScript
  4. Simplified Auth - Direct access to server-side authentication
  5. No CORS - No need for API endpoint configuration
  6. Better DX - Single file for component + action logic

When to Use Server Actions vs API Routes

Use Server Actions for:

  • Form submissions and mutations
  • Database operations (create, update, delete)
  • User-triggered actions from UI components
  • Data revalidation after changes
  • File uploads
  • Most CRUD operations

Use API Routes only for:

  • Webhooks from external services
  • Public APIs for third-party integrations
  • Non-browser clients (mobile apps, CLI tools)
  • Custom authentication callbacks
  • Server-Sent Events (SSE) or WebSocket connections

Basic Server Action Pattern

// lib/actions/quizzes.ts
"use server";

import { z } from "zod";
import { requireUser } from "@/lib/auth-server";
import { updateTag } from "@/lib/utils/cache-utils";
import { db } from "@/lib/prisma";

const createQuizSchema = z.object({
  title: z.string().min(1),
  description: z.string().optional(),
});

export async function createQuizAction(data: unknown) {
  // 1. Authenticate
  const user = await requireUser();

  // 2. Validate input
  const parsed = createQuizSchema.parse(data);

  // 3. Perform operation
  const quiz = await db.quiz.create({
    data: {
      ...parsed,
      userId: user.id,
    },
  });

  // 4. Invalidate cache
  updateTag("quizzes");

  // 5. Return result
  return { success: true, data: quiz };
}

Using Server Actions in Components

// components/quiz/create-quiz-form.tsx
"use client";

import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { createQuizAction } from "@/lib/actions/quizzes";
import { Field } from "@/components/ui/field";
import { Input } from "@/components/ui/input";
import { Button } from "@/components/ui/button";

export function CreateQuizForm() {
  const {
    register,
    handleSubmit,
    formState: { errors },
  } = useForm({
    resolver: zodResolver(createQuizSchema),
  });

  const onSubmit = async (data) => {
    const result = await createQuizAction(data);
    if (result.success) {
      // Handle success
      router.push(`/dashboard/quizzes/${result.data.id}`);
    }
  };

  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <Field label="Title" error={errors.title?.message}>
        <Input {...register("title")} />
      </Field>
      <Button type="submit">Create Quiz</Button>
    </form>
  );
}

Progressive Enhancement with useActionState

// lib/actions/quizzes.ts
"use server";

export async function createQuizAction(prevState: any, formData: FormData) {
  const title = formData.get("title") as string;

  if (!title) {
    return { error: "Title is required" };
  }

  const quiz = await db.quiz.create({ data: { title } });
  revalidatePath("/dashboard/quizzes");

  return { success: true, quiz };
}

// Component
("use client");
import { useActionState } from "react";

export function CreateQuizForm() {
  const [state, formAction] = useActionState(createQuizAction, null);

  return (
    <form action={formAction}>
      <input name="title" required />
      {state?.error && <p className="text-destructive">{state.error}</p>}
      <button type="submit">Create Quiz</button>
    </form>
  );
}

Error Handling in Server Actions

"use server";

export async function deleteQuizAction(quizId: string) {
  try {
    const user = await requireUser();

    const quiz = await db.quiz.findUnique({ where: { id: quizId } });
    if (!quiz) {
      return { success: false, error: "Quiz not found" };
    }

    await db.quiz.delete({ where: { id: quizId } });
    updateTag("quizzes");

    return { success: true };
  } catch (error) {
    console.error("Delete quiz error:", error);
    return {
      success: false,
      error: "Failed to delete quiz",
    };
  }
}

Server Components

Purpose

Utilize server components for secure data access, reduced JavaScript bundles, and better performance.

Best Practices

  1. Default to Server Components

- Use async server components for data fetching - Avoid unnecessary client component wrappers - Client components only for interactivity

  1. Data Fetching Location

- Fetch data only in server components - Pass fetched data as props to client components - Never expose sensitive API keys to client

  1. Suspense Boundaries

- Wrap data-fetching components in Suspense - Provide appropriate fallback UI (skeletons) - Enable streaming and progressive rendering

Implementation Pattern

// Server component with data fetching
import { Suspense } from "react";
import { getUser } from "@/lib/data/users";
import { UserProfile } from "@/components/user-profile";
import { ProfileSkeleton } from "@/components/skeletons";

export default async function ProfilePage() {
  return (
    <div>
      <Suspense fallback={<ProfileSkeleton />}>
        <UserProfileContent />
      </Suspense>
    </div>
  );
}

async function UserProfileContent() {
  const user = await getUser();
  return <UserProfile user={user} />;
}

Runtime APIs with Suspense

Wrap runtime APIs (cookies, headers) in Suspense:

import { cookies } from "next/headers";

export default function Layout({ children }) {
  return (
    <Suspense fallback={<div>Loading...</div>}>
      <CookieConsumer>{children}</CookieConsumer>
    </Suspense>
  );
}

async function CookieConsumer({ children }) {
  const cookieStore = await cookies();
  const theme = cookieStore.get("theme");
  return <div className={theme?.value}>{children}</div>;
}

Error Handling

Purpose

Provide robust error boundaries and fallback UI for better user experience and easier debugging.

Error Boundaries

  1. error.tsx Files

- Create segment-specific error boundaries - Wrap server-side errors gracefully - Provide recovery options to users

// app/dashboard/error.tsx
"use client";

export default function Error({
  error,
  reset,
}: {
  error: Error;
  reset: () => void;
}) {
  return (
    <div className="flex flex-col items-center justify-center min-h-screen gap-4">
      <h1>Something went wrong</h1>
      <p className="text-muted-foreground">{error.message}</p>
      <button onClick={() => reset()} className="btn-primary">
        Try again
      </button>
    </div>
  );
}
  1. not-found.tsx

- Handle 404 scenarios - Provide navigation back to main content - Improve UX for missing resources

// app/dashboard/[id]/not-found.tsx
export default function NotFound() {
  return (
    <div className="flex flex-col items-center justify-center min-h-screen">
      <h1>Quiz not found</h1>
      <Link href="/dashboard/quizzes">Back to quizzes</Link>
    </div>
  );
}

Async Error Handling

"use server";

export async function createQuiz(data: QuizInput) {
  try {
    const result = await aiService.generateQuiz(data);
    if (!result.success) {
      throw new Error(result.error);
    }
    return { success: true, data: result };
  } catch (error) {
    return {
      success: false,
      error: error instanceof Error ? error.message : "Unknown error",
    };
  }
}

Recommended Patterns

  • Validate all inputs with Zod before processing
  • Return structured error responses from server actions
  • Use error boundaries for UI recovery
  • Log errors for monitoring and debugging
  • Provide user-friendly error messages
  • Avoid exposing sensitive error details to clients

Development Checklist

When building Next.js 16 features:

  • Use server actions for all mutations instead of API routes
  • Use server components by default
  • Implement cache components with 'use cache' and cacheLife()
  • Add Suspense boundaries for streaming content
  • Wrap runtime APIs in Suspense
  • Create error.tsx and not-found.tsx for error handling
  • Validate inputs with Zod schemas in server actions
  • Call updateTag() or revalidatePath() after mutations
  • Test cache invalidation after mutations
  • Minimize client-side JavaScript
  • Only create API routes for webhooks or external integrations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.7%
按下载量换算32

Claude

27.4%
按下载量换算24

Cursor

19.55%
按下载量换算17

Gemini CLI

9.97%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills