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 instructions/iloveitaly/llm-ide-rules/reactgit clone --depth 1 https://github.com/iloveitaly/llm-ide-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.01033 | $0.01033 |
| Opus 5 | $0.00517 | $0.00517 |
| Sonnet 5 | $0.00207 | $0.00207 |
| Haiku 4.5 | $0.00103 | $0.00103 |
Grade A, and why
llm-ide-rules react.instructions.md 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 — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
React
- You are using the latest version of React (v19)
- Do not write any backend code. Just frontend logic.
- If a complex skeleton is needed, create a component function
LoadingSkeletonin the same file. - Store components for each major page or workflow in
app/components/$WORKFLOW/$COMPONENT.tsx.- If a single page has more than two dedicated components, create a subfolder
app/components/$WORKFLOW/$PAGE/$COMPONENT.tsx
- If a single page has more than two dedicated components, create a subfolder
- Use lowercase dash separated words for file names.
- Use React 19, TypeScript, Tailwind CSS, and ShadCN components.
- Prefer function components, hooks over classes.
- Use ShadCN components in
web/app/components/uias your component library. If you need new components, ask for them.- Never edit the
web/components/ui/*.tsxfiles. - You can find a list of components here https://ui.shadcn.com/docs/components
- Never edit the
- Break up large components into smaller components, but keep them in the same file unless they can be generalized.
- Put any "magic" strings like API keys, hosts, etc into a "constants.ts" file.
- For React functional components with three or fewer props, always inline the prop types as an object literal directly in the function signature after the destructured parameters (e.g.,
function Component({ prop1, prop2 }: { prop1: string; prop2?: number }) { ... }). Include default values in destructuring and mark optional props with ? in the type object. Do not use separate interfaces or type aliases; keep types inline. For complex types, add inline comments if needed. - Put the interface definition right above the related function
- Internally, store all currency values as integers and convert them to floats when rendering visually
- When building forms use React Hook Form.
- Include a two line breaks between any
useHook()calls and anyuseState()definitions for a component. - When using a function prop inside a
useEffect, please use a pattern that avoids including the function in the dependency array, like theuseReftrick. - When writing React components, always hoist complex conditional expressions into descriptively named constants at the top of the component function for better readability and maintainability.
- When managing API response data, store the entire response object (or relevant subset) in a single
useStaterather than creating separate state variables for each field. Derive individual values from the response object when passing to child components using optional chaining (e.g., response?.field || defaultValue). - Refactor ternary to &&:
{condition ? <A/> : <B/>}→{condition && <A/>}{!condition && <B/>} - Use the following pattern to reference query string values (i.e.
?theQueryStringParam=value):
const [searchParams, _setSearchParams] = useSearchParams();
// searchParams contains the value of all query string parameters
const queryStringValue = searchParams.get("theQueryStringParam")
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 · 105 lines · 1,033 tokens per session scan A d2ded1008069
llm-ide-rules react.instructions.md is an instructions file published in the GitHub repository iloveitaly/llm-ide-rules (13 stars, last pushed 2d ago), licensed MIT. It adds 1,033 tokens to every session, about $0.0052 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-30.
Other instructions, from other repositories
lovable-boilerplate global.instructions.md
Instructions for chihebnabil/lovable-boilerplate, covering react + vite + shadcn/ui template - premium design system, critical rules - read first, never create, always create and essential commands.
awesome-agents-md copilot-instructions.md
Instructions for bradleybeatz1313/awesome-agents-md, covering github copilot — custom instructions for next.js 15, conventions, forbidden patterns, cache and hydration awareness and files to leave alone unless asked.
designbrief AGENTS.md
Instructions for Heiberg-Industries/designbrief, covering designbrief, when building ui and available styles.
rails-instructions rails-hotwire.instructions.md
Instructions for levifig/rails-instructions, covering rails hotwire guide, core philosophy, turbo drive principles, turbo drive configuration and turbo frames principles.
rails-instructions rails-styling.instructions.md
Rails Styling with TailwindCSS.
devcontext copilot-instructions.md
Instructions for spivx/devcontext: When adding props to a component, always place the props interface at the top of the component file, above the component definition.