ops-deploy

Automate multi-environment deployments with pre-flight checks and rollback planning.

Updated Mar 26, 2026
One-click install
npx skills add https://github.com/cyberpunk042/devops-expert-local-ai --skill ops-deploy-cyberpunk042
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ops-deploy
Source: https://github.com/cyberpunk042/devops-expert-local-ai/tree/main/.claude/skills/ops-deploy
Command: npx skills add https://github.com/cyberpunk042/devops-expert-local-ai --skill ops-deploy-cyberpunk042

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates deployment workflows with built-in pre-flight checks, artifact generation, and rollback planning to reduce risky releases and downtime.

Core Features & Use Cases

  • Pre-flight checks: verify tests pass, lint clean, no uncommitted changes, and correct branch before deployment.
  • Artifact build & deploy: build the deployment artifact and deploy it to the target environment.
  • Smoke tests & rollback: run post-deploy smoke tests and automatically rollback on failure if needed.
  • Deployment auditing: log every deployment with timestamp, version, deployer, and status for traceability.

Quick Start

Run a pre-flight check, build the artifact, deploy to the target environment, then smoke-test and rollback if necessary.

Frequently Asked Questions about ops-deploy

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

FAQPage Schema
How do I automate multi-environment CI-CD pipelines with safe rollback planning?

Automate multi-environment CI-CD pipelines by implementing pre-flight validation, artifact packaging, environment deployment, post-deploy smoke tests, and rollback logging to ensure repeatable, auditable releases across dev, staging, and prod.

What pre-flight checks are needed before deploying an artifact to staging or prod?

Pre-flight checks before deploying an artifact verify that tests pass, linting is clean, there are no uncommitted changes, and the correct branch is targeted, preventing faulty releases and reducing downtime.

How do post-deploy smoke tests trigger an automatic rollback on failure?

Post-deploy smoke tests trigger automatic rollback by evaluating application health after environment deployment; if smoke tests fail, the workflow reverts the release to the previous artifact version automatically.

Can I log deployment audits with timestamp, version, and deployer status for traceability?

You can log deployment audits by recording every release event with a timestamp, version, deployer, and status, providing full traceability and an auditable history for multi-environment deployment workflows.

What is the best way to prevent faulty releases in a multi-environment deployment workflow?

The best way to prevent faulty releases in a multi-environment deployment workflow is applying pre-flight validation, building deployment artifacts, running post-deploy smoke tests, and executing automatic rollback on failure.

Do I need uncommitted changes resolved before running a pre-flight deployment validation?

Yes, you need uncommitted changes resolved before running pre-flight deployment validation, as the workflow checks for a clean working directory, passing tests, and correct branch alignment before building artifacts.