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/orm/contract-space-package-layoutgit clone --depth 1 https://github.com/prisma/ormWhat 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.00892 |
| Opus 5 | $0.00000 | $0.00446 |
| Sonnet 5 | $0.00000 | $0.00178 |
| Haiku 4.5 | $0.00000 | $0.00089 |
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 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.
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.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.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:@internal/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.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.
- yesterday First seen · 66 lines · 0 tokens per session scan A 2f12b85c5301
contract-space-package-layout is a cursor rule published in the GitHub repository prisma/orm (47,579 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 892 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
config-validation-and-normalization
Patterns for config validation and normalization using Arktype.
contract-space-package-layout
On-disk layout for packages that expose a contract space (extensions, internal monorepo packages, aggregate-root apps).
cli-package-exports
CLI package export patterns and import conventions.
resolving-cyclic-dependencies
How to resolve cyclic dependencies when moving types or refactoring packages.
no-family-vocabulary-in-framework
The framework domain (packages/1-framework) carries no family- or target-specific vocabulary — types, fields, hooks, or strategy values. Enforced by lint:framework-vocabulary.
review-scope-overrides
Honor explicitly provided base branches in review artifacts.