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

react-senior-guideReact senior 指南

Agent Skill

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

总安装

364

周安装

15

GitHub Stars

公开资料未说明

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/b4r7x/agent-skills --skill react-senior-guide

简介

提供资深 React 开发指导与最佳实践参考。

  • 适用于生成高质量组件、优化状态管理与性能。react-senior-guide 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 可审查代码结构、提出重构建议或解答复杂实现问题。
  • 需结合项目技术栈和团队规范使用,避免过度设计。
  • 建议在关键模块或复杂场景下配合人工复核使用。

SKILL.md

React Senior Guide

Overview

Comprehensive React reference that routes to specialized skills. Use this as an entry point — it tells you which skill to read for your specific situation.

Skill Router

I need to...Read
Decide if useCallback is neededreact-usecallback
Decide if useMemo is neededreact-usememo
Use Context / optimize re-renders / compound componentsreact-usecontext
Choose between useRef and useStatereact-useref
Know if useEffect is the right toolreact-useeffect
Choose a component pattern (hooks, compound, headless...)react-design-patterns
Review code for bugs and anti-patternsreact-anti-patterns
Optimize render performancereact-usememo + react-usecallback
Decide between useState vs useReducer vs useRefreact-useref + react-anti-patterns
Integrate external library (D3, maps, charts)react-useref + react-useeffect

Cross-Cutting Principles

1. Derive, Don't Sync

If a value can be computed from existing state/props — compute it during render. Never sync derived values via useEffect + setState.

// ❌ useEffect to "sync" derived state
useEffect(() => { setFullName(`${first} ${last}`); }, [first, last]);

// ✅ Compute during render
const fullName = `${first} ${last}`;

2. Events for Actions, Effects for Visibility

  • User did something → event handler
  • Component appeared on screen → useEffect

3. Measure Before Optimizing

Never add useMemo/useCallback/memo "just in case". Profile with React DevTools first. The only exception: useMemo on Context Provider value (well-understood, predictable benefit).

4. Reference Stability Matters for Objects, Not Primitives

React compares primitives (string, number, boolean) by value. Memoizing them is pointless. Objects and arrays are compared by reference — that's where useMemo/useCallback matter.

5. State Should Be Minimal

  • Store IDs, not copies of objects (derive from source of truth)
  • Use union types for status, not multiple booleans
  • Related fields → one useState object or useReducer
  • If it doesn't affect UI → useRef, not useState

6. React Compiler (2025+)

React Compiler auto-memoizes. If you're using it, don't add manual useCallback/useMemo unless you hit a measured issue or work with uncompiled external libraries.

AI Code Review Checklist

Run this checklist on any AI-generated React code:

#CheckAnti-pattern
1Is useEffect doing derived state computation?Compute during render
2Is useEffect missing a cleanup return?Add cleanup
3Is fetch in useEffect without AbortController/ignore?Add race condition protection
4Are list keys using index?Use stable IDs
5Is state initialized from props and synced via effect?Use controlled/uncontrolled + key
6Is useCallback used without memo() on child?Remove useCallback or add memo
7Is server data fetched manually instead of React Query?Use React Query
8Are loading/error/empty states handled?Add all states
9Are multiple boolean flags used for status?Use union type
10Are components defined inside other components?Move outside
11Is state mutated directly?Create new references
12Are full objects stored in state (duplicated)?Store IDs, derive objects
13Is && used with numbers that could be 0?Use > 0 && or ternary
14Are hooks called conditionally or after early returns?All hooks at top
15Is one mega-context holding all app state?Split into separate contexts
16Is a closure capturing stale state in setTimeout/setInterval/async?Use ref for current value
17Are 5+ related useState calls used instead of useReducer?Use useReducer or combined state
18Is one component >200 lines mixing fetch + logic + UI?Split into focused components

Pattern Decision Flowchart

Need reusable logic?
  ├─ Yes → Custom Hook
  │         ├─ Components always used together?
  │         │    └─ Yes → Compound Components
  │         └─ Need logic without imposed HTML/styling?
  │              └─ Yes → Headless Component
  └─ No
      ├─ Need crash isolation? → Error Boundary
      ├─ Need to escape DOM parent? → Portal
      ├─ Need to share stable global state? → Context Provider
      └─ Need full render control from parent? → Render Props

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.84%
按下载量换算43

Claude

29.63%
按下载量换算35

Cursor

16.53%
按下载量换算20

Gemini CLI

9.8%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills