Senior Devops

Senior Devops is a comprehensive DevOps skill that scaffolds CI/CD pipelines, generates Terraform infrastructure-as-code modules, and creates Kubernetes deployment manifests with rollback runbooks. It supports GitHub Actions, CircleCI, and AWS/GCP/Azure, and produces ready-to-review configuration files and command sequences.

✨ What it does

  • Generates CI/CD pipeline configs for GitHub Actions or CircleCI with build, test, security, and deploy stages
  • Scaffolds Terraform modules for AWS, GCP, or Azure with validation and plan steps
  • Creates Kubernetes deployment manifests for blue-green or rolling strategies
  • Produces ordered kubectl runbooks with health-check gates before traffic switches
  • Provides rollback runbooks and commands
  • Includes pattern references and troubleshooting guides

🎯 When to use it

  • Setting up CI/CD pipelines for a new or existing project
  • Scaffolding Terraform modules for cloud infrastructure
  • Planning and executing application deployments with health-check gates
  • Implementing rollback procedures for failed deployments
  • Auditing current deployment state

🚀 How to use

Trigger: /healthz

Trigger by asking to set up a pipeline, generate Terraform, or plan a deployment. Provide the project path, platform (github/circleci), provider (aws/gcp/azure), module type, environment, image, and strategy. Example prompts:

python scripts/pipeline_generator.py ./app --platform=github --stages=build,test,deploy
python scripts/terraform_scaffolder.py ./infra --provider=aws --module=ecs-service
python scripts/deployment_manager.py deploy --env=staging --image=app:1.2.3 --strategy=blue-green

📄 Output: Pipeline configuration files, Terraform modules, Kubernetes deployment manifests, and runbook command sequences.

📦 Add this skill to Claude Code

# 1. Get the skills repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills /tmp/claude-skills

# 2. Copy this skill into your project (or ~/.claude/skills for all projects)
mkdir -p .claude/skills
cp -r /tmp/claude-skills/engineering-team/skills/senior-devops .claude/skills/senior-devops

Skill source: engineering-team/skills/senior-devops/SKILL.md

⚠️ Good to know

The deployment manager only generates manifests and prints commands; it never applies changes to a cluster, requiring human review before execution.

❓ FAQ

Does the deployment manager apply changes to the cluster?

No, it only writes manifests and prints commands; it never applies them, ensuring human review.

Which CI/CD platforms are supported?

GitHub Actions and CircleCI.

What cloud providers are supported for Terraform?

AWS, GCP, and Azure.

🤖 Overview, features, install steps and FAQ were generated from the project's SKILL.md on Sep 4, 2026. Always check the original source before running commands.