Prisma ORM is a Node.js and TypeScript database toolkit that lets applications work with databases through a programming interface instead of writing every query directly in SQL. Developers use it with databases including PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB, and CockroachDB. The catalogue add-ons provide agent rules, skills, hooks, agents, and other workflows for using Prisma.
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.
git clone --depth 1 https://github.com/prisma/ormWrote 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/prisma/orm/running-tests)<a href="https://agentmods.dev/rules/prisma/orm/running-tests"><img src="https://agentmods.dev/badge/rules/prisma/orm/running-tests.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.1 | $0.00893 | $0.00893 |
| Opus 5 | $0.00447 | $0.00447 |
| Sonnet 5 | $0.00179 | $0.00179 |
| Haiku 4.5 | $0.00089 | $0.00089 |
Grade A, and why
running-tests 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 3d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- running-tests — 100% identical, 6 lines differ
How it starts
The opening of the file, as written. The whole thing — 76 lines — stays where its author put it; the contents beside it link to each section on GitHub.
How to run tests, check for failures, and get specific failures
1. Run a test suite
Each slow command has an :agent variant. The first line of its output prints the exact log path:
$ pnpm test:packages:agent
log: wip/test-packages.20260615-190441.32317.log
The full output goes to that file. The exit code is written to a sibling .exit file (same path with .log → .exit). Use the path printed by the command — don't guess one. Every run gets its own timestamped path, so history is preserved automatically. Contents of wip/ are gitignored.
Each :agent run has a hard timeout (default 5 minutes, override with AGENT_CMD_TIMEOUT_SECONDS — bump it for a legitimately long suite). If the run hangs — e.g. vitest freezes after printing its summary — the child process group is killed and the .exit file records 124 rather than blocking forever.
| Command | Purpose |
|---|---|
pnpm test:packages:agent |
Unit tests for every package |
pnpm test:integration:agent |
Integration suite (PGlite + mongodb-memory-server) |
pnpm test:e2e:agent |
End-to-end suite |
pnpm build:agent |
Build every package (turbo) |
pnpm typecheck:agent |
Typecheck every package (turbo, cached) |
pnpm lint:agent |
Biome lint |
pnpm lint:deps:agent |
Dependency-layering check |
pnpm fixtures:check:agent |
Regenerate fixtures and diff them |
2. Run one package's tests
pnpm --filter @internal/cli test
Runs only that package's own test script — seconds, not minutes. Output goes to your terminal; no capture needed.
3. Rerun a specific failing test
By file:
pnpm --filter @internal/cli test test/commands/migration-list-json-golden.test.ts
By test name within a file (vitest's -t filter):
pnpm --filter @internal/cli test test/commands/migration-list-json-golden.test.ts -t "pins head ref decoration"
4. Find specific failures in the captured output
Use the log path the :agent command printed (the shell exit status tells you pass/fail; the .exit sibling file records the same number). If non-zero, list failing files and assertions:
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.
- 3d ago First seen · 76 lines · 893 tokens per session scan A 8ec2e74d6d48
running-tests is a cursor rule published in the GitHub repository prisma/orm (47,606 stars, last pushed 4d ago), licensed Apache-2.0. It adds 893 tokens to every session, about $0.0045 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
running-tests
How to run tests, check for failures, and rerun specific failing tests — use the :agent variants of slow commands.
nodebench-auto-qa
Auto-QA after code changes using NodeBench MCP tools.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
prefer-object-matcher
Prefer object matchers over multiple individual expect().toBe() calls.
prefer-to-throw
Use expect().toThrow() instead of manual try/catch blocks in tests.
test-import-patterns
Test import patterns and conventions.