test-intent-readability

test-intent-readability is a cursor rule for Cursor from prisma/orm. It costs 0 tokens per session (425 once invoked), scanned A, original, Apache-2.0.

A test-writing rule that organizes checks around named conditions and state changes, similar to a readable given-when-then story.

In plain words
What is it for?
Use it when structuring nested test groups and examples for connected, disconnected, initialized, or otherwise changing states.
Why use it?
It lets readers understand the behavior under test without reconstructing the lifecycle from scattered assertions or implementation details.

Cursor rule for Cursor ✓ vendor

Written for Cursor: a Cursor rule (.mdc). Also seen: installed under .agents/ (shared by several agents).

Good fit Use it when structuring nested test groups and examples for connected, disconnected, initialized, or otherwise changing states.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/prisma/orm/test-intent-readability
About the project

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.

prisma/orm · 47,608 stars · on GitHub · prisma.io

Install

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.

Clone the repo
git clone --depth 1 https://github.com/prisma/orm

Made for: Cursor.

Wrote 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.

agentmods badge for test-intent-readability

README.md
[![agentmods](https://agentmods.dev/badge/rules/prisma/orm/test-intent-readability.svg)](https://agentmods.dev/rules/prisma/orm/test-intent-readability)
Your own site
<a href="https://agentmods.dev/rules/prisma/orm/test-intent-readability"><img src="https://agentmods.dev/badge/rules/prisma/orm/test-intent-readability.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 425 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00425
Opus 5 $0.00000 $0.00212
Sonnet 5 $0.00000 $0.00085
Haiku 4.5 $0.00000 $0.00042

Measured 3d ago against content hash 53b823567fec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

test-intent-readability 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/rules/test-intent-readability.mdc · 53 lines

What it actually says

Test intent readability (context-driven structure)

Tests must communicate intent without requiring the reader to inspect implementation details.

Do

  • Group assertions by the conditions under which they’re true.
    • Use nested describe() blocks to model state and transitions (“given…”, “when…”, “after…”).
  • Make each it() read as a statement about behavior under that context.
  • Prefer lifecycle tests that read like a story:
    • given an object in state A
    • when an action happens
    • then behavior X is observed
  • If a suite is validating a lifecycle, encode the lifecycle in the test structure (describes), not by scattered it() blocks.

Don’t

  • Don’t write “disjointed” tests where the reader must reverse‑engineer a lifecycle from unrelated expectations.
  • Don’t mix multiple preconditions in a single describe() without naming them.
  • Don’t rely on comments to explain context; make the context explicit via structure and naming.

Example: lifecycle tests

✅ Prefer:

describe('postgres driver', () => {
  describe('given an unbound driver', () => {
    it('throws when query is called', async () => { /* ... */ });

    describe('when connected with url binding', () => {
      it('executes queries', async () => { /* ... */ });
    });
  });
});

❌ Avoid:

describe('postgres driver', () => {
  it('throws clear error when query called before connect', async () => { /* ... */ });
  it('connects from url binding and executes', async () => { /* ... */ });
  it('close works after connect with pool binding', async () => { /* ... */ });
});
Changes

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.

  1. 3d ago First seen · 53 lines · 0 tokens per session scan A 53b823567fec

Subscribe to this mod's changes

test-intent-readability is a cursor rule published in the GitHub repository prisma/orm (47,608 stars, last pushed 4d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 425 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-09-03.