What problem does it solve? Removing old systems, APIs, and database columns is risky: consumers depend on undocumented behavior, schema changes can break running code during rollouts, and unmaintained zombie code accumulates security debt. This Skill provides a disciplined process for deprecating systems and migrating users safely. ## Core Features & Use Cases - Deprecation Decision Framework: Quantify consumer count, migration cost, and maintenance cost before deciding between advisory and compulsory deprecation. - Migration Patterns: Apply the Strangler pattern, Adapter pattern, and feature-flag cutovers to move consumers incrementally from old to new implementations. - Expand/Contract Schema Migrations: Rename or drop database columns without downtime using additive phases, dual-writes, batched backfills, and tested down migrations. - Use Case: You need to rename a name column to full_name in production. The Skill walks you through adding the nullable column, dual-writing, backfilling in batches, switching reads, and dropping the old column in a separate deploy. ## Quick Start Help me plan the deprecation of our legacy task service and migrate all consumers to the new implementation without downtime.