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

react-server-components-frameworkReact server 组件 framework

Agent Skill

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

总安装

272

周安装

11

GitHub Stars

8

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/ariegoldkin/ai-agent-hub --skill react-server-components-framework

简介

react-server-components-framework 指导基于 Next.js 15+ App Router 的服务器端组件开发实践。

  • 适用于构建支持流式渲染、服务端数据获取与客户端交互的现代 Web 应用。
  • 提供组件边界划分、缓存策略与突变操作的最佳实践。
  • 需结合项目路由结构与构建工具链,确保兼容性与性能表现。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

React Server Components Framework

Overview

React Server Components (RSC) represent a paradigm shift in React architecture, enabling server-first rendering with client-side interactivity. This skill provides comprehensive patterns, templates, and best practices for building modern Next.js 15 applications using the App Router with Server Components, Server Actions, and streaming.

When to use this skill:

  • Building Next.js 15+ applications with the App Router
  • Designing component boundaries (Server vs Client Components)
  • Implementing data fetching with caching and revalidation
  • Creating mutations with Server Actions
  • Optimizing performance with streaming and Suspense
  • Implementing Partial Prerendering (PPR)
  • Designing advanced routing patterns (parallel, intercepting routes)

Why React Server Components Matter

RSC fundamentally changes how we think about React applications:

  • Server-First Architecture: Components render on the server by default, reducing client bundle size
  • Zero Client Bundle: Server Components don't ship JavaScript to the client
  • Direct Backend Access: Access databases, file systems, and APIs directly from components
  • Automatic Code Splitting: Only Client Components and their dependencies are bundled
  • Streaming & Suspense: Progressive rendering for instant perceived performance
  • Type-Safe Data Fetching: End-to-end TypeScript from database to UI
  • SEO & Performance: Server rendering improves Core Web Vitals and SEO

Core Concepts

1. Server Components vs Client Components

Server Components (default):

  • Can be async and use await
  • Direct database access
  • Cannot use hooks or browser APIs
  • Zero client JavaScript

Client Components (with 'use client'):

  • Can use hooks (useState, useEffect, etc.)
  • Browser APIs available
  • Cannot be async
  • Ships JavaScript to client

Key Rule: Server Components can render Client Components, but Client Components cannot directly import Server Components (use children prop instead).

Detailed Patterns: See references/component-patterns.md for:

  • Complete component boundary rules
  • Composition patterns
  • Props passing strategies
  • Common pitfalls and solutions

2. Data Fetching

Next.js extends the fetch API with powerful caching and revalidation:

// Static (cached indefinitely)
await fetch(url, { cache: 'force-cache' })

// Revalidate every 60 seconds
await fetch(url, { next: { revalidate: 60 } })

// Always fresh
await fetch(url, { cache: 'no-store' })

// Tag-based revalidation
await fetch(url, { next: { tags: ['posts'] } })

Patterns:

  • Parallel fetching: Promise.all([fetch1, fetch2, fetch3])
  • Sequential fetching: When data depends on previous results
  • Route segment config: Control static/dynamic rendering

Detailed Implementation: See references/data-fetching.md for:

  • Complete caching strategies
  • Revalidation methods (revalidatePath, revalidateTag)
  • Database queries in Server Components
  • generateStaticParams for SSG
  • Error handling patterns

3. Server Actions

Server Actions enable mutations without API routes:

// app/actions.ts
'use server'

export async function createPost(formData: FormData) {
  const title = formData.get('title') as string
  const post = await db.post.create({ data: { title } })

  revalidatePath('/posts')
  redirect(`/posts/${post.id}`)
}

Progressive Enhancement: Forms work without JavaScript, then enhance with client-side states.

Detailed Implementation: See references/server-actions.md for:

  • Progressive enhancement patterns
  • useFormStatus and useFormState hooks
  • Optimistic UI with useOptimistic
  • Validation with Zod
  • Inline vs exported Server Actions

4. Streaming with Suspense

Stream components independently for better perceived performance:

import { Suspense } from 'react'

export default function Dashboard() {
  return (
    <div>
      <Suspense fallback={<ChartSkeleton />}>
        <RevenueChart />
      </Suspense>

      <Suspense fallback={<InvoicesSkeleton />}>
        <LatestInvoices />
      </Suspense>
    </div>
  )
}

Benefits:

  • Show content as it's ready
  • Non-blocking data fetching
  • Better Core Web Vitals

Templates: Use templates/ServerComponent.tsx for streaming patterns

5. Advanced Routing

Parallel Routes: Render multiple pages simultaneously

app/
  @team/page.tsx
  @analytics/page.tsx
  layout.tsx  # Receives both as props

Intercepting Routes: Show modals while preserving URLs

app/
  photos/[id]/page.tsx      # Direct route
  (..)photos/[id]/page.tsx  # Intercepted (modal)

Partial Prerendering (PPR): Mix static and dynamic content

export const experimental_ppr = true

// Static shell + dynamic Suspense boundaries

Detailed Implementation: See references/routing-patterns.md for:

  • Parallel routes layout implementation
  • Intercepting routes for modals
  • PPR configuration and patterns
  • Route groups for organization
  • Dynamic, catch-all, and optional catch-all routes

Searching References

Use grep to find specific patterns in references:

# Find component patterns
grep -r "Server Component" references/

# Search for data fetching strategies
grep -A 10 "Caching Strategies" references/data-fetching.md

# Find Server Actions examples
grep -B 5 "Progressive Enhancement" references/server-actions.md

# Locate routing patterns
grep -n "Parallel Routes" references/routing-patterns.md

# Search migration guide
grep -i "pages router\|getServerSideProps" references/migration-guide.md

Best Practices

Component Boundary Design

  • ✅ Keep Client Components at the edges (leaves) of the component tree
  • ✅ Use Server Components by default
  • ✅ Extract minimal interactive parts to Client Components
  • ✅ Pass Server Components as children to Client Components
  • ❌ Avoid making entire pages Client Components

Data Fetching

  • ✅ Fetch data in Server Components close to where it's used
  • ✅ Use parallel fetching for independent data
  • ✅ Set appropriate cache and revalidate options
  • ✅ Use generateStaticParams for static routes
  • ❌ Don't fetch data in Client Components with useEffect (use Server Components)

Performance

  • ✅ Use Suspense boundaries for streaming
  • ✅ Implement loading.tsx for instant loading states
  • ✅ Enable PPR for static/dynamic mix
  • ✅ Optimize images with next/image
  • ✅ Use route segment config to control rendering mode

Error Handling

  • ✅ Implement error.tsx for error boundaries
  • ✅ Use not-found.tsx for 404 pages
  • ✅ Handle fetch errors gracefully
  • ✅ Validate Server Action inputs

Templates

Use provided templates for common patterns:

  • templates/ServerComponent.tsx - Basic async Server Component with data fetching
  • templates/ClientComponent.tsx - Interactive Client Component with hooks
  • templates/ServerAction.tsx - Server Action with validation and revalidation

Examples

Complete Blog App

See examples/blog-app/ for a full implementation:

  • Server Components for post listing and details
  • Client Components for comments and likes
  • Server Actions for creating/editing posts
  • Streaming with Suspense
  • Parallel routes for dashboard

Checklists

RSC Implementation Checklist

See checklists/rsc-implementation.md for comprehensive validation covering:

  • Component boundaries properly defined (Server vs Client)
  • Data fetching with appropriate caching strategy
  • Server Actions for mutations
  • Streaming with Suspense for slow components
  • Error handling (error.tsx, not-found.tsx)
  • Loading states (loading.tsx)
  • Metadata API for SEO
  • Route segment config optimized

Common Patterns

Search with URL State

// app/search/page.tsx
export default async function SearchPage({
  searchParams,
}: {
  searchParams: { q?: string }
}) {
  const query = searchParams.q || ''
  const results = query ? await searchProducts(query) : []

  return (
    <div>
      <SearchForm initialQuery={query} />
      <SearchResults results={results} />
    </div>
  )
}

Authentication

import { cookies } from 'next/headers'

export default async function DashboardPage() {
  const token = cookies().get('token')?.value
  const user = await verifyToken(token)

  if (!user) {
    redirect('/login')
  }

  return <Dashboard user={user} />
}

Optimistic UI

'use client'

import { useOptimistic } from 'react'

export function TodoList({ todos }) {
  const [optimisticTodos, addOptimisticTodo] = useOptimistic(
    todos,
    (state, newTodo) => [...state, newTodo]
  )

  return <ul>{/* render optimisticTodos */}</ul>
}

Migration from Pages Router

Incremental Adoption: Both pages/ and app/ can coexist

Key Changes:

  • getServerSideProps → async Server Component
  • getStaticProps → async Server Component with caching
  • API routes → Server Actions
  • _app.tsxlayout.tsx
  • <Head>generateMetadata function

Detailed Migration: See references/migration-guide.md for:

  • Step-by-step migration guide
  • Before/after code examples
  • Common migration pitfalls
  • Layout and metadata migration patterns

Troubleshooting

Error: "You're importing a component that needs useState"

  • Fix: Add 'use client' directive to the component

Error: "async/await is not valid in non-async Server Components"

  • Fix: Add async to function declaration

Error: "Cannot use Server Component inside Client Component"

  • Fix: Pass Server Component as children prop instead of importing

Error: "Hydration mismatch"

  • Fix: Use 'use client' for components using Date.now(), Math.random(), or browser APIs

Resources


Next Steps

After mastering React Server Components:

  1. Explore Streaming API Patterns skill for real-time data
  2. Use Type Safety & Validation skill for tRPC integration
  3. Apply Edge Computing Patterns skill for global deployment
  4. Reference Performance Optimization skill for Core Web Vitals

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

windsurf

27.71%
按下载量换算24

OpenCode

21.51%
按下载量换算18

Codex

18.32%
按下载量换算16

Claude Code

11.39%
按下载量换算10

Antigravity

8.08%
按下载量换算7

Gemini CLI

3.26%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills