db-migrate
Installation
SKILL.md
DB Migrate
Create, check the status of, and validate database migrations across any framework. Auto-detects the migration tool from project marker files and drives its native CLI: this skill never invents a migration command.
Ground rules
- Detect before acting. Scan for marker files (Phase 1) before running anything.
- Never invent commands. Only run commands from the detection table in references/framework-commands.md or found in the project's own docs/scripts.
- Flag destructive operations and never auto-fix them.
DROP TABLE,DROP COLUMN,TRUNCATE,DELETE FROMget a warning and require the user's explicit go-ahead: this skill reports, it does not silently rewrite or apply a migration containing one. - Report only what a command actually produced. File paths, migration names, and status output in the final summary must come from
ls/cat/the framework CLI's own output, never guessed or reconstructed from memory.