migration-safety-check — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited migration-safety-check (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A migration in a multi-tenant system runs against every tenant at once. There is no "blast radius of one." Review the migration ($ARGUMENTS if given, otherwise the migration files in the current diff) against the checklist below and report each risk with the specific line and a safer alternative.
down-migration? Prefer a deprecate-then-drop across two releases.
DELETE/UPDATE data migrations without a WHERE, or with a WHERE that doesn'tbound the rows — this rewrites every tenant's data.
NOT NULL adds on a populated column — will they fail or lock on realdata volumes?
CONCURRENTLY (Postgres) locks writes on a large table.ALTER TABLE that rewrites the table holds a lock proportional to row count.the start? A table that ships without tenant scoping is a future leak.
(tenant_id, ...) rather thanglobal where they should be per-tenant?
VERDICT: SAFE TO APPLY | NEEDS CHANGES | DO NOT APPLY
BLOCKERS:
- <line> — <risk> — <safer approach>
WARNINGS:
- <line> — <risk> — <mitigation>State the expected lock/rewrite behavior at production row counts, not just "looks fine."
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.