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/prisma/prisma-next/contract-space-package-layoutgit clone --depth 1 https://github.com/prisma/prisma-nextWhat 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.00897 |
| Opus 5 | $0.00000 | $0.00449 |
| Sonnet 5 | $0.00000 | $0.00179 |
| Haiku 4.5 | $0.00000 | $0.00090 |
Grade A, and why
contract-space-package-layout 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 — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Contract-space package layout
Every package that emits its own contract.json + migrations (published
extensions, internal monorepo extension packages, aggregate-root
applications) uses the same on-disk shape:
<package>/
├── prisma-next.config.ts ← project config (at package root)
├── migrations/
│ ├── refs/head.json ← hand-pinned head ref
│ ├── snapshots/ ← content-addressed contract store, keyed by storage hash
│ │ └── <hex>/
│ │ ├── contract.json
│ │ └── contract.d.ts
│ └── <timestamp>_<name>/ ← one dir per migration
│ ├── migration.json
│ ├── ops.json
│ └── migration.ts
└── src/
├── contract.prisma ← PSL source when the space has app-visible schema (preferred; exceptions below)
├── contract.ts ← optional TS source (narrow exception)
├── contract.json ← emitted (do not edit)
├── contract.d.ts ← emitted (do not edit)
└── exports/control.ts ← descriptor; JSON-imports the artefacts
(or `src/control.ts` in internal /
monorepo packages without an exports
barrel)
Rules (these are the spots where mistakes recur)
- Pick the contract source by what the space contributes. Three cases, each wired in
prisma-next.config.ts:- App-visible schema (models, storage types, namespaces) → author PSL in
src/contract.prisma; wireprismaContract('./src/contract.prisma', { output: 'src/contract.json', target }). PSL is the canonical authoring surface: it reads as a schema (not as builder calls), interoperates with brownfield Prisma schemas, and keeps the contract decoupled from the workspace's TS type system. - Migrations only — installs invariants (e.g. a Postgres extension) but ships no tables or native types → omit the contract source entirely; wire
emptyContract({ output: 'src/contract.json', target }). Example:@prisma-next/extension-paradedb. - Typed objects PSL can't yet express (e.g. pgvector's parameterised
vectorregistration understorage.types) → keepsrc/contract.ts; wiretypescriptContract(contract, 'src/contract.json'), with a comment in the source naming the missing PSL surface.
- App-visible schema (models, storage types, namespaces) → author PSL in
- No
<space-id>subdirectory insidemigrations/. A package owns exactly one contract space, so the<space-id>directory adds no information. Migration directories sit directly undermigrations/, andrefs/sits atmigrations/refs/. Configure withmigrations.dir: 'migrations'— notmigrations/<space-id>. - No
src/contract/subdirectory. The contract source and the emittedcontract.json/contract.d.tssit directly insrc/. prisma-next.config.tslives at the package root, not undersrc/.
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 · 66 lines · 0 tokens per session scan A e065327aadbc
contract-space-package-layout is a cursor rule published in the GitHub repository prisma/prisma-next (420 stars, last pushed 7d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 897 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-30.
Other cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.