Skip to main content
Back to registry

migration-helper

get-convex/agent-skills

Safely migrate Convex schemas and data when making breaking changes.

Installs454
Install command
npx skills add https://github.com/get-convex/agent-skills --skill migration-helper
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Safely migrate Convex schemas and data when making breaking changes. Problem : Existing documents won't have the new field. Solution : Add as optional first, backfill data, then make required. Example : Change tags: v.array(v.string()) to separate table For large tables, process in batches: Use cron jobs for gradual migration: For zero-downtime migrations: - Adding new required fields to existing tables - Changing field types or structure - Splitting or merging tables - Renaming fields - Migrating from nested to relational data - No Automatic Migrations : Convex doesn't automatically migrate data - Additive Changes are Safe : Adding optional fields or new tables is safe - Breaking Changes Need Code : Required fields, type changes need migration code - Zero-Downtime : Write migrations to keep app running during migration - Don't make field required immediately : Always add as optional first - Don't migrate in a single transaction : Batch large migrations - Don't forget to update queries : Update all code using old field - Don't delete old field too soon : Wait until all data migrated - Test thoroughly : Verify migration on dev environment first

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does migration-helper do?

Safely migrate Convex schemas and data when making breaking changes.

Is migration-helper good?

migration-helper does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does migration-helper work with?

migration-helper currently lists compatibility with codex, gemini-cli, opencode, kimi-cli, amp, github-copilot.

What are alternatives to migration-helper?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install migration-helper?

npx skills add https://github.com/get-convex/agent-skills --skill migration-helper

Related skills

More from get-convex/agent-skills

Related skills

Alternatives in Software Engineering