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/boparaiamrit/skills-by-amrit/databasegit clone --depth 1 https://github.com/boparaiamrit/skills-by-amritWrote 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/boparaiamrit/skills-by-amrit/database)<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>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.00000 | $0.00362 |
| Opus 5 | $0.00000 | $0.00181 |
| Sonnet 5 | $0.00000 | $0.00072 |
| Haiku 4.5 | $0.00000 | $0.00036 |
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.
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
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.
- 5d ago First seen · 42 lines · 0 tokens per session scan A ed6725e0cd3c
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.
Other cursor rules, from other repositories
prefer-assertions-over-defensive-checks
Prefer assertions over defensive checks when data is guaranteed to be valid.
as-contract-cast-smell
// ❌ WRONG — bypasses the family ContractSerializer seam const contract = JSON.parse(raw) as Contract; const contract = JSON.parse(raw) as Contract .
no-backward-compatibility
Do not add backward-compatibility shims or migration scaffolding.
postgresql
This guide defines the definitive best practices for writing clean, performant, and maintainable PostgreSQL SQL, focusing on modern conventions and avoiding common pitfalls.
query-optimization
查詢優化、EXPLAIN、index 設計與 RLS 效能測量.
ehs-ims-conventions
EHS IMS app — RBAC, data layer, tRPC, migrations, AI boundaries.