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 commands/farzannajipour/cursor-react-rules/create-formgit 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.00000 | $0.01126 |
| Opus 5 | $0.00000 | $0.00563 |
| Sonnet 5 | $0.00000 | $0.00225 |
| Haiku 4.5 | $0.00000 | $0.00113 |
Grade A, and why
create-form 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.
How it starts
The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create Form
Overview
Create a comprehensive form with React Hook Form, Zod validation, error handling, and loading states.
Steps
-
Define form schema
- Create Zod schema with all fields and validation rules
- Define TypeScript types from schema
-
Set up form
- Use React Hook Form with Zod resolver
- Configure form state and submission handling
-
Add form fields
- Create input components with labels
- Wire up register() for each field
- Display validation errors
-
Handle submission
- Implement async submission handler
- Show loading state during submission
- Display success/error feedback
Template
import { useForm } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import { z } from 'zod';
// Define schema
const formSchema = z.object({
name: z.string().min(2, 'Name must be at least 2 characters'),
email: z.string().email('Invalid email address'),
message: z.string().min(10, 'Message must be at least 10 characters'),
terms: z.boolean().refine(val => val === true, 'You must accept terms'),
});
type FormData = z.infer<typeof formSchema>;
interface FormProps {
onSubmit: (data: FormData) => Promise<void>;
}
export function ContactForm({ onSubmit }: FormProps) {
const {
register,
handleSubmit,
formState: { errors, isSubmitting, isSubmitSuccessful },
reset,
} = useForm<FormData>({
resolver: zodResolver(formSchema),
defaultValues: {
name: '',
email: '',
message: '',
terms: false,
},
});
const onSubmitHandler = async (data: FormData) => {
try {
await onSubmit(data);
reset();
} catch (error) {
console.error('Form submission error:', error);
}
};
return (
<form onSubmit={handleSubmit(onSubmitHandler)} className="space-y-6">
{/* Name field */}
<div>
<label htmlFor="name" className="block text-sm font-medium mb-2">
Name
</label>
<input
{...register('name')}
id="name"
type="text"
className="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-blue-500"
disabled={isSubmitting}
/>
{errors.name && (
<p className="mt-1 text-sm text-red-600">{errors.name.message}</p>
)}
</div>
{/* Email field */}
<div>
<label htmlFor="email" className="block text-sm font-medium mb-2">
Email
</label>
<input
{...register('email')}
id="email"
type="email"
className="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-blue-500"
disabled={isSubmitting}
/>
{errors.email && (
<p className="mt-1 text-sm text-red-600">{errors.email.message}</p>
)}
</div>
{/* Message field */}
<div>
<label htmlFor="message" className="block text-sm font-medium mb-2">
Message
</label>
<textarea
{...register('message')}
id="message"
rows={4}
className="w-full px-4 py-2 border rounded-lg focus:ring-2 focus:ring-blue-500"
disabled={isSubmitting}
/>
{errors.message && (
<p className="mt-1 text-sm text-red-600">{errors.message.message}</p>
)}
</div>
{/* Terms checkbox */}
<div className="flex items-center">
<input
{...register('terms')}
id="terms"
type="checkbox"
className="mr-2"
disabled={isSubmitting}
/>
<label htmlFor="terms" className="text-sm">
I accept the terms and conditions
</label>
</div>
{errors.terms && (
<p className="text-sm text-red-600">{errors.terms.message}</p>
)}
{/* Success message */}
{isSubmitSuccessful && (
<div className="p-4 bg-green-50 text-green-700 rounded-lg">
Form submitted successfully!
</div>
)}
{/* Submit button */}
<button
type="submit"
disabled={isSubmitting}
className="w-full px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 disabled:opacity-50 disabled:cursor-not-allowed"
>
{isSubmitting ? 'Submitting...' : 'Submit'}
</button>
</form>
);
}
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.
- 2d ago First seen · 169 lines · 0 tokens per session scan A 7b0d666c9327
create-form is a command published in the GitHub repository Farzannajipour/cursor-react-rules (3 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,126 tokens. 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 commands, from other repositories
check-docs-consistency
Use the check-docs-consistency skill to validate alignment across rootage/design/react docs.
design-to-code
Mockup-to-component pipeline using Google Stitch, 21st.dev, and Storybook MCP. Accepts a screenshot, a description, or a URL and produces production-ready React components, checking existing Storybook components before generating anything new. Use when implementing UI from a mockup or screenshot. To call the MCP tool…
component
Scaffold a new React component grounded in the paper-mono primitives. Requires explicit kind or a nearest-existing-component match. No empty divs, no speculative scaffolding.
a11y-audit-react
Identify accessibility violations in React components and provide actionable remediation aligned with WCAG 2.2 Level AA. This is the guided audit workflow that applies the standards defined in the a11y-automation and react-components rules.
scaffold-react
Quickly scaffold a new React + TypeScript project with Claude Code configuration.
get-component-source
The full TSX source of a component (append " demo" for its usage example).