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/cockroachdb/cursor-plugin/cockroachdb-app-patternsgit clone --depth 1 https://github.com/cockroachdb/cursor-pluginWhat 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.06340 |
| Opus 5 | $0.00000 | $0.03170 |
| Sonnet 5 | $0.00000 | $0.01268 |
| Haiku 4.5 | $0.00000 | $0.00634 |
Grade A, and why
cockroachdb-app-patterns 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 — 714 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CockroachDB Application Patterns
These rules encode production-tested patterns from cockroachdb-best-practices-demo and cockroachdb-jdbc-wrapper. Follow them strictly when generating code that interacts with CockroachDB.
1. Transaction Retry Logic (MANDATORY)
CockroachDB defaults to SERIALIZABLE isolation — the strongest level. This means any two concurrent transactions touching the same rows may produce a SQLSTATE 40001 (serialization failure). Applications MUST implement retry logic.
Retryable Error Codes
| SQLSTATE | Meaning | Action |
|---|---|---|
40001 |
Serialization failure (transaction conflict) | ALWAYS retry the entire transaction |
08001 |
Unable to establish connection | Retry with backoff |
08003 |
Connection does not exist | Retry with new connection |
08004 |
Connection rejected by server | Retry with backoff |
08006 |
Connection failure during transaction | Retry with new connection |
08007 |
Transaction resolution unknown | Retry with new connection |
08S01 |
Communication link failure | Retry with new connection |
57P01 |
Admin shutdown (node drain/restart) | Retry with backoff |
Retry Strategy
- Use exponential backoff with jitter (not fixed delays)
- Recommended: base 200ms, multiplier 2×, jitter factor 0.5
- Max attempts: 3–5 for interactive, 5–10 for background/batch
- Retry the ENTIRE transaction — not just the failed statement
⛔ ANTI-PATTERN: Savepoint-Based Retry
// ❌ WRONG — This does NOT work with CockroachDB
conn.setAutoCommit(false);
Savepoint sp = conn.setSavepoint("cockroach_restart");
try {
// ... SQL operations ...
conn.commit();
} catch (SQLException e) {
if ("40001".equals(e.getSQLState())) {
conn.rollback(sp); // ❌ CockroachDB aborts the ENTIRE txn on 40001
// retrying here is USELESS — the transaction is dead
}
}
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 · 714 lines · 0 tokens per session scan A 2358f773451f
cockroachdb-app-patterns is a cursor rule published in the GitHub repository cockroachdb/cursor-plugin (1 stars, last pushed 1mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 6,340 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-31.
Other cursor rules, from other repositories
beanstalk-deploy
Robust deployment patterns for Elastic Beanstalk with GitHub Actions, Pulumi, and edge case handling.
archcore-files
Enforce MCP-only operations when working with .archcore/ files.
dev_workflow
Guide for using Taskmaster to manage task-driven development workflows.
execution
Repository execution and verification commands.
cosmosmith
Cosmosmith project rules adapter.
no-crux-frontmatter
This is a regular rule file that does not have crux: true in its frontmatter. It should be ignored by the CRUX compression hook.