workflow-migrate

Apply and validate pending workflow migrations with git integration.

27|1|Updated Nov 23, 2025
One-click install
npx skills add https://github.com/leeovery/agentic-workflows --skill workflow-migrate
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-migrate
Source: https://github.com/leeovery/agentic-workflows/tree/main/skills/workflow-migrate
Command: npx skills add https://github.com/leeovery/agentic-workflows --skill workflow-migrate

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires node, and includes scripts (resource) components.

What problem does it solve?

Keeps your workflow files up to date with how the system is designed to work. It runs all pending migrations automatically to align local work with the current design.

Core Features & Use Cases

  • Automatically applies pending migrations to update workflow material and ensure consistency with the latest architecture.
  • Tracks migration progress and enforces gates (e.g., STOP_GATE) to require user review when updates are produced.
  • Maintains a state log at .workflows/.state/migrations and integrates with git to surface changes for review.

Quick Start

Run the migration runner to apply all pending migrations with sandbox disabled.

Frequently Asked Questions about workflow-migrate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I apply pending workflow migrations to update a git repository?

The runner executes all pending workflow migrations in order to align local repository definitions with the latest design. It records progress in .workflows/.state/migrations and integrates with git to surface changes for review.

How does workflow migration state management track progress across git commits?

State management tracks workflow migration progress by maintaining a log at .workflows/.state/migrations. It integrates with git to surface applied updates for review and ensure operations remain traceable and idempotent.

Do I need Node.js to run automated workflow migrations?

Yes, Node.js is required as a dependency to run the automated workflow migration scripts. It executes the runner that applies updates to existing repository workflow definitions.

Can I enforce a review gate before workflow definitions are updated?

Yes, the runner enforces gates like STOP_GATE to require user review when updates are produced. This ensures automated workflow definition migrations pause for manual validation before proceeding.

What is the safest way to rerun workflow migrations without duplicating changes?

Use the runner's idempotent operations to rerun workflow migrations without duplicating changes. It checks the .workflows/.state/migrations log to detect applied updates and only executes pending migrations.