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/onurhan1337/rush/claude-mdgit clone --depth 1 https://github.com/onurhan1337/rushWrote 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/instructions/onurhan1337/rush/claude-md)<a href="https://agentmods.dev/instructions/onurhan1337/rush/claude-md"><img src="https://agentmods.dev/badge/instructions/onurhan1337/rush/claude-md.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 | $0.01970 | $0.01970 |
| Opus 5 | $0.00985 | $0.00985 |
| Sonnet 5 | $0.00394 | $0.00394 |
| Haiku 4.5 | $0.00197 | $0.00197 |
Grade A, and why
rush CLAUDE.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 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.
This is a copy
97% identical to rush AGENTS.md — 7 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Project Rules for Ikas App Starter App (Next.js)
Core Principles
- Prefer simplicity, readability, explicitness. Keep logic in small, testable functions.
- TypeScript strict; avoid any. Use precise types from generated GraphQL.
- Treat API tokens and secrets as sensitive; never log them.
Stack Overview
- Next.js 15 App Router, React 19, TypeScript, Tailwind + shadcn/ui.
- ikas Admin GraphQL via
@ikas/admin-api-clientwith codegen. - Session via
iron-session.
MCP Usage
- When generating new UI components, use the "shadcn" MCP to fetch component boilerplates and demos. Align with existing
src/components/ui/*structure. - When generating or exploring ikas GraphQL operations, use the "ikas" MCP list and introspect tools to discover available queries/mutations and their shapes before implementation.
- For ikas GraphQL specifically, follow this order before any implementation:
- Use the "ikas" MCP list tool to find the correct query/mutation name.
- Use the "ikas" MCP introspect tool to get the operation's full shape (variables, return fields, enums).
- Only after confirming via list + introspect, add the document to
graphql-requests.tsand run codegen.
- For ikas GraphQL specifically, follow this order before any implementation:
GraphQL and API Workflow
- Define queries/mutations in
src/lib/ikas-client/graphql-requests.tsusinggql. - Run
pnpm codegento regeneratesrc/lib/ikas-client/generated/graphql.tstypes and client wrappers. - Acquire a client with
getIkas(token)fromsrc/helpers/api-helpers.ts. - Execute queries via
ikasClient.queries.<name>()and mutations viaikasClient.mutations.<name>(variables).
Enforcement
- Do NOT write inline GraphQL strings inside API routes or components.
- Always import documents from
graphql-requests.tsand runpnpm codegenbefore usage. - Always call ikas operations through
ikasClient.queries|mutations.<operation>()to keep type-safety. - Before adding a new operation, first run the ikas MCP list tool, then introspect to confirm details.
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 · 168 lines · 1,970 tokens per session scan A edd0d653a18d
rush CLAUDE.md is an instructions file published in the GitHub repository onurhan1337/rush (5 stars, last pushed 17d ago), licensed MIT. It adds 1,970 tokens to every session, about $0.0098 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to rush AGENTS.md, differing in 7 lines, and is treated as a copy.
Other instructions, from other repositories
coss AGENTS.md
AGENTS.md instructions for cosscom/coss, covering agents.md and main documentation.
magicui AGENTS.md
Instructions for magicuidesign/magicui, covering project context, key principles, before writing code, rules and accessibility (a11y).
data-table-filters AGENTS.md
AGENTS.md instructions for openstatusHQ/data-table-filters, covering agents.md, a. using data-table-filters in someone's project, install recipes, things that bite and b. contributing to this repository.
data-table-filters CLAUDE.md
Claude Code instructions for openstatusHQ/data-table-filters, covering claude.md, project overview, monorepo structure (pnpm + turborepo), key commands and database.
kan AGENTS.md
AGENTS.md instructions for kanbn/kan, covering agents.md, project overview, setup commands, project structure and code style.
ui-beats AGENTS.md
Instructions for nikhils4/ui-beats: This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in nodemodules/next/dist/docs/ (resolved from this file's directory; in monorepos the next package may not be visible from the repo root) before…