react-developer

react-developer is a skill for Claude Code, Codex from tao12345666333/ankaloop. It costs 19 tokens per session (1,093 once invoked), scanned A, original, Apache-2.0.

A React development guide covering components, hooks, shared state, performance, and common modern patterns. React is a JavaScript library for building interactive web interfaces.

In plain words
What is it for?
Use it when building or reviewing React components, handling local or shared state, creating reusable hooks, or improving loading and rendering performance.
Why use it?
It helps developers choose suitable React patterns and manage interface data and behaviour without relying on scattered references.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/tao12345666333/ankaloop/react-developer
Any agent
npx skills add tao12345666333/ankaloop --skill react-developer
Clone the repo
git clone --depth 1 https://github.com/tao12345666333/ankaloop

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-developer

README.md
[![agentmods](https://agentmods.dev/badge/skills/tao12345666333/ankaloop/react-developer.svg)](https://agentmods.dev/skills/tao12345666333/ankaloop/react-developer)
Your own site
<a href="https://agentmods.dev/skills/tao12345666333/ankaloop/react-developer"><img src="https://agentmods.dev/badge/skills/tao12345666333/ankaloop/react-developer.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,093 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00019 $0.01093
Opus 5 $0.00010 $0.00547
Sonnet 5 $0.00004 $0.00219
Haiku 4.5 $0.00002 $0.00109

Measured 5d ago against content hash 1847afa52f86, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

react-developer scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const response = await fetch(url);
examples/skills/react-developer/SKILL.md · 157 lines

How it starts

The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.

React Developer Skill

Core React Concepts

Components and JSX

  • Functional components with hooks
  • Class components (legacy support)
  • JSX syntax and best practices
  • Props and prop validation with PropTypes/TypeScript

React Hooks Mastery

  • useState: State management in functional components
  • useEffect: Side effects and lifecycle management
  • useContext: Context API for state sharing
  • useReducer: Complex state management
  • useMemo: Performance optimization with memoization
  • useCallback: Function memoization
  • useRef: DOM access and persistent values
  • Custom Hooks: Reusable stateful logic

State Management Patterns

  • Local State: useState, useReducer
  • Context API: useContext for global state
  • Redux: State management with Redux Toolkit
  • Zustand: Lightweight state management
  • Recoil: Facebook's state management library
  • SWR/React Query: Server state management

Performance Optimization

  • React.memo for component memoization
  • useMemo and useCallback for expensive computations
  • Code splitting with React.lazy and Suspense
  • Virtual scrolling for large lists
  • Bundle size optimization

Modern React Patterns

  • Compound Components: Flexible component composition
  • Render Props: Sharing component logic
  • Higher-Order Components (HOCs): Component enhancement
  • Custom Hooks Pattern: Reusable stateful logic
  • State Reducer Pattern: Complex state updates
  • Control Props Pattern: External component control

Styling Solutions

  • CSS Modules: Scoped CSS
  • Styled Components: CSS-in-JS
  • Emotion: High-performance CSS-in-JS
  • Tailwind CSS: Utility-first CSS
  • CSS-in-JS best practices

Testing Strategies

  • Jest: Testing framework
  • React Testing Library: Component testing
  • Enzyme: Component testing (legacy)
  • Cypress: End-to-end testing
  • Storybook: Component development and testing

React Ecosystem Tools

  • Create React App: Quick start setup
  • Vite: Fast build tool
  • Next.js: Full-stack React framework
  • Gatsby: Static site generator
  • Remix: Full-stack web framework

Read the full file on GitHub · 157 lines

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. 5d ago First seen · 157 lines · 19 tokens per session scan A 1847afa52f86

Subscribe to this mod's changes

react-developer is a skill published in the GitHub repository tao12345666333/ankaloop (42 stars, last pushed 6d ago), licensed Apache-2.0. It adds 19 tokens to every session and 1,093 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

react-component

Fixture stack skill — build a React component.

tmj-90/gaffer · 12 tokens

frontend-component

Next.js 16+ uses App Router with Server Components by default. Client Components are only used when interactivity is needed (hooks, event handlers, browser APIs).

nek1987/auto-agent-harness · 36 tokens

implementing-command-palettes

Use when building Cmd+K command palettes in React - covers keyboard navigation with arrow keys, keeping selected items in view with scrollIntoView, filtering with shortcut matching, and preventing infinite re-renders from reference instability.

nek1987/auto-agent-harness · 48 tokens

building-nextjs-apps

Build Next.js 16 applications with correct patterns and distinctive design. Use when creating pages, layouts, dynamic routes, upgrading from Next.js 15, or implementing proxy.ts. Covers breaking changes (async params/searchParams, Turbopack, cacheComponents) and frontend aesthetics. NOT when building non-React or…

nek1987/auto-agent-harness · 75 tokens

frontend-orchestrator

Coordinates frontend development tasks (React, TypeScript, UI/UX). Use when implementing user interfaces, components, state management, or visual features. Applies frontend-standard.md for quality gates.

nek1987/auto-agent-harness · 42 tokens

frontend-design

Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI).…

nek1987/auto-agent-harness · 77 tokens