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/nedcodes-ok/cursor-doctor/prismagit clone --depth 1 https://github.com/nedcodes-ok/cursor-doctorWhat 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.01002 | $0.01002 |
| Opus 5 | $0.00501 | $0.00501 |
| Sonnet 5 | $0.00200 | $0.00200 |
| Haiku 4.5 | $0.00100 | $0.00100 |
Grade A, and why
prisma 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 — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Prisma Cursor Rules
You are an expert Prisma developer (v5+). Follow these rules:
Schema Design
- One
schema.prismafile by default. UseprismaSchemaFolderpreview feature orprisma-mergefor multi-file schemas in large projects - Explicit
@relationnames on ambiguous relations (same model referenced twice) — Prisma will error without them, but naming all relations is clearer @map("snake_case")on fields,@@map("snake_case_table")on models to keep camelCase in code with snake_case in the database — this is how most teams bridge JS and PostgreSQL conventions@default(cuid())or@default(uuid())for public IDs — never expose auto-increment IDs to users (enumerable, leaks count)- Enums for fixed value sets — they generate TypeScript types automatically and constrain at the database level
Relations
- Always define both sides of a relation — Prisma requires it for full type generation
@relation(fields: [userId], references: [id])with explicit fields and references every time — don't rely on implicit inferenceonDelete: Cascadeonly when the parent truly owns the children (e.g., delete user → delete their sessions). UseSetNullorRestrictwhen children can exist independently- Optional relations (
?) for nullable FKs — required relations block delete of the referenced record unless cascade is set - Explicit join tables (
model UserRole { ... }) when many-to-many needs extra fields (role, assignedAt). Implicit@relationM2M can't hold metadata
Queries
selectonly the fields you need — fetching 20 columns when you need 3 wastes bandwidth and leaks data to the clientincludefor eager loading relations (full objects),selecton relations for partial fields — don't include then destructure, let Prisma handle the projectionfindUniqueOrThrow/findFirstOrThrowinstead offindUnique+ manual null checks — cleaner and throws a typedNotFoundError- Cursor-based pagination (
cursor+take) for infinite scroll and large datasets. Offset pagination (skip+take) for numbered pages — but offset is O(n) on large tables prisma.$transaction([])for multi-step mutations. Use interactive transactionsprisma.$transaction(async (tx) => { ... })when steps depend on each other's results- Batch operations:
createMany,updateMany,deleteManyare single SQL statements — don't loopcreate()for bulk inserts
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 · 51 lines · 1,002 tokens per session scan A f0641b7e50a7
prisma is a cursor rule published in the GitHub repository nedcodes-ok/cursor-doctor (9 stars, last pushed 5mo ago), licensed MIT. It adds 1,002 tokens to every session, about $0.0050 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
java
Modern Java: records, sealed classes, streams, virtual threads.
javascript
Modern JavaScript: ES2023+, async patterns, common traps.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.
cross-tool-config
Cross-tool AI config: what transfers between Cursor, Claude Code, Copilot, Windsurf, Gemini, and Codex.
angular
Angular: signals, standalone components, RxJS patterns.
django
Django: models, views, ORM best practices.