What problem does it solve? When the legacy Angular source of an already-migrated page drifts, regenerating the whole page discards the fixes accumulated through earlier gate loops. This Skill re-migrates only the changed surface, keeping prior repairs intact. ## Core Features & Use Cases - Delta planning: Diffs the current legacy source against the recorded analysis and migration-plan baseline, producing a delta plan of added, modified, and removed operations. - Incremental vs full choice: Recommends full regeneration when the delta touches more than 60% of the page's files, otherwise applies incremental ops in cascade order via a delta-modifier agent. - State safety: Uses page locks, staged baseline promotion, and gate-evidence clearing so aborted runs never leave route-authorized pages over stale code. - Use Case: A hotel booking page already passed parity gates, but the legacy team changed its markup. Run this Skill to apply only the drifted changes, then re-enter the verify, e2e, and parity gates. ## Quick Start Run /frontend-migration-plugin:fm-delta my-page --app pc to re-migrate only the drifted parts of the page.