Step 06 of 9 4-6 weeks· advanced
Step 6: Migrate Vertical Slice 1
Ship one complete user-facing capability through the new stack, end-to-end, behind a feature flag. The first slice is your proof point.
Recommended prompts
Use one of these to do the work in your IDE
Open the template to read it in full. Click Copy prompt to grab it (with your stack values pre-filled where they apply) — then paste into Claude Code, Cursor, or wherever you build.
Recommended skills
Drop these into Claude Code for this phase
Skills auto-trigger on the right kind of request. Install once; they apply to every prompt that fits.
Recommended MCP configs
Wire these tools into Claude Code first
MCP servers give Claude Code direct access to external systems (Jira, browsers, databases). Configure once.
When you're done
Verify these in your own work before moving on
This is a checklist for you to mentally tick off in your repo and IDE — the site doesn't track it, you do.
- Slice 1 implemented end-to-end (Angular + .NET + DB)
- Parity tests pass: new behavior matches legacy
- Unit and integration tests cover the new code
- Feature flag wires up routing
- Internal team validates on staging for 1 week
- Canary rollout: 1% → 5% → 25% → 50% → 100% with stop conditions
- Monitoring shows no error-rate increase, latency within 50% of legacy
- Rollback procedure tested in staging
Common pitfalls
What goes wrong at this step
- Big-bang deploy — defeats the strangler fig purpose. Always canary
- No stop conditions — the team keeps ramping the % even when errors increase
- No rollback drill — the first time you flip the flag back is the worst time to discover it doesn't work
- Hidden coupling to legacy — slice 1 ends up needing 10 legacy adapters; reconsider scope