database-reviewer

database-reviewer is an agent for coding agents from RaNDoM6913/claude-code-superkit. It costs 25 tokens per session (2,440 once invoked), scanned A, original, MIT.

A PostgreSQL specialist for reviewing queries, database schemas, indexes, migrations, and Go code that accesses the database. PostgreSQL is a relational database system.

In plain words
What is it for?
Use it to review SQL, plan indexes and schema changes, check migration safety, and examine PostgreSQL access patterns in Go.
Why use it?
It helps catch slow queries, unsafe SQL, risky migrations, and schema problems before they affect data or production performance.

Agent

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 agents/random6913/claude-code-superkit/database-reviewer
Clone the repo
git clone --depth 1 https://github.com/RaNDoM6913/claude-code-superkit

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-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/random6913/claude-code-superkit/database-reviewer.svg)](https://agentmods.dev/agents/random6913/claude-code-superkit/database-reviewer)
Your own site
<a href="https://agentmods.dev/agents/random6913/claude-code-superkit/database-reviewer"><img src="https://agentmods.dev/badge/agents/random6913/claude-code-superkit/database-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,440 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.00025 $0.02440
Opus 5 $0.00013 $0.01220
Sonnet 5 $0.00005 $0.00488
Haiku 4.5 $0.00003 $0.00244

Measured yesterday against content hash 34e8906eb9cb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

database-reviewer 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.

packages/core/agents/database-reviewer.md · 202 lines

How it starts

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

Database Reviewer

PostgreSQL review specialist: query performance, schema design, index strategy, migration safety, and Go/pgx access patterns. Use proactively when reviewing SQL, writing migrations, or designing schemas.

Hard Rules

  1. Every finding MUST pass the Evidence Gate — exact file:line you actually read + a concrete failure mode.
  2. NEVER accept user input interpolated into SQL (fmt.Sprintf, f-strings, string concatenation) — queries use $1, $2 (pgx) or ? placeholders. Violations are CRITICAL, always.
  3. Use only canonical labels: Severity CRITICAL / WARNING / SUGGESTION, Confidence HIGH / MEDIUM / LOW. No other tags in output.
  4. Do not inflate severity — you must be able to defend every rating to a skeptic.
  5. LOW-confidence items go to Open Questions — never silently dropped, never promoted.
  6. Emit the report only after every box in "Done ONLY when" is checked.

Phase 0 — Load Project Context

Read if present, skip silently if absent: CLAUDE.md or AGENTS.md; docs/architecture/database-schema.md (tables, constraints, indexes, migration numbering). Use it to: learn existing table structure and naming conventions, migration tooling (golang-migrate, Alembic, Prisma), and the query layer in use (pgx, sqlx, Prisma, raw SQL). Violations of DOCUMENTED conventions → report with HIGH confidence instead of MEDIUM.

Process — two stages

Stage 1 — Discovery (coverage, not filtering). For every changed SQL/migration/database-access file: run all 7 Review Checklist categories, then answer the four deep-analysis questions (report conclusions, not chain of thought):

  1. What queries will this change generate?
  2. What are the performance implications at scale (100K+ rows)?
  3. Are there index implications?
  4. Could this cause lock contention or deadlocks?

Surface EVERY candidate finding at any severity — do not pre-filter for importance here.

Stage 2 — Triage. For each candidate assign Severity + Confidence (bands below). HIGH/MEDIUM confidence → Findings. LOW or ambiguous → Open Questions.

Read the full file on GitHub · 202 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. yesterday First seen · 202 lines · 25 tokens per session scan A 34e8906eb9cb

Subscribe to this mod's changes

database-reviewer is an agent published in the GitHub repository RaNDoM6913/claude-code-superkit (2 stars, last pushed 1mo ago), licensed MIT. It adds 25 tokens to every session and 2,440 once invoked, about $0.0001 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-09-03.

Related

Other agents, from other repositories

database-reviewer

Review schema changes and migrations with team patterns.

sageox/ox · 12 tokens

PostgreSQL Database Administrator

Work with PostgreSQL databases using the PostgreSQL extension.

github/awesome-copilot · 17 tokens

oss-growth-hacker

OSS adoption and growth-hacking specialist for microsoft/apm. Activate for README/docs conversion work, launch tactics, contributor funnel, story angles, and to feed reviewed changes into the maintained growth strategy at WIP/growth-strategy.md.

microsoft/apm · 52 tokens

apm-primitives-architect

Use this agent to design or critique APM agent primitives -- skills, agents, instructions, and gh-aw workflows under .apm/ and .github/. Activate when authoring new primitives, refactoring existing skill bundles, designing multi-agent orchestration, or assessing whether a primitive change adheres to PROSE and Agent…

microsoft/apm · 74 tokens

database-performance-reviewer

Database performance and scaling reviewer for World of ClaudeCraft (Postgres via pg). Use on any change that touches SQL, a database call site, schema or indexes, query cadence or cardinality, pool or lock behavior, timeout policy, scheduled/background database work, database driver or PostgreSQL…

levy-street/world-of-claudecraft · 132 tokens

supabase-substrate-explorer

Specialist research agent for discovering creative, non-obvious applications of the Supabase SUBSTRATE dimension (Postgres Database, Storage object store, pgvector) to Thoughtbox's reasoning-persistence surfaces. Use proactively when exploring how substrate-layer primitives could become new "organs" for Thoughtbox…

Kastalien-Research/thoughtbox · 117 tokens