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 agentmods add skills/pmdevsolutions/aurelius/react-component-developmentnpx skills add PMDevSolutions/Aurelius --skill react-component-developmentgit clone --depth 1 https://github.com/PMDevSolutions/AureliusWrote 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/pmdevsolutions/aurelius/react-component-development)<a href="https://agentmods.dev/skills/pmdevsolutions/aurelius/react-component-development"><img src="https://agentmods.dev/badge/skills/pmdevsolutions/aurelius/react-component-development.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.00068 | $0.05864 |
| Opus 5 | $0.00034 | $0.02932 |
| Sonnet 5 | $0.00014 | $0.01173 |
| Haiku 4.5 | $0.00007 | $0.00586 |
Grade A, and why
react-component-development 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 yesterday.
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.
fetch(url, { ...options, signal: abortController.signal }) How it starts
The opening of the file, as written. The whole thing — 849 lines — stays where its author put it; the contents beside it link to each section on GitHub.
React Component Development
Overview
This skill provides patterns, conventions, and best practices for building React components with TypeScript. It covers the full spectrum from primitive UI components to complex composed layouts, custom hooks, state management integration, and React 19 server components.
All patterns assume:
- React 18+ or React 19 (server components)
- TypeScript in strict mode
- Tailwind CSS for styling
- ESLint with
@typescript-eslintandeslint-plugin-react-hooks
When to Use
Use this skill when:
- Creating new React components
- Refactoring existing components for better patterns
- Implementing custom hooks
- Setting up state management (local or global)
- Building compound component APIs
- Working with React 19 server components
- Implementing form handling logic
Trigger phrases:
- "Create a React component"
- "Build a custom hook"
- "Set up state management"
- "TypeScript component pattern"
- "Compound component"
- "Server component"
- "Form handling in React"
Component Patterns
Functional Component with TypeScript
The standard pattern for all components:
import { type HTMLAttributes, forwardRef } from "react";
import { cn } from "@/lib/utils";
interface CardProps extends HTMLAttributes<HTMLDivElement> {
variant?: "default" | "outlined" | "elevated";
padding?: "none" | "sm" | "md" | "lg";
}
const Card = forwardRef<HTMLDivElement, CardProps>(
({ className, variant = "default", padding = "md", children, ...props }, ref) => {
return (
<div
ref={ref}
className={cn(
"rounded-lg",
{
"bg-card text-card-foreground": variant === "default",
"border border-border bg-transparent": variant === "outlined",
"bg-card text-card-foreground shadow-lg": variant === "elevated",
},
{
"p-0": padding === "none",
"p-4": padding === "sm",
"p-6": padding === "md",
"p-8": padding === "lg",
},
className
)}
{...props}
>
{children}
</div>
);
}
);
Card.displayName = "Card";
export { Card, type CardProps };
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.
- yesterday First seen · 849 lines · 0 tokens per session scan A d57d3b9f016e
react-component-development is a skill published in the GitHub repository PMDevSolutions/Aurelius (8 stars, last pushed 21d ago), licensed MIT. It adds 68 tokens to every session and 5,864 once invoked, about $0.0003 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-09-04.
Other skills, from other repositories
stitch-nextjs-components
Converts a Stitch screen, a local HTML file, or a URL into production-ready Next.js 15 App Router components — Server vs Client split, dark mode via CSS variables, TypeScript strict, ARIA, and responsive mobile-first layout. Only the Stitch route needs an API key.
adapter-express
Mount tRPC as Express middleware with createExpressMiddleware() from @trpc/server/adapters/express. Access Express req/res in createContext via CreateExpressContextOptions. Mount at a path prefix like app.use('/trpc', ...). Avoid global express.json() conflicting with tRPC body parsing for FormData.
fast-typescript-check
Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…
typescript-react
Apply, review, and explain React conventions from the TypeScript Style Guide. Use automatically for TypeScript and TSX tasks involving prop-derived state, prop typing, component responsibilities, data flow, compound components, or client and server state.
adding-personhog-rpc
Guide for adding a new RPC to personhog-replica and personhog-router. Covers eligibility checks, proto definition, code generation for Python and Node.js clients, Rust implementation (storage trait, postgres queries, service handler, router wiring), and index compatibility validation. Use when adding a new gRPC…
figma-codegen
Generate framework-aware code from a Figma design. Reads the project's stack profile and emits code matching the existing framework (React/Vue/Svelte/Next/etc.) and styling (Tailwind/CSS/CSS-in-JS), reusing existing components and design tokens instead of regenerating from scratch. Triggers whenever the user wants a…