cloud-migration-strategy

Plans cloud migrations using the 6 R's framework, strangler-fig pattern, and staged cutover strategies.

Updated Dec 29, 2025
One-click install
npx skills add https://github.com/snoodleboot-io/discrecontinual_equations --skill cloud-migration-strategy-snoodleboot-io
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: cloud-migration-strategy
Source: https://github.com/snoodleboot-io/discrecontinual_equations/tree/main/.claude/skills/cloud-migration-strategy
Command: npx skills add https://github.com/snoodleboot-io/discrecontinual_equations --skill cloud-migration-strategy-snoodleboot-io

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Moving an application estate to the cloud fails when teams treat it as one big-bang event, re-architect during the move, or ignore data migration until the end. This Skill provides a structured decision framework for assigning each workload a migration strategy and de-risking the cutover. ## Core Features & Use Cases - 6 R's Disposition Framework: Assigns each workload one of Rehost, Replatform, Refactor, Repurchase, Retire, or Retain with a documented reason. - Migration Patterns: Covers lift-and-shift-first sequencing, strangler-fig incremental migration for large systems, and data migration via bulk load plus change data capture. - Cutover De-Risking: Provides parallel-run, canary traffic shifting, tested rollback, and validation checklists. - Use Case: A team facing a datacenter lease expiration uses this Skill to inventory 40 applications, retire 6 unused ones, rehost the rest to meet the deadline, and plan post-migration optimization. ## Quick Start Ask the AI to help plan a cloud migration for your application estate using the 6 R's framework and produce a per-workload disposition with a cutover plan.

Frequently Asked Questions about cloud-migration-strategy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I plan a cloud migration for a large application estate?▼

Inventory every workload with its dependencies, then assign each one of the 6 R's (Rehost, Replatform, Refactor, Repurchase, Retire, Retain) with a documented reason. Avoid applying a single strategy to everything, and retire unused applications before moving anything.

What is the strangler-fig pattern for cloud migration?▼

The strangler-fig pattern migrates large systems incrementally by placing a routing layer in front of the existing system, building capabilities one at a time in the new environment, and redirecting routes gradually. Each step is small, testable, and reversible, avoiding a big-bang cutover.

Should I re-architect applications during the migration?▼

No. Re-architecting during the move couples a platform change with a design change, making failures unattributable and rollbacks harder. Rehost or replatform first, stabilize in the cloud, then refactor only the workloads that justify the engineering cost.

How do I migrate large datasets to the cloud without downtime?▼

Use a bulk transfer of historical data followed by change data capture or ongoing replication to keep the target in sync until cutover. Validate with row counts, checksums, and reconciliation, and compare network transfer time against deadlines, considering physical transfer appliances for very large datasets.

What are the biggest risks during cloud migration cutover?▼

Cutover outages concentrate when there is no parallel run, canary traffic shift, or tested rollback. Run old and new systems in parallel, shift a small traffic slice first, validate the target before real users, and schedule the cutover in a low-traffic window.