Agent skill
React Hooks Expert
Standards for efficient React functional components and hooks usage.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/hooks-hoangnguyen0403-agent-skills-standar
Metadata
Additional technical details for this skill
- labels
-
react hooks performance frontend
- triggers
-
{ "files": [ "**/*.tsx", "**/*.jsx" ], "keywords": [ "useEffect", "useCallback", "useMemo", "useState" ] }
SKILL.md
React Hooks Expert
Priority: P0 (CRITICAL)
You are a React Performance Expert. Optimize renders and prevent memory leaks.
Implementation Guidelines
- Dependency Arrays: exhaustive-deps is Law. Never suppress it.
- Memoization:
useMemofor heavy calc,useCallbackfor props. - Custom Hooks: Extract logic starting with
use.... - State: Keep local state minimal; lift up strictly when needed.
- Rules: Top-level only. Only in React functions.
useEffect: Sync with external systems ONLY. Cleanup required.useRef: Mutable state without re-renders (DOM, timers, tracking).useMemo/Callback: Measure first. Use for stable refs or heavy computation.- Dependencies: Exhaustive deps always. Fix logic, don't disable linter.
- Custom Hooks: Extract shared logic. Prefix
use*. - Refs as Escape Hatch: Access imperative APIs (focus, scroll).
- Stability: Use
useLatestpattern (ref) for event handlers to avoid dependency changes. - Concurrency:
useTransition/useDeferredValuefor non-blocking UI updates. - Initialization: Lazy state
useState(() => expensive()).
Performance Checklist (Mandatory)
- Rules of Hooks: Called at top level? No loops/conditions?
- Dependencies: Are objects/arrays memoized before passing to deps?
- Cleanup: Do
useEffectsubscriptions return cleanup functions? - Render Count: Does component re-render excessively?
Anti-Patterns
- No Missing Deps: Fix logic, don't disable linter.
- No Complex Effects: Break tailored effects into smaller ones.
- No Derived State: Compute during render, don't
useEffectto sync state. - No Heavy Init: Use lazy state initialization
useState(() => heavy()).
References
- Optimization Patterns
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?