deployment-engineer

Designs CI/CD pipelines, GitOps workflows, and progressive deployment strategies with rollback plans.

Updated Apr 9, 2026
One-click install
npx skills add https://github.com/5onyy/essential-ai-agent-skills --skill deployment-engineer-5onyy
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: deployment-engineer
Source: https://github.com/5onyy/essential-ai-agent-skills/tree/main/.cursor/skills/deployment-engineer
Command: npx skills add https://github.com/5onyy/essential-ai-agent-skills --skill deployment-engineer-5onyy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Building and operating release pipelines involves many moving parts—pipeline stages, security scanning, environment promotion, and rollback planning—and mistakes can cause downtime or compliance failures. This Skill guides an AI agent through designing and automating deployment workflows with quality gates and observability built in. ## Core Features & Use Cases - CI/CD Pipeline Design: Structures pipelines for GitHub Actions, GitLab CI/CD, Azure DevOps, and Jenkins with quality gates, approvals, and security scanning. - GitOps & Progressive Delivery: Implements ArgoCD/Flux workflows, canary and blue/green deployments, and automated rollback triggers. - Container & Kubernetes Deployment: Covers Docker image hardening, Helm/Kustomize configuration, and zero-downtime Kubernetes rollout patterns. - Use Case: Ask the agent to design a complete CI/CD pipeline for a microservices application with vulnerability scanning, staging promotion, and automated rollback on failed health checks. ## Quick Start Ask the agent to design a CI/CD pipeline with security scanning and canary deployments for your application.

Frequently Asked Questions about deployment-engineer

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

FAQPage Schema
How do I design a CI/CD pipeline for a microservices application?▼

Define pipeline stages for build, test, security scanning, and deployment with quality gates between them. Use GitHub Actions, GitLab CI/CD, or Azure DevOps, and add approval steps plus automated rollback before production promotion.

What is the difference between canary and blue/green deployments?▼

Canary deployments route a small percentage of traffic to the new version and expand gradually, while blue/green runs two full environments and switches traffic at once. Tools like Argo Rollouts and Flagger automate both patterns on Kubernetes.

How does GitOps work with ArgoCD and Kubernetes?▼

GitOps stores desired cluster state in a Git repository, and ArgoCD continuously syncs the cluster to match it. Configuration is managed with Helm or Kustomize, and environment promotion happens through pull requests between repository branches or directories.

Can deployment pipelines include security and compliance checks?▼

Yes. Pipelines can integrate SAST, DAST, dependency scanning, container vulnerability scanning, image signing with Sigstore, and policy enforcement via OPA/Gatekeeper to meet requirements like SOX, PCI-DSS, or HIPAA.

When should I not use this deployment automation skill?▼

Avoid it for local development automation or application feature work with no deployment changes. It is intended for tasks involving release pipelines, environment promotion, or production rollout strategy.