migration-architect
Installation
SKILL.md
Migration Architect
The agent generates phased migration plans with risk assessment, compatibility analysis, and rollback runbooks for database, service, infrastructure, and API migrations. It validates schema compatibility, detects breaking changes, and produces rollback procedures with trigger conditions and communication templates.
Quick Start
# Generate a phased migration plan
python scripts/migration_planner.py --input migration_spec.json --output plan.json --format both
# Check schema compatibility between versions
python scripts/compatibility_checker.py --before v1_schema.json --after v2_schema.json --type database
# Generate rollback runbook from a migration plan
python scripts/rollback_generator.py --input plan.json --output runbook.json --format both
Core Workflows
Related skills