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

nextjs-senior-devNext.js senior DEV 搜索

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

20

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/georgekhananaev/claude-skills-vault --skill nextjs-senior-dev

简介

用于辅助 Next.js 前端页面、组件和样式开发,支持 React、Tailwind CSS 等技术的代码生成与审查。

  • 适合在 Codex、Claude、Cursor 等宿主中生成或优化前端代码,整理组件结构或定位布局问题。
  • 使用时需结合项目现有设计系统和路由配置,避免生成孤立片段;涉及页面改动时应通过本地预览确认效果。
  • 安装方式:GitHub 仓库,命令为 npx skills add <repo> --skill nextjs-senior-dev。
  • 注意:需确认权限范围和维护状态,避免触发不必要的文件读写或网络请求。

SKILL.md

Next.js Senior Developer

Transform into Senior Next.js 15+/16 Engineer for production-ready App Router applications.

When to Use

  • Scaffolding new Next.js App Router projects
  • RSC vs Client Component decisions
  • Server Actions and data fetching patterns
  • Performance optimization (CWV, bundle, caching)
  • Middleware and authentication setup
  • Next.js 15/16 migration or audit

Version Notes

VersionKey Changes
Next.js 16middleware.tsproxy.ts, Node.js runtime only, Cache Components
Next.js 15fetch uncached by default, React 19, Turbopack stable

Triggers

CommandPurpose
/next-initScaffold new App Router project
/next-routeGenerate route folder (page, layout, loading, error)
/next-auditAudit codebase for patterns, security, performance
/next-optOptimize bundle, images, fonts, caching

Reference Files (23 Total)

Load based on task context:

Core References

CategoryReferenceWhen
Routingreferences/app_router.mdRoute groups, parallel, intercepting
Componentsreferences/components.mdRSC vs Client decision, patterns
Datareferences/data_fetching.mdfetch, cache, revalidation, streaming
Securityreferences/security.mdServer Actions, auth, OWASP
Performancereferences/performance.mdCWV, images, fonts, bundle, memory
Middlewarereferences/middleware.mdAuth, redirects, Edge vs Node

Architecture & Quality

CategoryReferenceWhen
Architecturereferences/architecture.mdFile structure, feature-sliced design
Shared Componentsreferences/shared_components.mdDRY patterns, composition, reusability
Code Qualityreferences/code_quality.mdError handling, testing, accessibility

Features & Integrations

CategoryReferenceWhen
SEO & Metadatareferences/seo_metadata.mdgenerateMetadata, sitemap, OpenGraph
Databasereferences/database.mdPrisma, Drizzle, queries, migrations
Authenticationreferences/authentication.mdAuth.js, sessions, RBAC
Formsreferences/forms.mdReact Hook Form, Zod, file uploads
i18nreferences/i18n.mdnext-intl, routing, RTL support
Real-Timereferences/realtime.mdSSE, WebSockets, polling, Pusher
API Designreferences/api_design.mdREST, tRPC, webhooks, versioning

DevOps & Migration

CategoryReferenceWhen
Deploymentreferences/deployment.mdVercel, Docker, CI/CD, env management
Monoreporeferences/monorepo.mdTurborepo, shared packages, workspaces
Migrationreferences/migration.mdPages→App Router, version upgrades
Debuggingreferences/debugging.mdDevTools, profiling, error tracking
Scripts & 3rd-Partyreferences/scripts.mdnext/script, loading strategies, Google Analytics
Self-Hostingreferences/self_hosting.mdDocker standalone, cache handlers, multi-instance ISR
Debug Tricksreferences/debug_tricks.mdMCP debugging, --debug-build-paths

Core Tenets

1. Server-First

Default to Server Components. Use Client only when required.

RSC when: data fetching, secrets, heavy deps, no interactivity
Client when: useState, useEffect, onClick, browser APIs

2. Component Archetypes

PatternRuntimeMust Have
page.tsxServerasync, data fetching
*.action.tsServer"use server", Zod, 7-step security
*.interactive.tsxClient"use client", event handlers
*.ui.tsxEitherPure presentation, stateless

3. 7-Step Server Action Security

"use server"
// 1. Rate limit (IP/user)
// 2. Auth verification
// 3. Zod validation (sanitize errors!)
// 4. Authorization check (IDOR prevention)
// 5. Mutation
// 6. Granular revalidateTag() (NOT revalidatePath)
// 7. Audit log (async)

4. Data Fetching Strategy

Static → generateStaticParams + fetch
ISR → fetch(url, { next: { revalidate: 60 }})
Dynamic → fetch(url, { cache: 'no-store' })
Real-time → Client fetch (SWR)

Next.js 15 Change: fetch is UNCACHED by default (opposite of 14).

5. Caching

TypeScopeInvalidation
Request MemoizationRequestAutomatic
Data CacheServerrevalidateTag()
Full Route CacheServerRebuild
Router CacheClientrouter.refresh()

Prefer revalidateTag() over revalidatePath() to avoid cache storms.

6. Feature-Sliced Architecture

For large apps (50+ routes), use domain-driven structure:

src/
├── app/           # Routing only
├── components/    # Shared UI (ui/, shared/)
├── features/      # Business logic per domain
│   └── [feature]/
│       ├── components/
│       ├── actions/
│       ├── queries/
│       └── hooks/
├── lib/           # Global utilities
└── types/         # Global types

7. Component Sharing Rules

Used 3+ places?Contains business logic?Action
YesNoMove to components/ui/ or shared/
YesYesKeep in features/
NoAnyKeep local (_components/)

8. State Management Hierarchy

State TypeToolExample
URL StatesearchParamsFilters, pagination
Server StateServer ComponentsUser data, posts
Form StateuseFormStateForm submissions
UI StateuseStateModals, dropdowns
Shared ClientContext/ZustandTheme, cart

Rule: Prefer URL state for shareable/bookmarkable state.

9. DRY with createSafeAction

// lib/safe-action.ts - Reuse for all Server Actions
export const createPost = createSafeAction(schema, handler, {
  revalidateTags: ["posts"]
})

Eliminates duplicate auth/validation/error handling.

Anti-Patterns

Don'tDo
"use client" at tree rootPush boundary down to leaves
API routes for server dataDirect DB in Server Components
useEffect for fetchingServer Component async fetch
revalidatePath('/')Granular revalidateTag()
Trust middleware aloneValidate at data layer too
Prop drill 5+ levelsContext or composition
any typesProper types or unknown
Barrel exports in featuresDirect imports
localStorage for authhttpOnly cookies
Global caches (memory leak)LRU cache or React cache()

Middleware: Deny by Default

// middleware.ts - Public routes MUST be allowlisted
const publicRoutes = ['/login', '/register', '/api/health']
if (!publicRoutes.some(r => pathname.startsWith(r))) {
  // Require auth
}

CRITICAL: Upgrade to Next.js 15.2.3+ (CVE-2025-29927 fix).

Scripts

ScriptPurpose
scripts/scaffold_route.pyGenerate route folder w/ all files

Templates

FilePurpose
templates/page.tsxStandard async page
templates/layout.tsxLayout w/ metadata
templates/action.ts7-step secure Server Action
templates/loading.tsxLoading UI skeleton
templates/error.tsxError boundary

Assets

FilePurpose
assets/next.config.tsProduction config w/ security headers
assets/middleware.tsDeny-by-default auth (Next.js 15)
assets/proxy.tsDeny-by-default auth (Next.js 16+)

Quick Reference: Senior Code Review

Before merging any PR, verify:

Performance

  • No unnecessary "use client"
  • Images use next/image with dimensions
  • Heavy components dynamic imported
  • Parallel fetching (Promise.all)

Security

  • Server Actions validate with Zod
  • Auth in actions (not just middleware)
  • IDOR prevention (user owns resource)
  • No secrets in client bundles

Architecture

  • Components in correct layer
  • No cross-feature imports
  • DRY patterns used (createSafeAction)
  • URL state for shareable state

Quality

  • No any types
  • Error boundaries present
  • Loading states for async
  • Accessibility (semantic HTML, alt text)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.93%
按下载量换算30

Claude

31.33%
按下载量换算29

Cursor

20.21%
按下载量换算18

Gemini CLI

10.04%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills