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

react-advancedReact 高级

Agent Skill

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

总安装

974

周安装

41

GitHub Stars

4

下载量

341
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/trancong12102/agentskills --skill react-advanced

简介

react-advanced 用于辅助前端页面、组件、样式和交互逻辑的开发与维护,适合生成或审查 React、Next.js 等相关代码。

  • 适用于组件结构整理、布局问题定位和性能优化建议。
  • 通过 npx skills add 命令从 GitHub 仓库安装使用。
  • 使用时需结合项目现有设计系统和构建方式,避免生成孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。

SKILL.md

React Advanced: Core Patterns & Conventions (Cross-Platform)

This skill defines the rules, conventions, and architectural decisions for building modern React applications with the TanStack ecosystem and XState. It is intentionally opinionated to prevent common pitfalls and enforce patterns that scale.

These patterns work identically on web and React Native. For platform-specific patterns:

  • Web: see react-web-advanced (TanStack Router, Start, Virtual)
  • React Native: see react-native-advanced (Expo Router, FlashList, MMKV)

For detailed API documentation of any library mentioned here, use other appropriate tools (documentation lookup, web search, etc.) — this skill focuses on how and why to use these tools, not their full API surface.

The useEffect Ban

Do not use useEffect for:

  • Data fetching — use React Query (useSuspenseQuery / useQuery) or route loaders
  • Derived state — compute during render or use useMemo
  • Syncing state with props — use the prop directly, or reset with React key
  • Responding to user events — put logic in event handlers
  • Subscribing to external stores — use useSyncExternalStore
  • Complex async flows — use XState machines with invoke / fromPromise

Acceptable uses of useEffect

Legitimate cases:

  1. Synchronizing with non-React external systems — DOM APIs, third-party widgets (maps, charts), imperative libraries that need mount/unmount lifecycle
  2. Browser/native API subscriptions with cleanup — when useSyncExternalStore is too low-level for a one-off case (WebSocket connections, resize observers)
  3. Analytics/logging on mount — fire-and-forget side effects with no state updates
  4. Bridging React Query data into XState — the useEffect bridge pattern for pushing server state into a machine via events (see references/xstate.md)

useMountEffect for mount-only effects

When you have a legitimate mount-only effect (cases 1–3 above), use a useMountEffect helper instead of raw useEffect(fn, []):

// utils/useMountEffect.ts
import { useEffect, type EffectCallback } from "react";

// eslint-disable-next-line react-hooks/exhaustive-deps
const useMountEffect = (effect: EffectCallback) => useEffect(effect, []);

export default useMountEffect;

Usage:

useMountEffect(() => {
  const plugin = $.myPlugin(ref.current);
  return () => {
    plugin.destroy();
  };
});

Why: raw useEffect(fn, []) triggers the react-hooks/exhaustive-deps lint rule and makes the developer prove the empty array is intentional. useMountEffect makes the "run once on mount" intent explicit in code and silences the warning correctly.

What to use instead

Instead of useEffect for...Use
Fetching datauseSuspenseQuery + route loader prefetch
Consuming a Promiseuse() hook (React 19+) + <Suspense>
Derived/computed valuesDirect computation or useMemo
External store subscriptionuseSyncExternalStore
Deferring expensive rendersuseDeferredValue / useTransition
Complex async orchestrationXState invoke with fromPromise
Resetting state on prop changeReact key prop on the component
User-triggered side effectsEvent handlers directly

State Management Philosophy

Server state vs client state — never mix them

Server state (data from APIs/databases) and client state (UI state existing only in the client) are fundamentally different concerns. Mixing them causes stale data bugs, duplication, and synchronization nightmares.

ConcernOwnerExamples
Server dataReact QueryUsers, posts, products, orders
URL/route stateRouterPath params, search params (TanStack Router or Expo Router)
Complex UI flowsXStateMulti-step wizards, auth flows, drag-and-drop
Shared client UIZustandTheme, sidebar, selected items, global filters, preferences
Form fieldsTanStack FormInput values, validation errors, submission
Schema validationZodSearch params, form validators, API contracts
Simple local UIuseStateToggle, accordion expanded, input focus

Decision flowchart

Is the data from a server / API?
  YES -> React Query (queryOptions + useSuspenseQuery)
  NO -> Is it in the URL / route params?
    YES -> Router (platform-specific: TanStack Router or Expo Router)
    NO -> Is it a complex multi-state flow (3+ states, async, guards)?
      YES -> XState (useMachine / createActorContext)
      NO -> Is it a form field?
        YES -> TanStack Form (with Zod validators)
        NO -> Is it shared across components / trees?
          YES -> Zustand (create store + selectors)
          NO -> useState / useReducer

When to reach for XState over useState/useReducer

Use XState when:

  • There are 3+ mutually exclusive states with defined transitions
  • Async side effects must be cancelled on state change (race conditions)
  • The logic has guards (conditions that gate transitions)
  • You need parallel states for independent concerns
  • The flow needs to be tested in isolation from React
  • Multiple steps with back/forward navigation (wizards)

Do not use XState for simple toggles, single boolean flags, or counter state. That is useState territory.


Architecture: Which Library Owns What

LayerLibraryResponsibility
Server stateReact QueryFetching, caching, invalidation, background refetch
Complex UI stateXStateState machines, actor model, flow orchestration
Shared client UIZustandCross-component UI state, preferences, selections
Form lifecycleTanStack FormField values, validation, submission
Schema validationZodSearch params, form validators, API contracts
Data displayTanStack TableHeadless sorting, filtering, pagination, grouping
TestingVitest + TLUnit, component, integration, machine testing
Simple local stateuseStateToggles, local inputs, component-scoped values

The golden rule: queryOptions as single source of truth

Define query options once, import everywhere — loaders, components, invalidation:

export const postsQueryOptions = queryOptions({
  queryKey: ["posts"],
  queryFn: fetchPosts,
  staleTime: 30_000,
});

export const postQueryOptions = (postId: string) =>
  queryOptions({
    queryKey: ["posts", postId],
    queryFn: () => fetchPost(postId),
    staleTime: 30_000,
  });

Component Composition

Compound components

Use Context-based compound components when a group of components shares implicit state. The parent manages state; children consume it through context. Memoize the context value.

Slots pattern

Use named props for slot-like composition (header, footer, actions). Avoid deeply nested render-prop trees.

Inversion of Control

When adding boolean props or branching logic to handle caller-specific behavior, push that logic back to the caller via callbacks, reducers, or render functions. Three similar if-statements is a signal to invert control.


Common Pitfalls

  1. Derived state in useEffect — computing values in an effect and storing in useState causes double renders. Compute during render or use useMemo.
  2. Storing server data in client state — putting API responses in Zustand/Redux means you own caching and invalidation. Use React Query instead.
  3. Duplicating URL state in useState — use your router's search/param hooks directly.
  4. Using React Query AND XState for the same data — React Query owns fetching/caching. XState receives data via events and handles orchestration only.
  5. Calling React hooks inside XState machines — hooks only work in React components. Use fromPromise in machines, bridge data via useEffect events.
  6. Array indices as keys — use stable IDs (item.id). Index keys cause incorrect state association on reorder/insert/delete.
  7. Defining components inside components — creates new component types each render, forcing React to unmount/remount. Define at module level.
  8. Context for high-frequency state — Context re-renders all consumers on every change. Use Zustand with selectors for shared rapidly-changing values (see references/zustand.md), or local state if component-scoped.
  9. Not using .catch() on Zod search param schemas.default() only handles missing keys; .catch() also handles invalid values from malformed URLs.

Reference Files

Read the relevant reference file when working with a specific library:

FileWhen to read
references/react-query.mdQuery patterns, mutations, cache, Suspense integration
references/table.mdColumn defs, sorting, filtering, pagination, server-side ops
references/form.mdField validation, arrays, schema validation, performance
references/xstate.mdState machines, actors, auth flows, wizards, React integration
references/zustand.mdShared client UI state, selectors, slices, middleware, vanilla stores
references/zod.mdSchema validation, v4 API, Form integration, error handling
references/testing.mdVitest setup, Testing Library, MSW, testing Query/Form/XState
references/integration.mdCombining libraries: Zustand+XState, Query+XState bridge

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.82%
按下载量换算129

Claude

29.91%
按下载量换算102

Cursor

19.52%
按下载量换算67

Gemini CLI

9.17%
按下载量换算31

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills