A comprehensive guide and toolkit for implementing safe, zero-downtime database migrations using industry-standard patterns.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install database-migrations
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install database-migrations using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
This skill provides a robust framework for managing database schema evolution without interrupting service. By utilizing Openclaw Skills, developers can implement strategies like Expand-Contract and Parallel Change to ensure backward compatibility during complex updates and avoid table-locking scenarios.
It covers the entire lifecycle of a migration, from selecting the right tools like Prisma or Atlas to executing multi-phase data backfills. The focus is on production safety, providing actionable patterns for adding columns, changing types, and handling large-scale data mutations while minimizing lock pressure and replication lag.
Integration depends on your specific environment and ORM. To begin using these patterns within Openclaw Skills, configure your database environment and select your preferred CLI tool.
# Example for a Node-based project using Knex
npm install knex
npm run migrate:up
# For Atlas schema management
atlas schema apply --url "postgres://user:pass@localhost:5432/db"
Ensure your CI pipeline is configured to run up/down/up cycles to verify migration idempotency before merging PRs.
The skill organizes migration strategies and tools into structured formats to facilitate decision-making. Data is categorized by operation type and risk level:
| Data Category | Description |
|---|---|
| Evolution Strategies | Defines the approach (Additive, Parallel, etc.) based on risk and downtime |
| Zero-Downtime Patterns | Specific DDL instructions for operations like column renaming and type changes |
| Tooling Metadata | Comparison of ORMs and migration CLI tools across different ecosystems |
| Checklists | Operational steps for pre-migration, execution, and post-migration safety |
Loading
An automated AI agent skill for executing and monitoring secure cross-chain token swaps using Uniswap bridge infrastructure.

Automate the discovery and execution of profitable price discrepancies across 11 blockchain networks with integrated risk management.

Deploy configurable Uniswap V2 and V3 pools on local testnets using natural language commands without writing Solidity scripts.

Transform project context into a managed artifact to ensure consistent AI behavior and seamless team alignment.

A structured meta-skill for making confident, traceable engineering choices through proven frameworks like RICE scoring, MoSCoW, and ADRs.

Automate the end-to-end lifecycle of launching ERC-20 tokens on Uniswap V4 with enterprise-grade security hooks and liquidity management.








































