deployment-automation

Automated deployment pipeline for AI agents. Build, test, and deploy applications with zero-downtime. Triggers: deployment, CI/CD, release automation, deploy pipeline, continuous deployment.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "deployment-automation" with this command: npx skills add sky-lv/deployment-automation

Deployment Automation

Automated deployment pipeline for AI agents. Build, test, and deploy applications with zero-downtime and instant rollback.

Overview

A complete deployment automation system that helps agents manage the full release lifecycle: build, test, deploy, monitor, and rollback. Supports multiple deployment strategies including blue-green, canary, and rolling updates.

Capabilities

1. Pipeline Definition

node deploy.js pipeline create --name production --stages build,test,stage,deploy
node deploy.js pipeline run --name production --ref main
node deploy.js pipeline status --name production

Define and execute multi-stage deployment pipelines with custom stages.

2. Deployment Strategies

node deploy.js deploy --strategy blue-green --service api
node deploy.js deploy --strategy canary --service web --canary-percent 10
node deploy.js deploy --strategy rolling --service worker --batch-size 3

Choose from blue-green, canary, or rolling deployment strategies.

3. Health Checks

node deploy.js health-check --service api --endpoint /health --timeout 30s
node deploy.js health-check --custom .healthcheck.json

Automated health checks before and after deployment to ensure service stability.

4. Rollback

node deploy.js rollback --service api --to previous
node deploy.js rollback --service web --to-version v2.3.1
node deploy.js rollback --auto-on-failure --max-retries 3

Instant rollback to previous versions on deployment failure.

5. Multi-Environment

node deploy.js promote --from staging --to production --approve
node deploy.js diff --env staging vs production

Promote builds across environments with approval gates and configuration diffing.

Configuration

{
  "pipeline": {
    "environments": ["dev", "staging", "production"],
    "strategy": "canary",
    "canaryPercent": 10,
    "healthCheck": {
      "endpoint": "/health",
      "timeout": "30s",
      "retries": 3
    },
    "rollback": {
      "autoOnFailure": true,
      "maxRetries": 3
    },
    "notifications": {
      "onStart": ["slack"],
      "onSuccess": ["slack", "email"],
      "onFailure": ["slack", "pagerduty"]
    }
  }
}

Use Cases

  • Application Release: Automate full release workflow from build to deploy
  • Microservices: Deploy individual services independently
  • Infrastructure: Deploy infrastructure changes alongside application code
  • Agent Deployment: Deploy AI agent updates with zero downtime
  • Hotfix: Emergency deployments with automated health verification

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Openclaw Remote Install

One-click remote OpenClaw deployment via SSH. Auto-detects OS and selects best method (Docker/Podman/npm). Use when: (1) Installing on VPS/cloud servers, (2)...

Registry SourceRecently Updated
4060Profile unavailable
Coding

Ssh Deploy Skill

Universal SSH remote deployment tool - multi-server management, batch deployment, installation script templates with domestic mirror optimization. Supports r...

Registry SourceRecently Updated
1330Profile unavailable
Coding

Openclaw Deploy

一键打包和部署 OpenClaw 环境到任意服务器。自动移除敏感信息、支持本地/远程/批量部署、冲突处理、SHA256 完整性校验、详细日志与故障排查指南。适用于 OpenClaw 环境迁移、批量部署、团队标准化。

Registry Source
1190Profile unavailable
Coding

ACME SSL automation for Alibaba Cloud ESA DNS

Automatically issue/renew HTTPS certificates using Alibaba Cloud ESA DNS + acme.sh (including wildcard *.example.com + example.com), with optional installati...

Registry SourceRecently Updated
3801Profile unavailable