database

database is a cursor rule for Cursor from boparaiamrit/skills-by-amrit. It costs 0 tokens per session (362 once invoked), scanned A, original, MIT.

A set of rules for designing databases, writing queries, creating migrations, and handling database performance safely.

In plain words
What is it for?
Use it when creating tables and indexes, writing database queries, changing schemas, or working with an object-relational mapper that maps code to database tables.
Why use it?
It gives developers consistent safeguards for data accuracy, secure queries, reliable schema changes, and efficient access.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

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.

agentmods
npx agentmods add rules/boparaiamrit/skills-by-amrit/database
Clone the repo
git clone --depth 1 https://github.com/boparaiamrit/skills-by-amrit

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 database

README.md
[![agentmods](https://agentmods.dev/badge/rules/boparaiamrit/skills-by-amrit/database.svg)](https://agentmods.dev/rules/boparaiamrit/skills-by-amrit/database)
Your own site
<a href="https://agentmods.dev/rules/boparaiamrit/skills-by-amrit/database"><img src="https://agentmods.dev/badge/rules/boparaiamrit/skills-by-amrit/database.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 362 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00362
Opus 5 $0.00000 $0.00181
Sonnet 5 $0.00000 $0.00072
Haiku 4.5 $0.00000 $0.00036

Measured 5d ago against content hash ed6725e0cd3c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

database 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 5d 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.

cursor-rules/database.mdc · 42 lines

What it actually says

Database Rules

Schema Design

  • Use proper normalization (at least 3NF for transactional data)
  • Add constraints: NOT NULL, UNIQUE, FOREIGN KEY, CHECK
  • Every table needs: id (primary key), created_at, updated_at
  • Use appropriate data types (don't store currency as float, use decimal)
  • Name tables in snake_case plural, columns in snake_case singular

Indexing

  • Index all foreign key columns
  • Index columns used in WHERE, ORDER BY, and JOIN clauses
  • Use composite indexes for multi-column queries (most selective column first)
  • Don't over-index — each index slows down writes

Queries

  • ALWAYS use parameterized queries — never string concatenation
  • Use pagination for list queries (LIMIT + OFFSET or cursor-based)
  • Avoid N+1 queries — use JOIN or eager loading
  • Use transactions for multi-step operations
  • Set reasonable timeouts on all queries

Migrations

  • Every schema change goes through a migration file
  • Migrations must be reversible (include down/rollback)
  • Test migrations on a copy before running on production
  • Never modify a migration that's already been deployed
  • Backfill data in a separate migration from schema changes

Performance

  • Use EXPLAIN ANALYZE on complex queries
  • Monitor slow query logs
  • Consider read replicas for heavy read workloads
  • Use connection pooling
  • Cache frequently-accessed, rarely-changing data
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. 5d ago First seen · 42 lines · 0 tokens per session scan A ed6725e0cd3c

Subscribe to this mod's changes

database is a cursor rule published in the GitHub repository boparaiamrit/skills-by-amrit (5 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 362 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.