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/cursorrules-collection/prismagit clone --depth 1 https://github.com/nedcodes-ok/cursorrules-collectionWrote 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/rules/nedcodes-ok/cursorrules-collection/prisma)<a href="https://agentmods.dev/rules/nedcodes-ok/cursorrules-collection/prisma"><img src="https://agentmods.dev/badge/rules/nedcodes-ok/cursorrules-collection/prisma.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.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 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- prisma — 100% identical, 0 lines differ
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.
- yesterday First seen · 51 lines · 1,002 tokens per session scan A f0641b7e50a7
prisma is a cursor rule published in the GitHub repository nedcodes-ok/cursorrules-collection (37 stars, last pushed 6mo 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-09-03.
Other cursor rules, from other repositories
30-database-postgres
PostgreSQL and persistence rules.
mysql-auto
This rule enforces MySQL-specific best practices to enhance readability, performance, security, and maintainability. It targets MySQL features (e.g., storage engines, character sets) and common pitfalls, and adds concrete guidance for schema design and creation.
40-cache-redis
Redis caching and queue rules.
10-feature-development
Feature implementation workflow and engineering mindset.
11-template-conventions
Reusable building blocks shipped with this template - use them instead of writing new ones.
03-ui
UI, layout, theming and localization standards.