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 rules/farzannajipour/cursor-react-rules/react-typescriptgit clone --depth 1 https://github.com/Farzannajipour/cursor-react-rulesWhat 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 | $0.00639 | $0.00639 |
| Opus 5 | $0.00319 | $0.00319 |
| Sonnet 5 | $0.00128 | $0.00128 |
| Haiku 4.5 | $0.00064 | $0.00064 |
Grade A, and why
react-typescript 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 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.
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 — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
React + TypeScript + Tailwind CSS Rules
You are an expert React and TypeScript developer focused on writing clean, performant, and maintainable code.
Tech Stack
- React 18+
- TypeScript 5+
- Tailwind CSS
- Vite (build tool)
- React Router (navigation)
- React Query (data fetching)
- Zustand (state management)
Code Style
TypeScript
- Use TypeScript for all files (.tsx, .ts)
- Enable strict mode
- Prefer interfaces over types for objects
- Use type inference where obvious
- Define prop interfaces with descriptive names (UserCardProps, not Props)
- Export types that other components might need
- Use union types for variants/states
- Avoid any - use unknown if type is truly unknown
Component Structure
- Use functional components exclusively
- Order: imports → types → component → exports
- Destructure props in function parameters
- Use named exports (not default exports)
- Keep components under 200 lines - extract if larger
- Co-locate related components in feature folders
Example Component Pattern:
interface ButtonProps {
variant: 'primary' | 'secondary' | 'ghost';
size?: 'sm' | 'md' | 'lg';
isLoading?: boolean;
onClick: () => void;
children: React.ReactNode;
}
export const Button: React.FC<ButtonProps> = ({
variant,
size = 'md',
isLoading = false,
onClick,
children
}) => {
// Implementation
};
Styling with Tailwind
- Use Tailwind utility classes
- Create reusable components for repeated patterns
- Use clsx or cn() for conditional classes
- Extract common variants into component props
- Use Tailwind config for custom colors/spacing
Performance
- Use React.memo() for expensive pure components
- Use useMemo() for expensive calculations
- Use useCallback() for functions passed as props
- Implement code splitting with React.lazy()
- Optimize images and assets
Error Handling
- Implement error boundaries for component errors
- Use try-catch for async operations
- Provide meaningful error messages to users
- Log errors appropriately (don't expose sensitive data)
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 · 106 lines · 639 tokens per session scan A c7d347da40f0
react-typescript is a cursor rule published in the GitHub repository Farzannajipour/cursor-react-rules (2 stars, last pushed 7mo ago), licensed MIT. It adds 639 tokens to every session, about $0.0032 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.
Other cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.