Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

accelint-nextjs-best-practicesaccelint Next.js 最佳实践

Agent Skill

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

总安装

4,889

周安装

210

GitHub Stars

10

下载量

1,714
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gohypergiant/agent-skills --skill accelint-nextjs-best-practices

简介

用于 Next.js 应用的性能优化和最佳实践指导,支持 Server/Client 组件开发。

  • 适用于数据获取、API 路由、Suspense 边界设置及组件重构等场景。
  • 可协助减少序列化开销、优化并行操作,并提供构建和性能检查建议。
  • 需结合项目现有路由和构建方式,配合本地预览确认代码改动效果。
  • accelint-nextjs-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Next.js Best Practices

Comprehensive performance optimization and best practices for Next.js applications, designed for AI agents and LLMs working with Next.js code.

When to Activate This Skill

Use this skill when the task involves:

Writing Next.js Code

  • Creating Server Components or Client Components
  • Implementing Server Actions with "use server"
  • Writing API route handlers
  • Setting up data fetching in RSC (React Server Components)
  • Implementing Suspense boundaries
  • Using Next.js-specific APIs (headers(), cookies(), after())

Refactoring Next.js Code

  • Optimizing server-side data fetching
  • Reducing RSC serialization overhead
  • Converting sequential to parallel operations
  • Restructuring component composition for better performance
  • Migrating between Server and Client Components

Performance Optimization

  • Eliminating server-side waterfalls
  • Reducing response times in API routes and Server Actions
  • Minimizing data transfer at RSC boundaries
  • Implementing request deduplication with React.cache()
  • Using after() for non-blocking operations

Next.js-Specific Issues

  • Authentication/authorization in Server Actions
  • RSC serialization duplication problems
  • Import optimization (barrel file issues)
  • Server vs Client Component decision-making
  • Parallel data fetching patterns

Code Review

  • Reviewing Next.js code for performance anti-patterns
  • Identifying security issues in Server Actions
  • Checking proper Server/Client Component boundaries
  • Ensuring proper authentication patterns
  • Validating Suspense boundary placement

When NOT to Use This Skill

Do not activate for:

  • React-specific optimizations (use accelint-react-best-practices skill)
  • Build configuration (webpack, turbopack) unless Next.js-specific
  • General TypeScript/JavaScript questions (use accelint-ts-best-practices skill)
  • Deployment/hosting configuration
  • Testing setup (use accelint-ts-testing skill)

Example Trigger Phrases

This skill should activate when users say things like:

Performance Issues:

  • "This Next.js API route is slow"
  • "My Server Component is blocking the entire page"
  • "Optimize this Server Action"
  • "The page takes forever to load data"
  • "There's a waterfall in my data fetching"

Security Issues:

  • "Add authentication to this Server Action"
  • "This Server Action needs authorization"
  • "Secure this API route"
  • "Validate input in this Server Action"

Debugging Issues:

  • "Why is my RSC props so large?"
  • "This data is being duplicated in the HTML"
  • "My imports are slow in development"
  • "Should this be a Server or Client Component?"

Code Review:

  • "Review this Next.js code for performance issues"
  • "Is this Server Action secure?"
  • "Can you optimize this data fetching?"
  • "Check if this component should be server or client"

Refactoring:

  • "Parallelize these data fetches"
  • "Reduce the serialization size"
  • "Convert this to use Suspense"
  • "Optimize this barrel import"

How to Use

This skill uses a progressive disclosure structure to minimize context usage:

1. Start with the Overview (AGENTS.md)

Read AGENTS.md for a concise overview of all rules with one-line summaries.

2. Load Specific Rules as Needed

When you identify a relevant optimization, load the corresponding reference file for detailed implementation guidance:

General Patterns:

Server-Side Performance:

Misc:

Quick References:

Automation Scripts:

  • scripts/ - Helper scripts to detect anti-patterns

3. Apply the Pattern

Each reference file contains:

  • ❌ Incorrect examples showing the anti-pattern
  • ✅ Correct examples showing the optimal implementation
  • Explanations of why the pattern matters
  • Performance impact metrics
  • Related patterns and references

4. Use the Report Template

When this skill is invoked for Next.js code review, use the standardized report format:

Template: assets/output-report-template.md

The report format provides:

  • Executive Summary with impact assessment
  • Severity levels (Critical, High, Medium, Low) for prioritization
  • Impact analysis (performance, security, data transfer, maintainability)
  • Categorization (Server Actions, RSC Serialization, Data Fetching, Component Architecture)
  • Pattern references linking to detailed guidance in references/
  • Summary table for tracking all issues

When to use the report template:

  • Skill invoked directly via /accelint-nextjs-best-practices <path>
  • User asks to "review Next.js code" or "audit Next.js app" across file(s), invoking skill implicitly

When NOT to use the report template:

  • User asks to "fix this Server Action" (direct implementation)
  • User asks "what's wrong with this code?" (answer the question)
  • User requests specific fixes (apply fixes directly without formal report)

Examples

Example 1: Optimizing Server Action Security

Task: "Add authentication to this Server Action"

Approach:

  1. Read AGENTS.md overview
  2. Identify issue: Server Action needs authentication
  3. Load server-actions-security.md
  4. Apply authentication pattern with validation

Example 2: Eliminating Waterfalls

Task: "This page loads slowly with multiple fetches"

Approach:

  1. Read AGENTS.md overview
  2. Identify issue: Sequential data fetching
  3. Load prevent-waterfall-chains.md and parallelize-independent-operations.md
  4. Start operations immediately and use Promise.allSettled()

Example 3: Reducing Serialization

Task: "The HTML response is huge with user data"

Approach:

  1. Read AGENTS.md overview
  2. Identify issue: Over-serialization at RSC boundary
  3. Load minimize-serialization.md
  4. Pass only necessary fields, transform on client

Additional Resources

Official Next.js documentation:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.84%
按下载量换算580

Claude

29.04%
按下载量换算498

Cursor

18.97%
按下载量换算325

Gemini CLI

9.03%
按下载量换算155

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills