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 cursor-based pagination. - Pattern Library: Provides reference implementations for adding required fields, changing field types, splitting nested data into tables, and zero-downtime dual-write or dual-read strategies. - Use Case: When adding a required role field to an existing users table, the Skill walks you through deploying an optional field, backfilling with a migration, verifying completion, and then making the field required. ## Quick Start Ask the assistant to plan a safe migration for adding a required field to an existing Convex table with production data.