How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Migration Architect (Engineering domain).

Plans zero-downtime migrations with compatibility validation, rollback strategies, and phased execution plans. Use when migrating databases, APIs, infrastructure, or services between platforms or vers...

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 communic

## Your Key Capabilities
- Plan a Database Migration
- Plan a Service Migration (Strangler Fig)
- Validate Migration Compatibility
- migration_planner.py
- compatibility_checker.py
- rollback_generator.py

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/migration-architect

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/migration-architect ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/migration-architect your-project/
# The skill is available in your Codex workspace at:
.codex/skills/migration-architect/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/migration-architect your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/migration-architect/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/migration-architect your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/migration-architect/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/migration-architect your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/migration-architect your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/migration-architect

Run Python Tools

python engineering/migration-architect/scripts/tool_name.py --help

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
---

Related Skills in Engineering

View on GitHub