borghei/migration-architect
> Plans zero-downtime migrations with compatibility validation, rollback strategies, and phased execution plans. Use when migrating databases, APIs, infrastructure, or services between platforms or versions.
npx skills add https://github.com/borghei/Claude-Skills --skill migration-architect
Generates phased migration plans with risk assessment, compatibility analysis, and rollback runbooks for database, service, infrastructure, and API migrations. Validates schema compatibility, detects breaking changes, and produces rollback procedures with trigger conditions and communication templates.
Before planning the migration, confirm these inputs. If any is unknown or vague, ASK — do not assume:
--type and which pattern catalog applies)migration_planner.py vs compatibility_checker.py vs rollback_generator.py)Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
| Tool | Purpose | Command |
|------|---------|---------|
| migration_planner.py | Generate a phased migration plan with risk assessment | python scripts/migration_planner.py --input spec.json --output plan.json --format both |
| compatibility_checker.py | Diff schemas/APIs and flag breaking changes | python scripts/compatibility_checker.py --before v1.json --after v2.json --type database |
| rollback_generator.py | Generate a rollback runbook from a plan | python scripts/rollback_generator.py --input plan.json --output runbook.json --format both |
Load the reference that matches the task — keep this file lean and pull detail on demand:
This skill covers:
This skill does NOT cover:
engineering/api-design-reviewer for API contract changes and engineering/database-designer for schema design.engineering/observability-designer for observability setup.engineering/ci-cd-pipeline-builder for deployment pipeline configuration.| Skill | Integration | Data Flow |
|-------|-------------|-----------|
| engineering/database-designer | Design target schema before migration planning | Target schema JSON feeds into compatibility_checker.py --after |
| engineering/api-design-reviewer | Validate API contract changes for service migrations | OpenAPI spec diffs feed into compatibility_checker.py --type api |
| engineering/observability-designer | Set up monitoring dashboards referenced in migration runbooks | Migration plan success metrics inform alerting rule definitions |
| engineering/ci-cd-pipeline-builder | Embed migration validation in CI/CD stages | compatibility_checker.py runs as a pipeline stage; migration_planner.py --validate gates deployments |
| engineering/runbook-generator | Extend rollback runbooks with operational procedures | rollback_generator.py output serves as input for detailed operational runbooks |
| engineering/release-manager | Coordinate migration cutover with release schedules | Migration plan phases and timelines align with release windows and feature-flag rollout stages |
Take borghei/migration-architect from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.