Deploy

Automates software deployments with CI/CD, rollback, and zero-downtime patterns.

1|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/marcoamu/openclaw-workspace --skill deploy-marcoamu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Deploy
Source: https://github.com/marcoamu/openclaw-workspace/tree/main/skills/deploy
Command: npx skills add https://github.com/marcoamu/openclaw-workspace --skill deploy-marcoamu

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Deployment of software releases is error-prone and risky without standardized processes. It minimizes downtime and ensures safe rollouts with automated checks.

Core Features & Use Cases

  • CI/CD orchestration: automated builds, tests, and artifact promotion across environments.
  • Rollback strategies: rolling, blue-green, and canary deployments with quick rollback capabilities.
  • Migration safety & monitoring: backward-compatible DB changes and post-deploy checks to ensure stability.

Quick Start

Configure your repository to trigger a deployment to production using your chosen strategy.

Frequently Asked Questions about Deploy

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

FAQPage Schema
How do I configure zero-downtime deployment for web services with frequent releases?

Configure zero-downtime deployment by applying rolling, blue-green, or canary strategies with automated health checks and backward-compatible database migrations. This ensures web services remain available during frequent releases and production rollouts.

What is the best way to automate rollback procedures during a failed production migration?

The best way to automate rollback procedures is by using deployment strategies like blue-green or canary releases paired with post-deploy health checks. This setup detects failures early and automatically reverts unsafe migrations without prolonged downtime.

Does this deployment approach support backward-compatible database migrations across staging and production?

Yes, this deployment approach supports backward-compatible database migrations across staging and production environments. It integrates migration safety checks with CI/CD orchestration to prevent schema conflicts during automated artifact promotion.

How do I orchestrate CI/CD pipelines for artifact promotion across multiple environments?

Orchestrate CI/CD pipelines by automating builds, tests, and artifact promotion across staging and production environments. This pipeline integrates directly with your chosen deployment strategy to ensure reliable software releases.

When should I use canary deployment instead of blue-green for feature flag rollouts?

Use canary deployment for feature flag rollouts when you need to route a small percentage of traffic to the new version to monitor stability. Blue-green deployment is better when you require an instant switch and rollback capability between two identical environments.

How do I set up post-deploy checks to ensure stability after a zero-downtime release?

Set up post-deploy checks by configuring automated health monitoring procedures that run immediately after the deployment process. These checks validate application stability and trigger automated rollback procedures if the new release fails expected health criteria.