This handles the mechanics of database schema evolution with version tracking, rollback capabilities, and migration logging built in. You get reference guides for common operations like adding columns safely, creating indexes without blocking production traffic, and managing data transformations. The approach centers on maintaining a migrations tracking table with checksums and execution metadata, which is pretty much the standard pattern but implemented thoroughly. Most useful when you need to coordinate schema changes across multiple environments or need a clear audit trail of what changed and when. The rollback planning is the standout piece here, since that's what most teams skip until they desperately need it.
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill database-migration-management