AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Database Migration Verification

skill-nahid-sparktales-agent-dispatcher-database-migration-verification · by nahid-sparktales

Prove a migration did what it claimed — before/after row counts, column checksums, constraint and index state, invariant queries, an exercised application read path, and a rehearsed rollback. Use after a migration has been applied to any environment and before anyone reports it as working, or when reviewing someone else's claim that a migration succeeded. Not for planning or sequencing the migrat…

— No reviews yet
0 installs
1 views
0.0% view→install

Install

$ agentstack add skill-nahid-sparktales-agent-dispatcher-database-migration-verification

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-nahid-sparktales-agent-dispatcher-database-migration-verification)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Database Migration Verification? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Database migration verification

"The migration ran" is a fact about a process exiting. It is not a fact about the data. A migration can apply cleanly and still drop rows, leave a column half-backfilled, declare a constraint it never validated, or build an index nothing uses.

When this fires

A migration has been applied somewhere — local, branch, staging, production — and someone is about to call it done, or you are checking that claim. It fires again after any re-run or fix. It does not fire for a migration that has only been written.

Procedure

  1. Write down the claim as checkable statements before running anything. "Every order has a

currency." "No order row was lost." "total equals the sum of its line items." A claim that cannot be expressed as a query cannot be verified here — mark it unverifiable rather than quietly dropping it.

  1. Get the before-state, or declare it missing. Row counts, aggregate checksums and constraint

state captured before the migration ran. If nobody captured them, you can still check the after-state against the schema and the invariants — but you cannot prove nothing was lost. Say that in those words; do not let the rest of the evidence imply it.

  1. Confirm what actually ran. Read the migration history in the database and compare it to the

files in the repository: which versions are recorded, in what order, at what time. A successful command exit is not the record. A migration file present in the repo but absent from the history is a finding.

  1. Count rows per affected table and compare to the before-state with the delta you predicted

in advance. A mismatch is a defect. A match is necessary, not sufficient — equal counts are consistent with every value being wrong.

  1. Checksum the columns that moved. For each copied or transformed column, compare an

order-independent aggregate against the source column or the before-state: sum, min/max, count of distinct values, count of nulls, and a hash aggregate over key plus value. Aggregate over the whole table, not a sample, unless the table is too large to scan — and if you sample, say you sampled and how.

  1. Check constraint and index state, not constraint and index existence. Every constraint

added must be validated rather than left unvalidated — read the catalog, do not infer it from the DDL. Every index must be valid (a failed concurrent build leaves one that is not) and must actually be chosen by the query it was added for; read the execution plan. An index the planner ignores is built, not verified.

  1. Run the invariant queries for orphaned foreign keys, nulls in columns intended to be

non-null, duplicates in columns intended to be unique, values outside their intended range, and any domain rule from step 1. Write them to return offending rows, not a boolean — zero rows returned is the evidence, and a non-zero result hands you the defect directly.

  1. Exercise the application's read path. A correct schema does not mean the code reads it.

Run the real code path against the migrated database — the test that covers it, or the request that hits it — and check the values it returns, not just that it did not throw.

  1. Rehearse the rollback on a copy. Take a copy or branch at the migrated state, run the down

path, and re-run the counts and invariant queries against the result. An unexecuted rollback is a plan. Where the rollback is a restore from backup, the rehearsal is an actual restore into a disposable target — time it and record the recovery point it lands on. Never rehearse a rollback against the environment people are using; if the only copy available is production, stop and ask.

  1. Report with the words kept apart — written, applied, executed, tested, rolled back in

rehearsal, verified. Each one names something different, and this procedure exists because they get conflated.

What this refuses to conclude

  • Without a before-state: that no data was lost. Counts after the fact cannot establish it.
  • Without checksums: that a transformed column is correct. A column full of the right shape

of wrong value passes every count.

  • Without a validated constraint read from the catalog: that the constraint is enforced.
  • Without an executed rollback: that the migration is reversible.
  • Without exercising the read path: that the application works against the new schema.
  • Without running against the environment in question: anything about that environment. A pass

on staging is evidence about staging.

Checklist

  • [ ] Claims written as queries before running anything
  • [ ] Before-state present, or its absence stated as a limit on the conclusion
  • [ ] Migration history read and reconciled against the repository
  • [ ] Row counts compared per table against a predicted delta
  • [ ] Column checksums compared for every transformed or copied column
  • [ ] Constraints confirmed validated from the catalog; indexes confirmed valid and chosen
  • [ ] Invariant queries run, returning rows rather than booleans
  • [ ] Application read path exercised against the migrated database
  • [ ] Rollback executed on a copy, with counts re-checked and timing recorded
  • [ ] Environment named; unverified claims listed explicitly

Failure handling

  • A count or checksum disagrees — that is the result. Report the discrepancy and the query that

found it. Do not re-run the backfill over the top to make the numbers match; that hides which rows were wrong.

  • Invariant query returns rows — capture the offending keys before anything else changes them.

Those rows are the reproduction case.

  • The rollback fails in rehearsal — the migration is not reversible. Report it as such

immediately; that fact usually changes the deployment decision.

  • No non-production copy exists to rehearse against — say the rollback is unrehearsed. Do not

rehearse on the live system to fill the gap.

  • Read-only access only — the read-side checks still stand. Report them as done and the rollback

rehearsal as not performed, rather than downgrading the whole verification to an opinion.

Evidence to report

The environment. The queries you ran, verbatim, with their results — before and after side by side. The migration versions recorded in the history. Constraint and index state as read from the catalog. Which read path was exercised and what it returned. The rollback rehearsal: that it ran, how long, and what the post-rollback counts were. Then the explicit list of what was not checked. A summary that says "verified" without these is a claim, not verification.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.