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.
npx skills add adonai-labs/agent-runway --skill skill-react-coregit clone --depth 1 https://github.com/adonai-labs/agent-runwayWrote 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.
[](https://agentmods.dev/skills/adonai-labs/agent-runway/skill-react-core)<a href="https://agentmods.dev/skills/adonai-labs/agent-runway/skill-react-core"><img src="https://agentmods.dev/badge/skills/adonai-labs/agent-runway/skill-react-core.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00089 | $0.00729 |
| Opus 5 | $0.00044 | $0.00365 |
| Sonnet 5 | $0.00018 | $0.00146 |
| Haiku 4.5 | $0.00009 | $0.00073 |
Grade A, and why
react-core 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.
React Core
How to invoke
After agent-runway add react, the skill is installed at .cursor/skills/react-core/. Use:
- Cursor:
@react-coreor ask a React question while editing*.tsx/*.jsx(rules auto-attach) - Claude Code: reference
.agent-runway/skills/react-core/SKILL.mdor ask in context of React files
Examples:
- How should I structure this feature's components?
- When should I use context vs Zustand vs React Query?
- How do I test this hook without rendering a component?
- Is this memoisation justified?
Not sure which skill to use? Start with
/start— it classifies intent and routes to the right skill.
Guiding principles
Simplicity first. React's mental model is already a good guide — follow it rather than fighting it.
- Start with the simplest state and structure that works; add layers only when complexity demands it
- Composition over configuration; small, focused components over large multi-responsibility ones
- SOLID applies: SRP means one reason to render, DIP via props and hooks rather than direct coupling
- DRY for business logic in hooks and services; duplication in JSX is often acceptable
- Measure before memoising —
React.memo,useMemo, anduseCallbackhave a cost; profile first - Accessibility is not optional — semantic HTML and ARIA are part of the implementation, not an afterthought
What this skill helps with
- Project and feature structure scaled to complexity
- Component patterns — functional, composition, compound, controlled/uncontrolled
- State management decisions — local state, context, Zustand, React Query
- Custom hooks — extracting logic, cleaning up, dependency management
- Testing with React Testing Library — components, hooks, context, async
- Security: XSS,
dangerouslySetInnerHTML, input validation - Accessibility: semantic HTML, ARIA, keyboard navigation, focus management
- Performance: memoisation strategy, code splitting, virtualisation
Skill files
| File | Contents |
|---|---|
| architecture.md | Project structure, feature organisation, routing, naming |
| patterns.md | Component patterns, hooks, state management decisions |
| testing.md | RTL setup, component tests, hook tests, MSW, accessibility |
| security.md | XSS, CSP, input validation, dependency audit |
| observability.md | Error boundaries, logging, performance monitoring |
| reference.md | Toolchain, Vite config, common commands |
What ships with it
6 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.
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.
- 4d ago First seen · 69 lines · 89 tokens per session scan A 86b347c36ab9
react-core is a skill published in the GitHub repository adonai-labs/agent-runway (2 stars, last pushed 18d ago), licensed MIT. It adds 89 tokens to every session and 729 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-09-03.
Other skills, from other repositories
skillshare-ui-website-style
Skillshare frontend design system for the React dashboard (ui/) and Docusaurus website (website/). Use this skill whenever you: build or modify a dashboard page or component in ui/src/, style or layout website pages or custom CSS in website/, create new React components for the dashboard, add pages to the dashboard…
21st-ui
Find, install, and generate UI with 21st.dev. Use when the user asks for a UI component (pricing table, hero, navbar, dashboard, form, etc.), wants design inspiration, needs a brand logo as an SVG component, or wants to generate new UI from a prompt.
vercel-react-view-transitions
Guide for implementing smooth, native-feeling animations using React's View Transition API ( component, addTransitionType, and CSS view transition pseudo-elements). Use this skill whenever the user wants to add page transitions, animate route changes, create shared element animations, animate enter/exit of components…
extract-source-sample
Given the path to a finished content-goose ad-run folder, extract everything that defines that ad — recipe shot list, VO script, characters, voices, world, atom-skills, master mp4 — and emit a source-sample.json in the exact shape the upload-ad-sample skill writes to the Goose Ads library. Also links every character…
remotion-to-hyperframes
Port an existing Remotion (React) composition to HyperFrames HTML. Use ONLY when the user explicitly asks to port/convert/migrate/translate a Remotion source. Do NOT use: (a) authoring a new HyperFrames composition; (b) Remotion mentioned in passing; (c) Remotion code shared as reference only; (d) "same video as my…
vercel-react-best-practices
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance…