react-hooks-best-practices

react-hooks-best-practices is a skill for Claude Code, Codex from siberiacancode/agent-skills. It costs 71 tokens per session (505 once invoked), scanned A, original, MIT.

A set of guidelines for React Hooks, functions that let React components manage state, effects, references, and other behavior. It covers both built-in Hooks and custom Hooks designed for reuse.

In plain words
What is it for?
Writing, designing, refactoring, and reviewing React components and custom Hooks, including state, effects, callbacks, references, cleanup, server rendering, and high-frequency browser updates.
Why use it?
It helps prevent common problems such as stale data, incorrect effect dependencies, unnecessary re-renders, and lifecycle or server-rendering errors. Re-rendering means React drawing a component again after its data changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Writing, designing, refactoring, and reviewing React components and custom Hooks, including state, effects, callbacks, references, cleanup, server rendering, and high-frequency browser updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/siberiacancode/agent-skills/react-hooks-best-practices
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add siberiacancode/agent-skills --skill react-hooks-best-practices
Clone the repo
git clone --depth 1 https://github.com/siberiacancode/agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for react-hooks-best-practices

README.md
[![agentmods](https://agentmods.dev/badge/skills/siberiacancode/agent-skills/react-hooks-best-practices.svg)](https://agentmods.dev/skills/siberiacancode/agent-skills/react-hooks-best-practices)
Your own site
<a href="https://agentmods.dev/skills/siberiacancode/agent-skills/react-hooks-best-practices"><img src="https://agentmods.dev/badge/skills/siberiacancode/agent-skills/react-hooks-best-practices.svg" alt="Measured on agentmods" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 505 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.00505
Opus 5 $0.00036 $0.00253
Sonnet 5 $0.00014 $0.00101
Haiku 4.5 $0.00007 $0.00051

Measured 7d ago against content hash e8359d428df5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

react-hooks-best-practices scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/react-hooks-best-practices/SKILL.md · 66 lines

What it actually says

React Hooks Best Practices

Practical rules for using hooks in React applications and designing custom hooks across three lenses: DX, optimization, and logic.

When to Apply

Reference these guidelines when:

  • Writing React components that use hooks
  • Creating or refactoring custom hooks
  • Designing hook APIs that are ergonomic and composable
  • Reviewing dependencies, effects, refs, state, callbacks, and memoization
  • Reviewing hook APIs for unnecessary re-renders
  • Reviewing hook internals for stale closures, cleanup, SSR, and lifecycle correctness
  • Designing custom hooks that subscribe to high-frequency updates
  • Consuming hooks that expose snapshot, callback, and watch() APIs
  • Refactoring hooks that update React state on every browser event
  • Moving DOM-adjacent work out of React render state

Rule Categories by Priority

Priority Category Impact Prefix
1 DX HIGH dx-
2 Optimization HIGH optimization-
3 Logic HIGH logic-

Quick Reference

1. DX (HIGH)

  • dx-extract-complex-hook - Move complex feature logic into custom hooks with grouped return contracts like form, state, functions, refs, and features

2. Optimization (HIGH)

  • optimization-watch-mode - Use watch() only when the UI needs reactive render data; keep hot updates in snapshots and callbacks otherwise

3. Logic (HIGH)

Rules coming soon.

How to Use

Read individual rule files for detailed explanations and examples:

rules/dx-extract-complex-hook.md
rules/optimization-watch-mode.md

Each rule file contains:

  • The problem the pattern solves
  • Incorrect and correct code examples
  • Guidance for hook authors and hook consumers
  • References to source material where relevant

Full Compiled Document

For the compiled overview, see AGENTS.md.

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 66 lines · 71 tokens per session scan A e8359d428df5

Subscribe to this mod's changes

react-hooks-best-practices is a skill published in the GitHub repository siberiacancode/agent-skills (19 stars, last pushed 4d ago), licensed MIT. It adds 71 tokens to every session and 505 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nextjs-app-router

Full end-to-end tRPC setup for Next.js App Router. Covers route handler with fetchRequestHandler (GET + POST exports), TRPCProvider with QueryClientProvider, createTRPCOptionsProxy for RSC prefetching, HydrateClient/HydrationBoundary for hydration, useSuspenseQuery for Suspense, and server-side callers.

trpc/trpc · 74 tokens

nextjs-pages-router

Set up tRPC in Next.js Pages Router with createNextApiHandler, createTRPCNext, withTRPC HOC, SSR via ssr option and ssrPrepass, SSG via createServerSideHelpers with getStaticProps, and server-side helpers for getServerSideProps prefetching.

trpc/trpc · 67 tokens

react-query-setup

Set up @trpc/tanstack-react-query with createTRPCContext(), TRPCProvider, useTRPC() hook, queryOptions/mutationOptions factories, query invalidation via queryClient.invalidateQueries with queryFilter, and type inference with inferInput/inferOutput.

trpc/trpc · 60 tokens

react-query-classic-migration

Migrate from @trpc/react-query (classic) to @trpc/tanstack-react-query. Run npx @trpc/upgrade CLI for automated codemod. Manually migrate remaining patterns: hook-based to options-factory, utils.invalidate to queryClient.invalidateQueries with queryFilter, provider changes.

trpc/trpc · 70 tokens

optimize

Improve interface performance across loading speed, rendering, animations, images, and bundle size. Makes experiences faster and smoother.

childrentime/reactuse · 26 tokens

harden

Improve interface resilience through better error handling, i18n support, text overflow handling, and edge case management. Makes interfaces robust and production-ready.

childrentime/reactuse · 32 tokens