What problem does it solve? Breaking schema changes in Convex cannot deploy while existing data violates the new schema, forcing developers to coordinate multi-step migrations without downtime or data loss. ## Core Features & Use Cases - Widen-Migrate-Narrow Workflow: Guides the multi-deploy pattern of widening the schema, backfilling data, then narrowing the schema for breaking changes. - Migrations Component Integration: Uses @convex-dev/migrations for batched, resumable migrations with dry runs, status monitoring, and cancellation. - Pattern Library: Provides reference implementations for adding required fields, changing types, splitting tables, cleaning orphans, and zero-downtime dual-write or dual-read strategies. - Use Case: When renaming a boolean field to an enum on a production table, the Skill plans the deploy sequence, writes the backfill migration, and verifies completion before the final schema narrowing. ## Quick Start Ask the assistant to plan a safe migration for adding a required field to an existing Convex table with production data.