code-review-db

A checklist for reviewing code that reads or changes stored data, such as database tables and other persistence systems. It checks query correctness, indexes, transactions, migrations, and connection handling.

In plain words
What is it for?
Use it for database-focused code reviews, including checking N+1 queries, missing limits or indexes, transaction scope, migration safety, and connection pooling.
Why use it?
It helps catch slow queries, excessive database calls, unsafe updates or deletes, risky schema changes, and connection-pool problems before they reach production.

Skill for Claude CodeCodex

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 skills/andr-ca/agentharness/code-review-db
Any agent
npx skills add andr-ca/agentharness --skill code-review-db
Clone the repo
git clone --depth 1 https://github.com/andr-ca/agentharness

Made for: Claude Code, Codex.

Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 989 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 $0.00050 $0.00989
Opus 5 $0.00025 $0.00495
Sonnet 5 $0.00010 $0.00198
Haiku 4.5 $0.00005 $0.00099

Measured 2d ago against content hash 9e0dd264bcc9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-review-db 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 2d 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.

.claude/skills/code-review-db/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Code Review — Database & Persistence Layer

Focus on performance, correctness, and safety at the data layer.


Query Correctness

  • N+1 queries — a loop that loads related records per item. Look for for item in items: item.related. Fix with eager loading (select_related, include, JOIN) or a batch fetch outside the loop.
  • Unbounded queriesfind_all(), SELECT * with no LIMIT, WHERE 1=1. Every read from a growing table needs pagination or a LIMIT.
  • Missing WHERE clause — an UPDATE or DELETE with no filter deletes/updates every row.
  • Implicit full-table scan — a WHERE on a column with no index. Check EXPLAIN output or migration history.
  • Fetching more columns than neededSELECT * when only 2 columns are used. Unnecessary data transfer and harder to cache.

Index Strategy

  • Missing index on foreign keyFK columns not in an index cause full scans on JOIN and cascade operations.
  • Missing index on WHERE/ORDER BY columns — any column used in a filter, sort, or join should have an index unless the table is tiny (<1k rows).
  • Index on every column — over-indexing slows writes. Indexes serve reads; add them only for proven query patterns.
  • Composite index column order — a composite index on (A, B, C) helps queries filtering A, or A+B, but NOT B alone. Confirm the index covers the actual query.
  • Index on high-cardinality boolean — a boolean column index is almost never useful (50/50 selectivity).

Transactions & Consistency

  • Two writes without a transaction — if the second write fails, the first is orphaned. Wrap in a transaction.
  • Transaction too wide — a transaction that spans an HTTP call, a file system operation, or a sleep holds locks and causes contention. Keep transactions as short as possible.
  • Read-your-own-writes — reading back a record inside a write transaction without using the same transaction/session. Causes stale reads in read-replica setups.
  • Lost update — two concurrent reads followed by two concurrent writes without optimistic or pessimistic locking.
  • Missing rollback on error — exception handling that logs and continues without rolling back a partially-committed transaction.

Read the full file on GitHub · 69 lines

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. 2d ago First seen · 69 lines · 50 tokens per session scan A 9e0dd264bcc9

Subscribe to this mod's changes

code-review-db is a skill published in the GitHub repository andr-ca/agentharness (1 stars, last pushed 2d ago), licensed MIT. It adds 50 tokens to every session and 989 once invoked, about $0.0003 per session on Opus 5. 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.

Related

Other skills, from other repositories

dsql

Build with Aurora DSQL — manage schemas, execute queries, handle migrations, diagnose query plans, diagnose cluster performance, load data, and develop applications with a serverless, distributed SQL database. Covers IAM auth, multi-tenant patterns, MySQL-to-DSQL and PostgreSQL-to-DSQL schema conversion, FK…

awslabs/agent-plugins · 227 tokens

migration-risk-analyzer

Analyzes database migration scripts for lock contention, downtime, rollback strategy, and deployment risk. Triggers on: "analyze this migration", "migration risk", "is this migration safe", "schema change risk", "DDL risk", "rollback strategy", "migration review".

Mathews-Tom/armory · 60 tokens

mcp-sheet-cache-bridge

Keep Zapier Tables or another MCP-connected record store as the source of truth while Google Sheets-based tools read an event-driven cache tab.

zapier/gtm-cheat-codes · 34 tokens

manage-sqlite-migrations

Create and validate Rudder's Drizzle-backed local SQLite migrations. Use when changing src/db/schema.ts, generating or reviewing files under drizzle/, adding or altering database tables, columns, constraints, or indexes, writing data backfills, or troubleshooting migration failures in rudder.db.

RudderCode/Rudder · 62 tokens

sql-optimization

SQL query optimization patterns including EXPLAIN plan analysis, index strategies, query rewriting, and N+1 query prevention. Use when optimizing slow database queries, analyzing query performance, designing indexes, or debugging database bottlenecks. Works with PostgreSQL, MySQL, SQLite, and other SQL databases.…

stefan-jansen/claude-code-toolkit · 78 tokens

developing-with-bigquery

A repository of BigQuery-specific logic, knowledge, and specialized standards. Use this skill whenever you are doing anything with BigQuery, including: 1. BigQuery query optimization 2. BigFrames Python code 3. BigQuery ML/AI functions.

saski/arnesto · 63 tokens