Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

afrexai-react-productionafrexai React production 效率

Agent Skill

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

总安装

26,494

周安装

1,093

GitHub Stars

公开资料未说明

下载量

8,657
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:afrexai-react-production(afrexai React production 效率)
来源仓库:https://github.com/1kalin/afrexai-react-production
安装命令:
openclaw skills install afrexai-react-production
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install afrexai-react-production

简介

构建生产级 React 应用程序的完整方法,包括组件设计和性能优化。

  • 适合在 OpenClaw 中维护前端项目、生成组件或检查界面实现时使用。
  • 支持状态管理、路由集成和构建流程适配多种技术栈。
  • 安装命令:openclaw skills install afrexai-react-production,需确认项目结构。
  • 建议结合本地预览和构建检查,避免生成孤立片段导致渲染异常。

SKILL.md

name
afrexai-react-production
description
Complete methodology for building production-grade React applications with architecture decisions, component design, state management, performance optimization, testing, and deployment.

React Production Engineering

Complete methodology for building production-grade React applications. Covers architecture decisions, component design, state management, performance optimization, testing, and deployment — not just API reference, but engineering methodology with decision frameworks, templates, and scoring systems.

Phase 1: Architecture Assessment

Quick Health Check (score /16)

  • [ ] Component tree depth < 6 levels (+2)
  • [ ] No prop drilling past 2 levels (+2)
  • [ ] Bundle size < 200KB gzipped (+2)
  • [ ] LCP < 2.5s on 4G (+2)
  • [ ] Test coverage > 70% on business logic (+2)
  • [ ] Zero any types in production code (+2)
  • [ ] No direct DOM manipulation (+2)
  • [ ] Consistent error boundaries (+2)

Architecture Brief

project:
  name: ""
  type: "" # spa | ssr | hybrid | static
  framework: "" # next | remix | vite-spa | astro
  scale: "" # small (<20 routes) | medium (20-100) | large (100+)
  team_size: "" # solo | small (2-5) | medium (6-15) | large (15+)
current_state:
  react_version: "" # 18 | 19
  typescript: true
  router: "" # react-router | next-app | tanstack-router
  state_management: "" # useState | zustand | jotai | redux | tanstack-query
  styling: "" # tailwind | css-modules | styled-components | vanilla-extract
  testing: "" # vitest | jest | playwright | cypress
  ci_cd: "" # github-actions | gitlab-ci | vercel
pain_points: []
goals: []

Framework Selection Decision Matrix

FactorVite SPANext.jsRemixAstro
SEO needed✅ Best✅ Good✅ Best
Dashboard/app✅ Best✅ Good✅ Good
Content-heavy✅ Good✅ Good✅ Best
Team familiarity✅ Simple⚠️ Learning curve⚠️ Web standards⚠️ Islands
DeploymentAnywhereVercel optimalAnywhereAnywhere
Bundle sizeYou controlFramework overheadSmallerMinimal JS

Decision rules:

  1. Dashboard/internal tool with no SEO → Vite SPA
  2. Marketing + app hybrid → Next.js
  3. Content-first with some interactivity → Astro
  4. Web-standards-first, nested layouts → Remix
  5. Default for most SaaS products → Next.js

Phase 2: Project Structure & Conventions

Recommended Feature-Based Structure

src/
├── app/                    # Routes/pages (framework-specific)
├── features/               # Feature modules (THE core pattern)
│   ├── auth/
│   │   ├── components/     # Feature-specific components
│   │   ├── hooks/          # Feature-specific hooks
│   │   ├── api/            # API calls & types
│   │   ├── utils/          # Feature utilities
│   │   ├── types.ts        # Feature types
│   │   └── index.ts        # Public API (barrel export)
│   ├── dashboard/
│   └── settings/
├── shared/                 # Cross-feature shared code
│   ├── components/         # Generic UI components
│   │   ├── ui/             # Primitives (Button, Input, Card)
│   │   └── layout/         # Layout components
│   ├── hooks/              # Generic hooks
│   ├── lib/                # Utilities, constants
│   └── types/              # Global types
├── providers/              # Context providers
└── styles/                 # Global styles

7 Structure Rules

  1. Feature isolation — features/ never import from other features directly; use shared/ or events
  2. Barrel exports — every feature has index.ts that defines its public API
  3. Colocation — tests, stories, and styles live next to their component
  4. Max file size — 300 lines. If bigger, split
  5. Max component size — 50 lines of JSX. If bigger, extract
  6. No circular deps — enforce with eslint-plugin-import
  7. Types colocated — feature types in feature, shared types in shared/types

Naming Conventions

Components:     PascalCase.tsx       (UserProfile.tsx)
Hooks:          useCamelCase.ts      (useAuth.ts)
Utilities:      camelCase.ts         (formatCurrency.ts)
Types:          PascalCase.ts        (User.ts) or types.ts
Constants:      SCREAMING_SNAKE.ts   (API_ENDPOINTS.ts)
Test files:     *.test.tsx           (UserProfile.test.tsx)
Story files:    *.stories.tsx        (Button.stories.tsx)

Phase 3: Component Design Patterns

Component Anatomy Template

// 1. Imports (grouped: react → third-party → internal → types → styles)
import { useState, useCallback, memo } from 'react'
import { clsx } from 'clsx'
import { Button } from '@/shared/components/ui'
import type { User } from '../types'

// 2. Types (exported for reuse)
export interface UserCardProps {
  user: User
  onEdit?: (id: string) => void
  variant?: 'compact' | 'full'
  className?: string
}

// 3. Component (named export, not default)
export const UserCard = memo(function UserCard({
  user,
  onEdit,
  variant = 'full',
  className,
}: UserCardProps) {
  // 4. Hooks first
  const [isExpanded, setIsExpanded] = useState(false)

  // 5. Derived state (no useEffect for derived!)
  const displayName = `${user.firstName} ${user.lastName}`

  // 6. Handlers (useCallback for passed-down refs)
  const handleEdit = useCallback(() => {
    onEdit?.(user.id)
  }, [onEdit, user.id])

  // 7. Early returns for edge cases
  if (!user) return null

  // 8. JSX (max 50 lines)
  return (
    <div className={clsx('rounded-lg border p-4', className)}>
      <h3>{displayName}</h3>
      {variant === 'full' && <p>{user.bio}</p>}
      {onEdit && <Button onClick={handleEdit}>Edit</Button>}
    </div>
  )
})

Component Composition Patterns

1. Compound Components (for related UI groups)

// Usage: <Tabs><Tabs.List><Tabs.Tab>A</Tabs.Tab></Tabs.List><Tabs.Panel>...</Tabs.Panel></Tabs>
const TabsContext = createContext<TabsContextType | null>(null)

export function Tabs({ children, defaultValue }: TabsProps) {
  const [activeTab, setActiveTab] = useState(defaultValue)
  return (
    <TabsContext.Provider value={{ activeTab, setActiveTab }}>
      {children}
    </TabsContext.Provider>
  )
}
Tabs.List = TabsList
Tabs.Tab = TabsTab
Tabs.Panel = TabsPanel

2. Render Props (for flexible rendering logic)

export function DataList<T>({ items, renderItem, renderEmpty }: DataListProps<T>) {
  if (items.length === 0) return renderEmpty?.() ?? <EmptyState />
  return <ul>{items.map((item, i) => <li key={i}>{renderItem(item)}</li>)}</ul>
}

3. Higher-Order Components (for cross-cutting concerns — use sparingly)

export function withAuth<P>(Component: ComponentType<P>) {
  return function AuthenticatedComponent(props: P) {
    const { user, isLoading } = useAuth()
    if (isLoading) return <Spinner />
    if (!user) return <Navigate to="/login" />
    return <Component {...props} />
  }
}

10 Component Rules

  1. One component per file — always
  2. Named exports — never default exports (refactoring safety)
  3. Props interface — always explicit, always exported
  4. No business logic in components — extract to hooks
  5. No inline styles — use Tailwind classes or CSS modules
  6. No string refs — useRef only
  7. No index as key — use stable identifiers
  8. Memo strategically — not everywhere, only for expensive renders
  9. Children over props — prefer composition over configuration
  10. Accessible by default — semantic HTML, ARIA when needed

Phase 4: State Management Decision Framework

State Type Decision Tree

Is it server data (from API)?
├─ YES → TanStack Query (or SWR) — NEVER Redux/Zustand for server state
│
└─ NO → Is it shared across features?
    ├─ YES → Is it complex with many actions?
    │   ├─ YES → Zustand (or Redux Toolkit if team knows it)
    │   └─ NO → Jotai (atomic) or Zustand (simple store)
    │
    └─ NO → Is it shared within a feature?
        ├─ YES → Context + useReducer (or Zustand feature store)
        └─ NO → useState / useReducer (component-local)

State Management Comparison

ToolBest ForBundleLearningTeam Size
useStateComponent-local0 KBNoneAny
useReducerComplex local state0 KBLowAny
ContextFeature-scoped, low-frequency0 KBLowAny
ZustandGlobal client state1.1 KBLowAny
JotaiAtomic derived state3.4 KBMediumSmall-Med
TanStack QueryServer state12 KBMediumAny
Redux ToolkitComplex global + middleware11 KBHighLarge

Server State with TanStack Query

// api/users.ts — query key factory pattern
export const userKeys = {
  all: ['users'] as const,
  lists: () => [...userKeys.all, 'list'] as const,
  list: (filters: Filters) => [...userKeys.lists(), filters] as const,
  details: () => [...userKeys.all, 'detail'] as const,
  detail: (id: string) => [...userKeys.details(), id] as const,
}

// hooks/useUsers.ts
export function useUsers(filters: Filters) {
  return useQuery({
    queryKey: userKeys.list(filters),
    queryFn: () => fetchUsers(filters),
    staleTime: 5 * 60 * 1000, // 5 min
    placeholderData: keepPreviousData,
  })
}

export function useUpdateUser() {
  const queryClient = useQueryClient()
  return useMutation({
    mutationFn: updateUser,
    onMutate: async (newUser) => {
      // Optimistic update
      await queryClient.cancelQueries({ queryKey: userKeys.detail(newUser.id) })
      const previous = queryClient.getQueryData(userKeys.detail(newUser.id))
      queryClient.setQueryData(userKeys.detail(newUser.id), newUser)
      return { previous }
    },
    onError: (err, newUser, context) => {
      queryClient.setQueryData(userKeys.detail(newUser.id), context?.previous)
    },
    onSettled: (data, err, variables) => {
      queryClient.invalidateQueries({ queryKey: userKeys.detail(variables.id) })
      queryClient.invalidateQueries({ queryKey: userKeys.lists() })
    },
  })
}

Client State with Zustand

// stores/useUIStore.ts — thin, focused stores
interface UIStore {
  sidebarOpen: boolean
  theme: 'light' | 'dark' | 'system'
  toggleSidebar: () => void
  setTheme: (theme: UIStore['theme']) => void
}

export const useUIStore = create<UIStore>()(
  persist(
    (set) => ({
      sidebarOpen: true,
      theme: 'system',
      toggleSidebar: () => set((s) => ({ sidebarOpen: !s.sidebarOpen })),
      setTheme: (theme) => set({ theme }),
    }),
    { name: 'ui-preferences' }
  )
)

// Usage: const theme = useUIStore((s) => s.theme) — always use selectors!

5 State Management Rules

  1. Server state ≠ client state — never mix them in the same store
  2. Smallest scope possible — useState > Context > Zustand > Redux
  3. No useEffect for derived state — use useMemo or compute inline
  4. Selectors alwaysuseStore(s => s.field) not useStore()
  5. URL is state — search params, filters, pagination → URL, not React state

Phase 5: Hooks Engineering

Custom Hook Template

// hooks/useDebounce.ts
export function useDebounce<T>(value: T, delayMs: number = 300): T {
  const [debouncedValue, setDebouncedValue] = useState(value)

  useEffect(() => {
    const timer = setTimeout(() => setDebouncedValue(value), delayMs)
    return () => clearTimeout(timer)
  }, [value, delayMs])

  return debouncedValue
}

Essential Custom Hooks Library

HookPurposeWhen to Use
useDebounceDebounce value changesSearch inputs, resize
useMediaQueryResponsive breakpointsConditional rendering
useLocalStoragePersistent local statePreferences, drafts
useIntersectionViewport detectionLazy load, infinite scroll
usePreviousTrack previous valueAnimations, comparisons
useClickOutsideDetect outside clicksDropdowns, modals
useEventListenerSafe event bindingKeyboard, scroll, resize
useToggleBoolean state toggleModals, accordions

Hook Rules (beyond React's rules)

  1. One concern per hookuseUserSearch not useEverything
  2. Return tuple or object — tuple for 1-2 values, object for 3+
  3. Accept options objectuseDebounce(value, { delay: 300 }) scales better
  4. Handle cleanup — every subscription/timer needs cleanup in useEffect return
  5. No hooks in conditions — extract conditional logic into the hook body
  6. Test hooks independently — use renderHook from testing-library

Phase 6: TypeScript Integration

Strict Configuration

{
  "compilerOptions": {
    "strict": true,
    "noUncheckedIndexedAccess": true,
    "noImplicitOverride": true,
    "exactOptionalPropertyTypes": true,
    "forceConsistentCasingInFileNames": true,
    "paths": {
      "@/*": ["./src/*"]
    }
  }
}

Essential Type Patterns

// 1. Discriminated unions for state machines
type AsyncState<T> =
  | { status: 'idle' }
  | { status: 'loading' }
  | { status: 'success'; data: T }
  | { status: 'error'; error: Error }

// 2. Polymorphic components
type ButtonProps<C extends ElementType = 'button'> = {
  as?: C
  variant?: 'primary' | 'secondary'
} & ComponentPropsWithoutRef<C>

export function Button<C extends ElementType = 'button'>({
  as,
  variant = 'primary',
  ...props
}: ButtonProps<C>) {
  const Component = as || 'button'
  return <Component {...props} />
}

// 3. Branded types for IDs
type UserId = string & { __brand: 'UserId' }
type PostId = string & { __brand: 'PostId' }

// 4. Zod for runtime validation
const userSchema = z.object({
  id: z.string().uuid(),
  email: z.string().email(),
  role: z.enum(['admin', 'user', 'viewer']),
})
type User = z.infer<typeof userSchema>

5 TypeScript Rules

  1. Zero any — use unknown and narrow, or generics
  2. Zod at boundaries — validate all external data (API, forms, URL params)
  3. Discriminated unions over optional fields{ status: 'success'; data: T } not { data?: T; error?: Error }
  4. Branded types for IDs — prevent userId being passed where postId expected
  5. Satisfies over asconfig satisfies Config preserves inference; as Config lies

Phase 7: Performance Optimization

Performance Budget

MetricTargetMeasurement
First Contentful Paint< 1.8sLighthouse
Largest Contentful Paint< 2.5sLighthouse
Interaction to Next Paint< 200msLighthouse
Cumulative Layout Shift< 0.1Lighthouse
Bundle size (gzipped)< 200 KBwebpack-bundle-analyzer
JS execution (main thread)< 3sChrome DevTools

Optimization Priority Stack

PriorityTechniqueImpactEffort
P0Code splitting (route-based)🔴 HighLow
P0Image optimization (next/image, srcset)🔴 HighLow
P1Tree shaking (named imports)🟡 MediumLow
P1Virtualization for long lists🟡 MediumMedium
P1Debounce expensive operations🟡 MediumLow
P2React.memo on expensive components🟢 Low-MedLow
P2useMemo/useCallback for expensive calculations🟢 Low-MedLow
P3Web Workers for heavy computation🟢 LowHigh

Code Splitting Patterns

// 1. Route-based (automatic with Next.js, manual with React Router)
const Dashboard = lazy(() => import('./features/dashboard'))
const Settings = lazy(() => import('./features/settings'))

// 2. Component-based (heavy components)
const Chart = lazy(() => import('./components/Chart'))
const MarkdownEditor = lazy(() =>
  import('./components/MarkdownEditor').then(m => ({ default: m.MarkdownEditor }))
)

// 3. Library-based (heavy third-party)
const { PDFViewer } = await import('@react-pdf/renderer')

React Compiler (React 19+)

// With React Compiler enabled, manual memo/useMemo/useCallback become unnecessary
// The compiler auto-memoizes. Remove manual optimizations:
// ❌ const memoized = useMemo(() => expensiveCalc(data), [data])
// ✅ const memoized = expensiveCalc(data)  // compiler handles it

// Enable in babel config:
// plugins: [['babel-plugin-react-compiler', {}]]

Rendering Performance Rules

  1. Never create components inside components — define at module level
  2. Never create objects/arrays in JSXstyle={{ color: 'red' }} rerenders always
  3. Children as props prevent rerender<Layout><ExpensiveChild /></Layout>
  4. Key must be stable and unique — not index, not Math.random()
  5. Avoid context value churn — memoize provider value or split contexts
  6. Profile before optimizing — React DevTools Profiler, not guesswork

Phase 8: Error Handling & Resilience

Error Boundary Architecture

// Three levels of error boundaries:
// 1. App-level (catches everything, shows full-page error)
// 2. Feature-level (isolates feature failures)
// 3. Component-level (for risky widgets — charts, third-party)

// Modern error boundary with react-error-boundary
import { ErrorBoundary, FallbackProps } from 'react-error-boundary'

function FeatureErrorFallback({ error, resetErrorBoundary }: FallbackProps) {
  return (
    <div role="alert" className="rounded-lg border-red-200 bg-red-50 p-4">
      <h3>Something went wrong</h3>
      <pre className="text-sm text-red-600">{error.message}</pre>
      <button onClick={resetErrorBoundary}>Try again</button>
    </div>
  )
}

// Usage:
<ErrorBoundary FallbackComponent={FeatureErrorFallback} onReset={() => queryClient.clear()}>
  <DashboardFeature />
</ErrorBoundary>

Error Handling Checklist

  • [ ] App-level error boundary wrapping entire app
  • [ ] Feature-level boundaries for each major feature
  • [ ] API errors handled in TanStack Query's onError / error states
  • [ ] Form validation errors shown inline (not alerts)
  • [ ] 404 page for unknown routes
  • [ ] Offline detection and graceful degradation
  • [ ] Error reporting to monitoring (Sentry, etc.)
  • [ ] User-friendly error messages (no stack traces in production)

Phase 9: Forms & Validation

Form Library Decision

LibraryBest ForBundleRenders
React Hook FormMost forms9 KBMinimal (uncontrolled)
FormikSimple forms13 KBEvery keystroke
TanStack FormType-safe complex5 KBControlled
Native1-2 field forms0 KBYou control

Default recommendation: React Hook Form + Zod

Form Pattern

const schema = z.object({
  email: z.string().email('Invalid email'),
  password: z.string().min(8, 'Min 8 characters'),
  role: z.enum(['admin', 'user']),
})
type FormData = z.infer<typeof schema>

export function LoginForm({ onSubmit }: { onSubmit: (data: FormData) => void }) {
  const form = useForm<FormData>({
    resolver: zodResolver(schema),
    defaultValues: { email: '', password: '', role: 'user' },
  })

  return (
    <form onSubmit={form.handleSubmit(onSubmit)} noValidate>
      <label htmlFor="email">Email</label>
      <input id="email" type="email" {...form.register('email')} aria-invalid={!!form.formState.errors.email} />
      {form.formState.errors.email && (
        <p role="alert">{form.formState.errors.email.message}</p>
      )}
      {/* ... more fields */}
      <button type="submit" disabled={form.formState.isSubmitting}>
        {form.formState.isSubmitting ? 'Signing in...' : 'Sign in'}
      </button>
    </form>
  )
}

Phase 10: Testing Strategy

Test Pyramid for React

LevelToolCoverage TargetWhat to Test
UnitVitest80% business logicHooks, utilities, reducers
ComponentTesting LibraryKey user flowsRendering, interactions, a11y
IntegrationTesting LibraryFeature flowsMulti-component workflows
E2EPlaywrightCritical pathsAuth, checkout, core flows
VisualChromatic/PercyUI componentsRegression detection

Testing Patterns

// Component test (Testing Library philosophy: test behavior, not implementation)
import { render, screen } from '@testing-library/react'
import userEvent from '@testing-library/user-event'

describe('UserCard', () => {
  it('calls onEdit when edit button clicked', async () => {
    const user = userEvent.setup()
    const onEdit = vi.fn()
    render(<UserCard user={mockUser} onEdit={onEdit} />)

    await user.click(screen.getByRole('button', { name: /edit/i }))
    expect(onEdit).toHaveBeenCalledWith(mockUser.id)
  })

  it('does not render edit button when onEdit not provided', () => {
    render(<UserCard user={mockUser} />)
    expect(screen.queryByRole('button', { name: /edit/i })).not.toBeInTheDocument()
  })
})

7 Testing Rules

  1. Test behavior, not implementation — never test state directly or useEffect
  2. Use accessible queriesgetByRole > getByTestId > getByText
  3. User events over fireEventuserEvent.click simulates real interaction
  4. One assertion per concept — not one per test, but focused assertions
  5. Mock at boundaries — API calls, not internal functions
  6. No snapshot tests — they break on every change and test nothing meaningful
  7. Arrange-Act-Assert — clear structure in every test

Phase 11: Accessibility (a11y)

10-Point Accessibility Checklist

  1. Semantic HTML<button> not <div onClick>, <nav> not <div class="nav">
  2. Keyboard navigation — every interactive element reachable via Tab, operable via Enter/Space
  3. Focus management — visible focus indicator, logical tab order, focus trap in modals
  4. Alt text — every <img> has descriptive alt (or alt="" if decorative)
  5. Color contrast — 4.5:1 for normal text, 3:1 for large text (WCAG AA)
  6. ARIA labelsaria-label for icon-only buttons, aria-describedby for hints
  7. Live regionsaria-live="polite" for dynamic content (toasts, form errors)
  8. Reduced motion — respect prefers-reduced-motion for animations
  9. Screen reader testing — test with VoiceOver (Mac) or NVDA (Windows)
  10. Automated scanning — axe-core in CI (vitest-axe or @axe-core/playwright)

Phase 12: Production Deployment Checklist

Mandatory (P0)

  • [ ] TypeScript strict mode, zero errors
  • [ ] All tests passing
  • [ ] Bundle analyzed, no unexpected large dependencies
  • [ ] Error boundaries at app and feature level
  • [ ] Environment variables validated at build time
  • [ ] Security headers configured (CSP, HSTS, X-Frame-Options)
  • [ ] SEO meta tags (title, description, OG tags)
  • [ ] Analytics/error monitoring integrated
  • [ ] Performance budget met (LCP < 2.5s)

Recommended (P1)

  • [ ] Storybook for component library
  • [ ] Visual regression tests
  • [ ] a11y automated checks in CI
  • [ ] Feature flags for risky features
  • [ ] Preview deployments for PRs
  • [ ] Bundle size CI check (fail if +10%)

Recommended Stack (2025+)

LayerRecommendationAlternative
FrameworkNext.js 15Remix, Vite SPA
LanguageTypeScript (strict)
StylingTailwind CSS v4CSS Modules
Componentsshadcn/uiRadix, Headless UI
State (server)TanStack Query v5SWR
State (client)ZustandJotai
FormsReact Hook Form + ZodTanStack Form
TestingVitest + Testing LibraryJest
E2EPlaywrightCypress
LintingBiomeESLint + Prettier
AuthAuth.js (NextAuth)Clerk, Lucia
DatabaseDrizzle ORMPrisma
DeploymentVercelCloudflare, Fly.io
MonitoringSentryDatadog

Quality Scoring (0-100)

DimensionWeightWhat to Score
Architecture20%Structure, separation, patterns
Type safety15%Strict TS, zero any, Zod boundaries
Performance15%Core Web Vitals, bundle size
Testing15%Coverage, quality, pyramid
Accessibility10%WCAG AA, keyboard, screen reader
State management10%Right tool, no prop drilling
Error handling10%Boundaries, user-friendly, monitoring
Developer experience5%Linting, formatting, CI speed

Grading: 90+ World-class | 75-89 Production-ready | 60-74 Needs work | <60 Tech debt crisis


10 Common Mistakes

#MistakeFix
1useEffect for derived stateCompute inline or useMemo
2Prop drilling 5+ levels deepContext, Zustand, or composition
3Fetching in useEffectTanStack Query or framework loaders
4Default exports everywhereNamed exports for refactoring safety
5Testing implementation detailsTest behavior with Testing Library
6Giant components (500+ lines)Extract hooks and sub-components
7No error boundariesAdd at app, feature, and widget level
8Redux for server stateTanStack Query for API data
9Ignoring a11y until the endBuild accessible from day 1
10No TypeScript strict modeEnable strict, fix all errors

Natural Language Commands

  • "Set up a new React project" → Phase 1-2 architecture + structure
  • "Review my component" → Phase 3 rules + quality scoring
  • "Help me choose state management" → Phase 4 decision tree
  • "Optimize performance" → Phase 7 priority stack + profiling
  • "Add error handling" → Phase 8 error boundary architecture
  • "Build a form" → Phase 9 React Hook Form + Zod pattern
  • "Write tests for this component" → Phase 10 testing patterns
  • "Check accessibility" → Phase 11 checklist
  • "Prepare for production" → Phase 12 deployment checklist
  • "Audit my React app" → Full quality scoring across all phases
  • "Migrate from class components" → Modern patterns + hooks
  • "Upgrade to React 19" → Compiler, Server Components, Actions

⚡ Level Up Your React Development

This skill gives you the methodology. For industry-specific implementation patterns, grab an AfrexAI Context Pack ($47):

  • SaaS Context Pack — SaaS-specific React patterns, billing UI, dashboard architecture
  • Fintech Context Pack — Financial UI patterns, real-time data, compliance
  • Healthcare Context Pack — HIPAA-compliant UI, patient data handling

👉 Browse all 10 packs: https://afrexai-cto.github.io/context-packs/

🔗 More Free Skills by AfrexAI

  • afrexai-nextjs-production — Next.js production engineering
  • afrexai-vibe-coding — AI-assisted development methodology
  • afrexai-technical-seo — SEO for React SPAs and SSR
  • afrexai-test-automation-engineering — Complete testing strategy
  • afrexai-ui-design-system — Design system architecture

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.87%
按下载量换算7,434

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills