Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
yonatangross avatar

Devops Deployment

  • 1.1k installs
  • 213 repo stars
  • Updated August 4, 2026
  • yonatangross/orchestkit

devops-deployment is an OrchestKit v1.0.0 skill that generates production-grade GitHub Actions CI/CD pipelines, Dockerfiles, Kubernetes manifests, and Terraform for developers who need reliable containerized deployment a

About

devops-deployment is an OrchestKit skill at version 1.0.0 compatible with Claude Code 2.1.76+ that generates production-grade CI/CD pipelines, Dockerfiles, Kubernetes manifests, and Terraform configurations. The skill covers GitHub Actions, Docker, Helm, and Terraform patterns when containerizing applications or deploying to Kubernetes with infrastructure as code. It runs under a ci-cd-engineer agent with allowed Read, Glob, Grep, WebFetch, and WebSearch tools across .github/workflows, Dockerfile, docker-compose, and related paths. Developers reach for devops-deployment when setting up automated build-test-deploy pipelines rather than hand-writing boilerplate YAML and HCL. The MIT-licensed skill tags devops, ci-cd, docker, kubernetes, and terraform for workflow automation discovery.

  • Generates GitHub Actions workflows for CI/CD pipelines
  • Creates Dockerfiles, docker-compose files and Helm charts
  • Produces Kubernetes manifests and Terraform infrastructure as code
  • Implements GitOps and release strategy patterns
  • Includes Docker availability checks and path-aware file handling

Devops Deployment by the numbers

  • 1,096 all-time installs (skills.sh)
  • +46 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #172 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Security screen: HIGH risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/yonatangross/orchestkit --skill devops-deployment

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.1k
repo stars213
Security audit3 / 3 scanners passed
Last updatedAugust 4, 2026
Repositoryyonatangross/orchestkit

How do you generate production CI/CD pipelines and Kubernetes manifests?

Generate production-grade CI/CD pipelines, Dockerfiles, Kubernetes manifests, and Terraform configurations that ship reliably.

Who is it for?

Developers containerizing applications who need GitHub Actions, Docker, Helm, and Terraform patterns generated for reliable Kubernetes deployment.

Skip if: Developers on locked-down platforms without container or IaC adoption who only need a single manual deploy script.

When should I use this skill?

User sets up CI/CD pipelines, containerizes an application, deploys to Kubernetes, or writes infrastructure as code with GitHub Actions, Docker, Helm, or Terraform.

What you get

GitHub Actions workflow YAML, Dockerfile, docker-compose files, Helm charts, and Terraform infrastructure modules.

  • CI/CD workflow YAML
  • Dockerfile and compose files
  • Terraform and Helm manifests

By the numbers

  • OrchestKit skill version 1.0.0 with Claude Code 2.1.76+ compatibility
  • Covers GitHub Actions, Docker, Helm, and Terraform deployment patterns

Files

SKILL.mdMarkdownGitHub ↗

DevOps & Deployment Skill

Comprehensive frameworks for CI/CD pipelines, containerization, deployment strategies, and infrastructure automation.

Note: If disableSkillShellExecution is enabled (CC 2.1.91), the Docker install check won't run. Verify Docker is available for container operations: docker --version.

Overview

  • Setting up CI/CD pipelines
  • Containerizing applications
  • Deploying to Kubernetes or cloud platforms
  • Implementing GitOps workflows
  • Managing infrastructure as code
  • Planning release strategies

Pipeline Architecture

┌─────────────┐   ┌─────────────┐   ┌─────────────┐   ┌─────────────┐
│    Code     │──>│    Build    │──>│    Test     │──>│   Deploy    │
│   Commit    │   │   & Lint    │   │   & Scan    │   │  & Release  │
└─────────────┘   └─────────────┘   └─────────────┘   └─────────────┘
       │                 │                 │                 │
       v                 v                 v                 v
   Triggers         Artifacts          Reports          Monitoring

Key Concepts

CI/CD Pipeline Stages

1. Lint & Type Check - Code quality gates 2. Unit Tests - Test coverage with reporting 3. Security Scan - npm audit + Trivy vulnerability scanner 4. Build & Push - Docker image to container registry 5. Deploy Staging - Environment-gated deployment 6. Deploy Production - Manual approval or automated

Container Best Practices

Multi-stage builds minimize image size:

  • Stage 1: Install production dependencies only
  • Stage 2: Build application with dev dependencies
  • Stage 3: Production runtime with minimal footprint

Security hardening:

  • Non-root user (uid 1001)
  • Read-only filesystem where possible
  • Health checks for orchestrator integration

Kubernetes Deployment

Essential manifests:

  • Deployment with rolling update strategy
  • Service for internal routing
  • Ingress for external access with TLS
  • HorizontalPodAutoscaler for scaling

Security context:

  • runAsNonRoot: true
  • allowPrivilegeEscalation: false
  • readOnlyRootFilesystem: true
  • Drop all capabilities

Deployment Strategies

StrategyUse CaseRisk
RollingDefault, gradual replacementLow - automatic rollback
Blue-GreenInstant switch, easy rollbackMedium - double resources
CanaryProgressive traffic shiftLow - gradual exposure

Rolling Update (Kubernetes default):

strategy:
  type: RollingUpdate
  rollingUpdate:
    maxSurge: 25%
    maxUnavailable: 0  # Zero downtime

Secrets Management

Use External Secrets Operator to sync from cloud providers:

  • AWS Secrets Manager
  • HashiCorp Vault
  • Azure Key Vault
  • GCP Secret Manager

---

References

Docker Patterns

Load: `Read("${CLAUDE_SKILL_DIR}/references/docker-patterns.md")`

Key topics covered:

  • Multi-stage build examples with 78% size reduction
  • Layer caching optimization
  • Security hardening (non-root, health checks)
  • Trivy vulnerability scanning
  • Docker Compose development setup

CI/CD Pipelines

Load: `Read("${CLAUDE_SKILL_DIR}/references/ci-cd-pipelines.md")`

Key topics covered:

  • Branch strategy (Git Flow)
  • GitHub Actions caching (85% time savings)
  • Artifact management
  • Matrix testing
  • Complete backend CI/CD example

Kubernetes Basics

Load: `Read("${CLAUDE_SKILL_DIR}/references/kubernetes-basics.md")`

Key topics covered:

  • Health probes (startup, liveness, readiness)
  • Security context configuration
  • PodDisruptionBudget
  • Resource quotas
  • StatefulSets for databases
  • Helm chart structure

Environment Management

Load: `Read("${CLAUDE_SKILL_DIR}/references/environment-management.md")`

Key topics covered:

  • External Secrets Operator
  • GitOps with ArgoCD
  • Terraform patterns (remote state, modules)
  • Zero-downtime database migrations
  • Alembic migration workflow
  • Rollback procedures

Observability

Load: `Read("${CLAUDE_SKILL_DIR}/references/observability.md")`

Key topics covered:

  • Prometheus metrics exposition
  • Grafana dashboard queries (PromQL)
  • Alerting rules for SLOs
  • Golden signals (SRE)
  • Structured logging
  • Distributed tracing (OpenTelemetry)

Railway Deployment

Load: `Read("${CLAUDE_SKILL_DIR}/rules/railway-deployment.md")`

Key topics covered:

  • railway.json configuration, Nixpacks builds
  • Environment variable management, database provisioning
  • Multi-service setups, Railway CLI workflows
  • References: ${CLAUDE_SKILL_DIR}/references/railway-json-config.md, ${CLAUDE_SKILL_DIR}/references/nixpacks-customization.md, ${CLAUDE_SKILL_DIR}/references/multi-service-setup.md

Deployment Strategies

Load: `Read("${CLAUDE_SKILL_DIR}/references/deployment-strategies.md")`

Key topics covered:

  • Rolling deployment
  • Blue-green deployment
  • Canary releases
  • Traffic splitting with Istio

---

Deployment Checklist & Templates

Load: Read("${CLAUDE_SKILL_DIR}/references/checklists-and-templates.md") for pre/during/post-deployment checklists, Helm chart structure, template reference table, and extended thinking triggers.

---

Related Skills

  • zero-downtime-migration - Database migration patterns for zero-downtime deployments
  • security-scanning - Security scanning integration for CI/CD pipelines
  • ork:monitoring-observability - Monitoring and alerting for deployed applications
  • ork:database-patterns - Python/Alembic migration workflow for backend deployments
  • portless (upstream) - Named .localhost URLs for multi-service local dev (portless alias api 8080)

Key Decisions

DecisionChoiceRationale
Container userNon-root (uid 1001)Security best practice, required by many orchestrators
Deployment strategyRolling update (default)Zero downtime, automatic rollback, resource efficient
Secrets managementExternal Secrets OperatorSyncs from cloud providers, GitOps compatible
Health checksSeparate startup/liveness/readinessPrevents premature traffic, enables graceful shutdown

Capability Details

Load: Read("${CLAUDE_SKILL_DIR}/references/capability-details.md") for full keyword index and problem-solution mapping across all 6 capabilities (ci-cd, docker, kubernetes, infrastructure-as-code, deployment-strategies, observability).

Related skills

FAQ

What artifacts does devops-deployment generate?

devops-deployment generates production-grade GitHub Actions CI/CD pipelines, Dockerfiles, Kubernetes manifests, Helm charts, and Terraform configurations. The OrchestKit v1.0.0 skill targets reliable automated deployment for containerized applications.

Which tools and platforms does devops-deployment cover?

devops-deployment covers GitHub Actions, Docker, Helm, and Terraform patterns for CI/CD and Kubernetes deployment. The skill requires Claude Code 2.1.76+ and runs through the ci-cd-engineer agent with repository path awareness for workflow and container files.

Is Devops Deployment safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

DevOps & CI/CDdevopsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.