From ruflo-migrations
Database migration operations — create, apply, rollback, validate, and inspect migration history
How this command is triggered — by the user, by Claude, or both
Slash command
/ruflo-migrations:migrateThe summary Claude sees in its command listing — used to decide when to auto-load this command
Migration commands: **`migrate create <name>`** -- Create a new migration with sequential numbering. 1. Scan the migrations directory for the highest existing migration number 2. Compute the next number (zero-padded to 3 digits) 3. Generate `NNN_<name>.up.sql` and `NNN_<name>.down.sql` files 4. Populate with SQL template appropriate for the name (create table, add column, add index) 5. Store migration metadata via `mcp__claude-flow__agentdb_hierarchical-store` 6. Report: file paths created, migration number, template used **`migrate up [--dry-run]`** -- Apply pending migrations. 1. Recall...
Migration commands:
migrate create <name> -- Create a new migration with sequential numbering.
NNN_<name>.up.sql and NNN_<name>.down.sql filesmcp__claude-flow__agentdb_hierarchical-storemigrate up [--dry-run] -- Apply pending migrations.
--dry-run, display the SQL for each pending migration without executing.up.sql file in order, recording resultsmigrations namespacemigrate down [--steps N] -- Rollback the last N migrations (default: 1).
.down.sql files in reverse ordermigrations namespacemigrate status -- Show migration status.
migrate validate -- Validate pending migrations for safety.
.up.sql and .down.sql filesmigrate history -- Show full migration execution history.
migrations namespacenpx claudepluginhub walterp/ruflo --plugin ruflo-migrations18plugins reuse this command
First indexed May 13, 2026
Showing the 6 earliest of 18 plugins
/migratePlans and executes an incremental framework or library migration with dependency audit, breaking changes analysis, step-by-step execution, and verification.
/migrateMigrates legacy ETL pipelines (stored procedures, SSIS, Informatica) to modern stack by analyzing code, delegating to specialized agents, and producing dbt models, PySpark jobs, Airflow DAGs, validation queries, and rollback documentation.
/migrateConverts ADVPL procedural source files to TLPP object-oriented code with classes, namespaces, and modern patterns. Shows a detailed migration plan for user approval before generating output.
/migrateMigrates a Nuxt project from UI v2/v3 to v4, automatically fixing breaking changes like component renames, model modifiers, composable imports, and CSS import order. Supports dry-run preview.
/migrateMigrates a project from Task Master MCP to native markdown-based task tracking by porting pending tasks, cleaning up Task Master files, and updating configuration.
/migrateAutomates the migration of OpenShift component repositories to the openshift-tests-extension (OTE) framework, handling repo setup, code generation, test migration, dependency resolution, and Docker integration.