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-sql-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.05914 |
| Opus 5 | $0.00000 | $0.02957 |
| Sonnet 5 | $0.00000 | $0.01183 |
| Haiku 4.5 | $0.00000 | $0.00591 |
Grade A, and why
cockroachdb-sql-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 — 698 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CockroachDB SQL Best Practices & Anti-Patterns
24 production-verified best practices for CockroachDB. Each section marks anti-patterns with ❌ NEVER and correct patterns with ✅ ALWAYS. Docs: https://www.cockroachlabs.com/docs/stable/
1. Primary Keys — Avoid Sequential Hotspots
CockroachDB distributes data across ranges sorted by primary key. Sequential keys concentrate ALL inserts into a single range on a single node, creating a write hotspot.
❌ NEVER: Use SERIAL, BIGSERIAL, or auto-increment as a single-column primary key
-- BAD: All inserts land on ONE node. CPU skew: one node at 80-90%, others at 10-20%.
CREATE TABLE orders (
id SERIAL PRIMARY KEY, -- HOTSPOT! unique_rowid() is monotonically increasing
customer_id UUID,
amount DECIMAL
);
✅ ALWAYS: Use UUID with gen_random_uuid() for most tables
-- GOOD: Writes distribute evenly across all nodes
CREATE TABLE orders (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
customer_id UUID NOT NULL,
amount DECIMAL(15,2) NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
✅ Use hash-sharded indexes when time ordering is required
-- GOOD: Distributes sequential timestamps across 8 buckets
CREATE TABLE audit_events (
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
event_id UUID NOT NULL DEFAULT gen_random_uuid(),
event_type STRING NOT NULL,
payload JSONB,
PRIMARY KEY (created_at, event_id) USING HASH WITH (bucket_count = 8)
);
✅ Use composite primary keys for multi-tenant or regional data
-- GOOD: Data co-located by tenant for fast reads, distributed across tenants
CREATE TABLE tenant_data (
tenant_id UUID NOT NULL,
record_id UUID NOT NULL DEFAULT gen_random_uuid(),
data JSONB,
PRIMARY KEY (tenant_id, record_id)
);
Why one DB node has elevated CPU: SERIAL PKs route ALL inserts to the last range, which lives on one leaseholder node. That node shows 80-90% CPU while others idle at 10-20%. You're paying for 5 nodes but getting 1 node's throughput. Diagnosis: check the Hot Ranges page and Hardware dashboard in DB Console.
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 · 698 lines · 0 tokens per session scan A 2b7232d636b1
cockroachdb-sql-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 5,914 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.