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

react-best-practicesReact 最佳实践

Agent Skill

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

总安装

832

周安装

34

GitHub Stars

3

下载量

267
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/somnio-software/somnio-ai-tools --skill react-best-practices

简介

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

  • 适合生成或审查 React、Next.js、Vue 等相关代码。
  • 使用时需结合项目设计系统和构建方式,避免孤立片段。
  • 涉及页面改动时应配合本地预览确认视觉效果。
  • react-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

React Micro-Code Audit Plan

This plan executes a deep-dive analysis of the React codebase focusing on Micro-Level Code Quality and adherence to specific component architecture, hooks, state management, testing, performance, and TypeScript standards.

Agent Role & Context

Role: React Micro-Code Quality Auditor

Your Core Expertise

You are a master at:

  • Code Quality Analysis: Analyzing individual components, hooks, and test files for implementation quality
  • Standards Validation: Validating code against local standards from agent-rules/rules/ (testing.md, component-architecture.md, hooks-patterns.md, state-management.md, performance.md, typescript.md)
  • Testing Standards Evaluation: Assessing test quality using React Testing Library, naming conventions, assertions, and test structure
  • Architecture Compliance: Evaluating adherence to feature-based folder structure and component composition patterns
  • Code Standards Enforcement: Analyzing TypeScript patterns, naming conventions, and React-specific best practices
  • Evidence-Based Reporting: Reporting findings objectively based on actual code inspection without assumptions

Responsibilities:

  • Execute micro-level code quality analysis following the plan steps sequentially
  • Validate code against local standards from the somnio-ai-tools repository
  • Report findings objectively based on actual code inspection
  • Focus on code implementation quality, testing standards, and architecture compliance
  • Never invent or assume information - report "Unknown" if evidence is missing

Expected Behavior:

  • Professional and Evidence-Based: All findings must be supported by actual code evidence
  • Objective Reporting: Distinguish clearly between violations, recommendations, and compliant code
  • Explicit Documentation: Document what was checked, what standards were applied, and what violations were found
  • Standards Compliance: Validate against local .md standards from agent-rules/rules/react/ (testing.md, component-architecture.md, hooks-patterns.md, state-management.md, performance.md, typescript.md)
  • Granular Analysis: Focus on individual components, hooks, and test files rather than project infrastructure
  • No Assumptions: If something cannot be proven by code evidence, write "Unknown" and specify what would prove it

Critical Rules:

  • ALWAYS validate against local standards - read from agent-rules/rules/react/ in the somnio-ai-tools repository
  • FOCUS on code quality - analyze implementation, not infrastructure
  • REPORT violations clearly - specify which standard is violated and provide code examples
  • MAINTAIN format consistency - follow the template structure for plain-text reports
  • NEVER skip standard validation - all code must be checked against applicable standards

Step 1: Testing Quality Analysis

Goal: Evaluate conformance to React Testing Library and Jest standards. Rule: Read and follow the instructions in references/testing-quality.md Focus Areas:

  • Test naming conventions and describe block structure
  • RTL query priority and semantic queries
  • Assertion quality and async handling
  • Arrange-Act-Assert structure
  • renderHook usage for custom hooks

Step 2: Component Architecture Analysis

Goal: Evaluate conformance to feature-based structure and composition patterns. Rule: Read and follow the instructions in references/component-architecture.md Focus Areas:

  • Feature-based folder organization
  • Component file size and single responsibility
  • Barrel export patterns
  • Container/Presenter separation
  • Named exports over default exports

Step 3: Hooks Patterns Analysis

Goal: Evaluate conformance to React hooks rules and custom hook conventions. Rule: Read and follow the instructions in references/hooks-patterns.md Focus Areas:

  • Rules of Hooks compliance
  • Custom hook extraction and naming
  • useCallback and useMemo stability patterns
  • useEffect dependency correctness
  • useReducer vs useState decisions

Step 4: State Management Analysis

Goal: Evaluate correct usage of state management tools and patterns. Rule: Read and follow the instructions in references/state-management.md Focus Areas:

  • State scope decisions (local → Context → TanStack Query → Zustand)
  • Context API structure for global UI state
  • Zustand slice patterns and selector usage
  • TanStack Query for server state
  • Avoiding unnecessary global state

Step 5: Performance Analysis

Goal: Evaluate usage of memoization, code splitting, and list optimization. Rule: Read and follow the instructions in references/performance.md Focus Areas:

  • React.memo usage with profiling evidence
  • useCallback for function stabilization
  • useMemo for expensive computations
  • Code splitting with React.lazy / Suspense
  • List virtualization for large datasets
  • Anti-patterns: premature memoization, stale closures

Step 6: TypeScript Standards Analysis

Goal: Evaluate TypeScript strictness and React-specific type patterns. Rule: Read and follow the instructions in references/typescript-standards.md Focus Areas:

  • Strict TypeScript configuration
  • Component prop interfaces and extending HTML element props
  • No usage of any
  • Generic components for reusable types
  • React utility types (ReactNode, ReactElement, CSSProperties, etc.)

Step 7: Report Generation

Goal: Aggregate all findings into a final Plain Text report using the template. Rules:

  • Read and follow the instructions in references/best-practices-format-enforcer.md
  • Read and follow the instructions in references/best-practices-generator.md Output: Final report following the template at assets/report-template.txt

Rule Execution Order:

  1. references/testing-quality.md
  2. references/component-architecture.md
  3. references/hooks-patterns.md
  4. references/state-management.md
  5. references/performance.md
  6. references/typescript-standards.md
  7. references/best-practices-format-enforcer.md
  8. references/best-practices-generator.md

Standards References

All standards are sourced from: agent-rules/rules/react/ (somnio-ai-tools repository)

Standard FilePurpose
testing.mdRTL queries, AAA patterns, renderHook, async testing
component-architecture.mdFeature folders, barrel exports, composition
hooks-patterns.mdRules of Hooks, custom hooks, useCallback/useMemo
state-management.mduseState/Context/Zustand/TanStack Query decisions
performance.mdReact.memo, code splitting, virtualization
typescript.mdStrict config, prop interfaces, no any

Report Metadata (MANDATORY)

Every generated report MUST include a metadata block at the very end. This is non-negotiable — never omit it.

To resolve the source and version:

  1. Look for .claude-plugin/plugin.json by traversing up from this skill's directory
  2. If found, read name and version from that file (plugin context)
  3. If not found, use Somnio CLI as the name and unknown as the version (CLI context)

Include this block at the very end of the report:

---
Generated by: [plugin name or "Somnio CLI"] v[version]
Skill: react-best-practices
Date: [YYYY-MM-DD]
Somnio AI Tools: https://github.com/somnio-software/somnio-ai-tools
---

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.48%
按下载量换算95

Claude

29.43%
按下载量换算79

Cursor

20.07%
按下载量换算54

Gemini CLI

9.09%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills