From all-skills
Generate grounded-and-verified, engine-agnostic database documentation that reaches 100% parity with the real schema. Introspects the LIVE database as ground truth and cross-validates it against ORM models, migrations, generated types, seeds, and application queries, then proves completeness by diffing the docs back against the database. Produces ER diagrams (mermaid), per-table data dictionaries, and a machine-readable schema.json. Works with PostgreSQL, MySQL, SQL Server, and SQLite across any ORM (Prisma, TypeORM, Drizzle, Sequelize, Knex, Django, Rails) or raw SQL. Use when asked to document a database, produce an ERD or data dictionary, write db/schema docs, audit schema drift, or refresh existing DB docs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/all-skills:database-documentationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Document a database so completely and accurately that the docs are **provably** the schema, not a
Document a database so completely and accurately that the docs are provably the schema, not a plausible guess at it. A half-correct schema doc is worse than none: people trust it and write broken code.
Every statement in the output must be:
A frontier model left to itself reads the ORM, writes confident prose, and ships an incomplete and
partly hallucinated schema (missed check-constraint enums, wrong ON DELETE, omitted legacy tables,
invented columns). This skill exists to defeat exactly that. Two mechanisms do it: (1) the live DB is the
oracle, and (2) judgment is never one agent's call — independent adversaries hunt for what one pass misses.
Targets PostgreSQL, MySQL, SQL Server, SQLite. If you detect a document store (MongoDB) or graph database, say so and stop on that store — do not emit relational docs for it (silent mis-documentation is the worst outcome). Note it as out of scope rather than guessing.
Run these phases in order. Each names its exit artifact. Keep all scratch (intermediate extractions, the
working CSM) in a single .database-documentation/ scratch dir or your platform scratchpad — the only durable
deliverables are the docs and schema.json.
schema.prisma, *.entity.ts +
datasource, drizzle.config.*, knexfile.* + migrations/, Django models.py, Rails schema.rb,
raw SQL DDL. Find the engine + version from the datasource/provider, docker-compose.yml image tags,
and connection URLs in .env*.docker compose exec / docker exec into the DB container (read
creds from compose env) → a local DB CLI (psql/mysql/sqlcmd/sqlite3) against host:port from
.env. Prove it with one trivial query (SELECT 1, list tables) before continuing. If the DB is
down but a compose file defines it, offer to start it. Never print credentials: treat passwords/DSNs
read from .env/compose as secrets — keep them only in the command you execute, and redact them
(password=***) in anything you show or write to the docs.*.d.ts, seeds/fixtures,
and grep the app for raw SQL / query-builder calls. Note existing docs/db/ — if present this is a
refresh: load it to diff for drift and to match house style.Exit: a short discovery note — engine, ORM, reachability tier, the exact verified live-DB command, surface paths.
Extract each available surface independently into the Canonical Schema Model shape
(see references/csm-contract.md). On platforms with subagents, run one extractor per surface in parallel,
and do not let them see each other's output — independent agreement is real evidence; shared context is
groupthink.
Object-class checklist — extract EVERY class; skipping one is the most common failure. Copy this list
and confirm each is present in schema.json with a live count:
Sequences, triggers, and routines are routinely forgotten because they are not columns — extract them explicitly.
Capture view / trigger / routine bodies in full and verbatim — never abbreviate, summarize, or elide
with ...; a truncated definition is an incomplete (wrong) doc.
schema.json.enums = DB-NATIVE enum types only. A string column with a CHECK (col IN (...)) goes under
that table's check_constraints (not enums); an app-level-only value set goes in the column description
marked "app-enforced". Putting a non-native enum in enums is a hallucination against the live schema.
references/introspection-postgres.md
for the exact Postgres queries (and the MySQL/MSSQL/SQLite equivalents); they cover tables, columns
(type with length/precision, nullability, default, identity, generated, collation, comment), primary
keys, foreign keys with ON DELETE/ON UPDATE, unique + check constraints, indexes (partial
predicates and expression columns included), enums, domains, sequences, views/matviews, triggers,
routines. Do NOT shell out to any benchmark/oracle script — write and run the introspection yourself.references/).Exit: one partial CSM per surface.
Merge into a master CSM, keying tables by physical DB name. Precedence:
issues/), never a silent edit to the docs. The docs describe the live database.Tag each object's confidence: verified (live-confirmed) / consensus / single-source / conflict.
Where you have a live DB, cross-check it against itself via two methods (e.g. information_schema vs
pg_catalog) — the oracle must agree with itself before overruling other surfaces.
Exit: master CSM + a discrepancies list.
Write all output into one dedicated docs directory — never scatter files across the repo. Default to
docs/db/; if Phase 0 found an existing DB-docs directory (e.g. docs/db/, docs/database/,
docs/schema/, or wherever the repo already keeps them), write there instead to match house style. Create
the directory if absent. Render the CSM (a pure function of it) into it, matching the template in
references/output-template.md, sized to the schema:
docs/db/DATABASE.md (stats header, one mermaid ERD, per-table sections, an Issues section).docs/db/: README.md (index + stats) + ONBOARDING.md + diagrams/<domain>.md per
domain (mermaid erDiagram with all columns+types + relationship lines, then per-table sections) +
diagrams/full-erd.md (table-level only, so it stays renderable) + tables/entity-reference.md + issues/README.md.Emit schema.json into that same directory (docs/db/schema.json).
Per-table section: 1–2 sentence evidence-based description, a Column | Type | Nullable | Default | Description table, then Indexes: and Foreign Keys: (with ON DELETE). Partition domains by ORM
module/folder → name prefix → FK clustering, with a Legacy/Misc catch-all. The schema.json follows the
shape in references/csm-contract.md.
This is not optional and not a vibe. A claimed "looks complete" is worthless. Weak models in particular will assert parity they did not achieve; do not trust the assertion, run the numbers.
schema.json. The count query MUST select the exact same population your extraction and the CSM
define — otherwise a correct doc fails the gate and you will "fix" it by hallucinating. Two rules that
bite on every real database: indexes exclude PK/unique-constraint-backing ones, and routines/objects
exclude extension-owned ones (pg_depend.deptype='e'). Use the population-matched count queries in
references/introspection-postgres.md ("Count-gate queries") — NOT a naive count(*), and never a lossy
view (e.g. information_schema.check_constraints is polluted with NOT NULL rows; reltuples may be -1).
Print a class | live | documented | match? table. A mismatch means investigate — it may be a real
omission, or your count query selecting the wrong population. Counts matching is necessary, not
sufficient (equal counts hide swapped types / wrong ON DELETE).README.md or issues/): the per-class count table + an explicit
"0 undocumented, 0 invented". Only write "verified" when the identity-diff (step 2) is empty — not on
a count match alone. With no live DB, run the diff against the consensus CSM and label every output file
"consensus parity (UNVERIFIED against live DB)".Because the agent doing the judging is itself a frontier model with the same blind spots as the agent that wrote the docs, a single review rubber-stamps. Convene ≥3 context-walled adversaries, each in a distinct session with a must-find-fault mandate and a different lens:
ON DELETE/description trace to a
real source? Flag anything invented.Their union feeds another generation pass. Wherever judgment is needed, it is a panel decision.
| Tier | Have | Confidence |
|---|---|---|
| T1 | live DB + parallel subagents + adversaries | verified, provable |
| T2 | live DB, single agent | verified, sequential |
| T3 | no live DB, subagents | consensus, unverified |
| T4 | no live DB, single agent | consensus, unverified |
| T5 | one static surface only | low — prominent "UNVERIFIED — no live DB" banner |
Subagents, MCP, and docker are optimizations, never requirements — the same phases run inline without them. Never fabricate data you could not read: missing is flagged, not guessed.
references/csm-contract.md — the schema.json shape (the verifiable output contract).references/introspection-postgres.md — exact catalog queries per engine.references/output-template.md — the human doc shape to reproduce.references/hard-cases.md — enums (native/CHECK/app), JSON columns, polymorphic relations, soft-deletes,
composite keys, partial/expression indexes, views, multi-schema, citext/collation, legacy tables.npx claudepluginhub a-tokyo/agent-skills --plugin production-gradeGenerates Markdown documentation for PostgreSQL and MySQL databases by introspecting schemas for tables, columns, relationships, indexes, constraints, views, and procedures.
Documents database schemas with ERD diagrams, table definitions, indexes, constraints, and data dictionaries. Use when documenting schema or creating ERD diagrams.
Generates ERDs, Mermaid/PlantUML diagrams, schema docs, and insights from SQL dumps, ORM models (Prisma, SQLAlchemy, TypeORM), migrations, or live DBs.