Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

react-refactorReact refactor 搜索

Agent Skill

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

总安装

275

周安装

11

GitHub Stars

21

下载量

89
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shipshitdev/library --skill react-refactor

简介

react-refactor 用于辅助前端页面和组件的开发与维护。

  • 适合生成或审查 React、Next.js、Vue 等相关代码,定位性能问题。
  • 需结合项目现有设计系统、路由和构建方式使用,避免孤立片段。
  • 涉及页面改动时应配合本地预览和构建检查确认视觉效果。
  • 适用于前端性能优化和组件结构重构场景。

SKILL.md

React Refactor Best Practices

Architectural refactoring guide for React applications. Contains 40 rules across 7 categories, prioritized by impact from critical (component and state architecture) to incremental (refactoring safety).

When to Apply

  • Refactoring existing React codebases or planning large-scale restructuring
  • Reviewing PRs for architectural issues and code smells
  • Decomposing oversized components into focused units
  • Extracting reusable hooks from component logic
  • Improving testability of React code
  • Reducing coupling between feature modules

Rule Categories

CategoryImpactRulesKey Topics
Component ArchitectureCRITICAL8Compound components, headless pattern, composition over props, client boundaries
State ArchitectureCRITICAL7Colocation, state machines, URL state, derived values
Hook PatternsHIGH6Single responsibility, naming, dependency stability, composition
Component DecompositionHIGH6Scroll test, extraction by change reason, view/logic separation
Coupling & CohesionMEDIUM4Dependency injection, circular deps, stable imports, barrel-free
Data & Side EffectsMEDIUM4Server-first fetch, TanStack Query, error boundaries
Refactoring SafetyLOW-MEDIUM5Characterization tests, behavior testing, integration tests

Quick Reference

Critical patterns — get these right first:

  • Use compound components instead of props explosion
  • Colocate state with the components that use it
  • Use state machines for complex UI workflows
  • Separate container logic from presentational components

Common mistakes — avoid these anti-patterns:

  • Lifting state to App when only one component reads it
  • Using context for rapidly-changing values
  • Monolithic hooks that fetch + transform + cache
  • Testing implementation details instead of behavior

Table of Contents

  1. Component ArchitectureCRITICAL

- 1.1 Apply Interface Segregation to Component Props — CRITICAL (prevents 30-50% of unnecessary re-renders) - 1.2 Colocate Files by Feature Instead of Type — CRITICAL (reduces cross-directory navigation by 70%) - 1.3 Convert Render Props to Custom Hooks — CRITICAL (eliminates 2-4 levels of nesting) - 1.4 Extract Headless Components for Logic Reuse — CRITICAL (5x more reuse scenarios) - 1.5 Prefer Composition Over Props Explosion — CRITICAL (reduces prop count by 50-70%) - 1.6 Separate Container Logic from Presentational Components — CRITICAL (enables independent testing) - 1.7 Use Compound Components for Implicit State Sharing — CRITICAL (reduces API surface by 60%) - 1.8 Push Client Boundaries to Leaf Components — HIGH (keeps 60-80% server-rendered)

  1. State ArchitectureCRITICAL

- 2.1 Colocate State with Components That Use It — CRITICAL (reduces prop passing by 60%) - 2.2 Derive Values Instead of Syncing State — CRITICAL (eliminates double-render cycle) - 2.3 Lift State Only When Multiple Components Read It — CRITICAL (eliminates unnecessary parent re-renders) - 2.4 Use Context for Rarely-Changing Values Only — CRITICAL (5-50x fewer re-renders) - 2.5 Use State Machines for Complex UI Workflows — CRITICAL (reduces valid states from 2^n to N) - 2.6 Use URL Parameters as State for Shareable Views — CRITICAL (enables deep linking and sharing) - 2.7 Use useReducer for Multi-Field State Transitions — CRITICAL (eliminates impossible states)

  1. Hook PatternsHIGH

- 3.1 Avoid Object and Array Dependencies in Custom Hooks — HIGH (prevents effect re-execution every render) - 3.2 Compose Hooks Instead of Nesting Them — HIGH (flattens dependency graph) - 3.3 Extract Logic into Custom Hooks When Behavior Is Nameable — HIGH (40-60% shorter components) - 3.4 Follow Hook Naming Conventions for Discoverability — HIGH (reduces navigation time by 40%) - 3.5 Keep Custom Hooks to a Single Responsibility — HIGH (3x easier to test) - 3.6 Stabilize Hook Dependencies with Refs and Callbacks — HIGH (prevents infinite loops)

  1. Component DecompositionHIGH

- 4.1 Apply the Scroll Test to Identify Oversized Components — HIGH (3x faster code review) - 4.2 Complete Component Extraction Without Half-Measures — HIGH (enables independent testing and reuse) - 4.3 Extract Components by Independent Change Reasons — HIGH (70% fewer files touched per change) - 4.4 Extract Pure Functions from Component Bodies — HIGH (10x faster unit tests) - 4.5 Inline Premature Abstractions Before Re-Extracting — HIGH (40-60% simpler code) - 4.6 Separate View Layer from Business Logic — HIGH (5x faster test suite)

  1. Coupling & CohesionMEDIUM

- 5.1 Break Circular Dependencies with Intermediate Modules — MEDIUM (eliminates undefined-at-import-time bugs) - 5.2 Import from Stable Public API Surfaces Only — MEDIUM (enables internal refactoring) - 5.3 Use Barrel-Free Feature Modules for Clean Dependencies — MEDIUM (200-800ms build reduction) - 5.4 Use Dependency Injection for External Services — MEDIUM (3x faster test setup)

  1. Data & Side EffectsMEDIUM

- 6.1 Fetch Data on the Server by Default — MEDIUM (reduces client JS by 30-60%) - 6.2 Place Error Boundaries at Data Fetch Granularity — MEDIUM (errors isolated to affected section) - 6.3 Use Context Module Pattern for Action Colocation — MEDIUM (centralizes data mutations) - 6.4 Use TanStack Query for Client-Side Server State — MEDIUM (eliminates 80% of fetch boilerplate)

  1. Refactoring SafetyLOW-MEDIUM

- 7.1 Avoid Snapshot Tests for Refactored Components — LOW-MEDIUM (eliminates false test failures) - 7.2 Extract Pure Functions to Increase Testability — LOW-MEDIUM (10x faster test execution) - 7.3 Prefer Integration Tests for Component Verification — LOW-MEDIUM (catches 40% more bugs) - 7.4 Test Component Behavior Not Implementation Details — LOW-MEDIUM (5x fewer test updates) - 7.5 Write Characterization Tests Before Refactoring — LOW-MEDIUM (catches 90% of unintended changes)

References

  1. https://react.dev
  2. https://react.dev/learn/thinking-in-react
  3. https://kentcdodds.com/blog/application-state-management-with-react
  4. https://testing-library.com/docs/guiding-principles
  5. https://patterns.dev

Related Skills

  • For React 19 API best practices, see react skill
  • For application performance optimization, see react-optimise skill
  • For client-side form handling, see react-hook-form skill

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.18%
按下载量换算31

Claude

31.61%
按下载量换算28

Cursor

17.54%
按下载量换算16

Gemini CLI

9.88%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills