react-component-design

A guide for designing React component interfaces, meaning the properties and callbacks that let other code use a component. It covers component responsibilities, controlled and uncontrolled inputs, composition, and keeping the public interface small.

In plain words
What is it for?
Use it when creating, refactoring, or reviewing React 18+ TypeScript components and deciding how their data, events, and state should be exposed.
Why use it?
It helps prevent components with unclear responsibilities, too many props, unnecessary prop passing, or inconsistent state behaviour.

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/soulcodex/agentic/react-component-design
Any agent
npx skills add soulcodex/agentic --skill react-component-design
Clone the repo
git clone --depth 1 https://github.com/soulcodex/agentic

Made for: Claude Code, Codex.

Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 628 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00056 $0.00628
Opus 5 $0.00028 $0.00314
Sonnet 5 $0.00011 $0.00126
Haiku 4.5 $0.00006 $0.00063

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

Security

Grade A, and why

react-component-design 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 2d 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/ui/react-component-design/SKILL.md · 89 lines

How it starts

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

React Component Design Skill

Step 1 — Identify the Component Responsibility

Determine the component type before designing the API:

  • Page component: orchestrates data fetching, permissions, and layout.
  • Feature component: contains feature-specific state and business behavior.
  • UI component: pure presentational; props and callbacks only.

Step 2 — Design the Public API Surface

  • Keep props minimal and strongly typed.
  • Prefer explicit callback names (onSave, onDismiss) over generic handlers.
  • Support controlled and uncontrolled modes only when both are needed.
  • Forward refs only for imperative handles (focus, scroll, open).
interface TextInputProps {
  value?: string
  defaultValue?: string
  onValueChange?: (next: string) => void
}

export const TextInput = forwardRef<HTMLInputElement, TextInputProps>(
  ({ value, defaultValue, onValueChange }, ref) => {
    return (
      <input
        ref={ref}
        value={value}
        defaultValue={defaultValue}
        onChange={(e) => onValueChange?.(e.target.value)}
      />
    )
  },
)

Step 3 — Evaluate Prop Drilling Depth

  • 1-2 levels: props are acceptable.
  • 3+ levels through intermediates that do not use data: refactor to context or composition.
  • Global cross-feature state: dedicated store.

Step 4 — Composition and Extensibility

  • Prefer composition over inheritance.
  • Use compound components with context for tightly-related primitives.
  • Use render props or slot-like children patterns when parent-controlled rendering is required.
  • Do not expose internal implementation state through props.

Step 5 — Accessibility and Semantics

  • Base UI components must render semantic HTML first.
  • Ensure keyboard navigation and focus management are first-class API concerns.
  • Tie labels and descriptions to controls via id, aria-*, and role-appropriate markup.

Step 6 — Verify

  • Component responsibility is single-purpose
  • Public props are minimal and typed
  • No prop drilling through more than two uninterested layers
  • forwardRef is only used for imperative handles
  • Interactive components meet semantic and keyboard accessibility basics
  • pnpm tsc --noEmit passes with no errors

Read the full file on GitHub · 89 lines

Files

What ships with it

1 file 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. 2d ago First seen · 89 lines · 56 tokens per session scan A 6a4ecf81a036

Subscribe to this mod's changes

react-component-design is a skill published in the GitHub repository soulcodex/agentic (10 stars, last pushed 2d ago), licensed MIT. It adds 56 tokens to every session and 628 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

beui

Pick and install beUI (@beui) animated React components from the shadcn registry. Use when building motion UI, agent/chat interfaces, toasts, docks, bottom sheets, drawers, popovers, sliders, loaders, 404 pages, or any beui.dev component. Maps user intent to exact @beui install slugs instead of inventing custom…

starc007/ui-components · 78 tokens

beui-pro

Choose, inspect, install, and compose licensed beUI Pro premium React blocks from the authenticated shadcn registry. Use when building or improving landing pages with beUI Pro, installing @beui-pro items, selecting premium heroes, features, pricing, social proof, CTAs, navigation, footers, or other page sections, or…

starc007/ui-components · 83 tokens

agent-upkeep

Perform one small, scoped maintenance improvement to the Elements monorepo and open a single reviewable pull request. Use this skill for scheduled or unattended upkeep runs that improve unit test coverage for one file, fix one behavioral bug in one module, or move one off ESLint rule toward enforcement to reduce…

NVIDIA/elements · 115 tokens

agent-dependencies

Perform one conservative dependency or toolchain upgrade in the Elements monorepo and open a validated pull request. Use for nightly or unattended dependency maintenance, outdated package checks, first-party actions/ GitHub Actions updates, and pinned mise tool updates. Use the github-dependabot skill instead when the…

NVIDIA/elements · 73 tokens

agent-debug-ci

Investigate failed scheduled or nightly GitHub Actions runs on the default branch, determine whether the failure is reproducible and repository-owned, implement the smallest evidence-backed fix, validate it, and open a pull request. Use when a failed nightly CI event starts an agent, or when the standard CI or…

NVIDIA/elements · 80 tokens

audit-ci

Run and analyze Elements cold CI performance profiles and propose evidence-backed build, test, lint, and dependency-graph improvements. Use whenever asked to profile or benchmark pnpm run ci, rerun ci:profile, create a CI performance audit, compare CI timings, find bottlenecks or the completion path, investigate a CI…

NVIDIA/elements · 78 tokens