DevOps Engineering — Quick Reference
This skill equips teams with actionable templates, checklists, and patterns for building self-service platforms, automating infrastructure with GitOps, deploying securely with DevSecOps, scaling with Kubernetes, ensuring reliability through SRE practices, and operating production systems with strong observability.
Modern baseline (2026): IaC (Terraform/OpenTofu/Pulumi), GitOps (Argo CD/Flux), Kubernetes (follow upstream supported releases), OpenTelemetry + Prometheus/Grafana, supply-chain security (SBOM + signing + provenance), policy-as-code (OPA/Gatekeeper or Kyverno), and eBPF-powered networking/security/observability (e.g., Cilium + Tetragon).
Quick Reference
| Task |
Tool/Framework |
Command |
When to Use |
| Infrastructure as Code |
Terraform / OpenTofu |
terraform plan && terraform apply |
Provision cloud resources declaratively |
| GitOps Deployment |
Argo CD / Flux |
argocd app sync myapp |
Continuous reconciliation, declarative deployments |
| Container Build |
Docker Engine |
docker build -t app:v1 . |
Package applications with dependencies |
| Kubernetes Deployment |
kubectl / Helm (Kubernetes) |
kubectl apply -f deploy.yaml / helm upgrade app ./chart |
Deploy to K8s cluster, manage releases |
| CI/CD Pipeline |
GitHub Actions |
Define workflow in .github/workflows/ci.yml |
Automated testing, building, deploying |
| Security Scanning |
Trivy / Falco / Tetragon |
trivy image myapp:latest |
Vulnerability scanning, runtime security, eBPF enforcement |
| Monitoring & Alerts |
Prometheus + Grafana |
Configure ServiceMonitor and AlertManager |
Observability, SLO tracking, incident alerts |
| Load Testing |
k6 / Locust |
k6 run load-test.js |
Performance validation, capacity planning |
| Incident Response |
PagerDuty / Opsgenie |
Configure escalation policies |
On-call management, automated escalation |
| Platform Engineering |
Backstage / Port |
Deploy internal developer portal |
Self-service infrastructure, golden paths |
Decision Tree: Choosing DevOps Approach
What do you need to accomplish?
├─ Infrastructure provisioning?
│ ├─ Cloud-agnostic → Terraform or OpenTofu (OSS fork)
│ ├─ Programming-first → Pulumi (TypeScript/Python/Go)
│ ├─ AWS-specific → CloudFormation or Terraform/OpenTofu
│ ├─ GCP-specific → Deployment Manager or Terraform/OpenTofu
│ └─ Azure-specific → ARM/Bicep or Terraform/OpenTofu
│
├─ Application deployment?
│ ├─ Kubernetes cluster?
│ │ ├─ Simple deploy → kubectl apply -f manifests/
│ │ ├─ Complex app → Helm charts
│ │ └─ GitOps workflow → ArgoCD or FluxCD
│ └─ Serverless?
│ ├─ AWS → Lambda + SAM/Serverless Framework
│ ├─ GCP → Cloud Functions
│ └─ Azure → Azure Functions
│
├─ CI/CD pipeline setup?
│ ├─ GitHub-based → GitHub Actions (template-github-actions.md)
│ ├─ GitLab-based → GitLab CI
│ ├─ Enterprise → Jenkins or Tekton
│ └─ Security-first → Add SAST/DAST/SCA scans (template-ci-cd.md)
│
├─ Observability & monitoring?
│ ├─ Metrics → Prometheus + Grafana
│ ├─ Distributed tracing → Jaeger or OpenTelemetry
│ ├─ Logs → Loki or ELK stack
│ ├─ eBPF-based → Cilium + Hubble (sidecarless)
│ └─ Unified platform → Datadog or New Relic
│
├─ Incident management?
│ ├─ On-call rotation → PagerDuty or Opsgenie
│ ├─ Postmortem → template-postmortem.md
│ └─ Communication → template-incident-comm.md
│
├─ Platform engineering?
│ ├─ Self-service → Backstage or Port (internal developer portal)
│ ├─ Policy enforcement → OPA/Gatekeeper
│ └─ Golden paths → Template repositories + automation
│
└─ Security hardening?
├─ Container scanning → Trivy or Grype
├─ Runtime security → Falco or Sysdig
├─ Secrets management → HashiCorp Vault or cloud-native KMS
└─ Compliance → CIS Benchmarks, template-security-hardening.md
When to Use This Skill
Claude should invoke this skill when users request:
- Platform engineering patterns (self-service developer platforms, internal tools)
- GitOps workflows (ArgoCD, FluxCD, declarative infrastructure management)
- Infrastructure as Code patterns (Terraform, K8s manifests, policy as code)
- CI/CD pipelines with DevSecOps (GitHub Actions, security scanning, SAST/DAST/SCA)
- SRE incident management, escalation, and postmortem templates
- eBPF-based observability (Cilium, Hubble, kernel-level insights, OpenTelemetry)
- Kubernetes operational patterns (day-2 operations, resource management, workload placement)
- Cloud-native monitoring (Prometheus, Grafana, unified observability platforms)
- Team workflow, communication, handover guides, and runbooks
Resources (Best Practices Guides)
Operational best practices by domain:
- DevOps/SRE Operations: references/devops-best-practices.md - Core patterns for safe infrastructure changes, deployments, and incident response
- Platform Engineering: references/platform-engineering-patterns.md - Self-service platforms, golden paths, internal developer portals, policy as code
- GitOps Workflows: references/gitops-workflows.md - Continuous reconciliation, multi-environment promotion, ArgoCD/FluxCD patterns, progressive delivery
- SRE Incident Management: references/sre-incident-management.md - Severity classification, escalation procedures, blameless postmortems, alert correlation, and runbooks
- Operational Standards: references/operational-patterns.md - Platform engineering blueprints, CI/CD safety, SLOs, and reliability drills
Each guide includes:
- Checklists for completeness and safety
- Common anti-patterns and remediations
- Step-by-step patterns for safe rollout, rollback, and verification
- Decision matrices (e.g., deployment, escalation, monitoring strategy)
- Real-world examples and edge case handling
Templates (Copy-Paste Ready)
Production templates organized by tech stack:
AWS Cloud
- assets/aws/template-aws-ops.md - AWS service operations and best practices
- assets/aws/template-aws-terraform.md - Terraform modules for AWS infrastructure
- assets/aws/template-cost-optimization.md - AWS cost optimization strategies
GCP Cloud
- assets/gcp/template-gcp-ops.md - GCP service operations
- assets/gcp/template-gcp-terraform.md - Terraform modules for GCP
Azure Cloud
- assets/azure/template-azure-ops.md - Azure service operations
Kubernetes
- assets/kubernetes/template-kubernetes-ops.md - Day-to-day K8s operations
- assets/kubernetes/template-ha-dr.md - High availability and disaster recovery
- assets/kubernetes/template-platform-api.md - Platform API patterns
- assets/kubernetes/template-k8s-deploy.yaml - Deployment manifests
Docker
- assets/docker/template-docker-ops.md - Container build, security, and operations
Kafka
- assets/kafka/template-kafka-ops.md - Kafka cluster operations and streaming
Terraform & IaC
- assets/terraform-iac/template-iac-terraform.md - Infrastructure as Code patterns
- assets/terraform-iac/template-module.md - Reusable Terraform modules
- assets/terraform-iac/template-env-promotion.md - Environment promotion strategies
CI/CD Pipelines
- assets/cicd-pipelines/template-ci-cd.md - General CI/CD patterns
- assets/cicd-pipelines/template-github-actions.md - GitHub Actions workflows
- assets/cicd-pipelines/template-gitops.md - GitOps deployment patterns
- assets/cicd-pipelines/template-release-safety.md - Safe release practices
Monitoring & Observability
- assets/monitoring-observability/template-slo.md - Service level objectives
- assets/monitoring-observability/template-alert-rules.md - Alert configuration
- assets/monitoring-observability/template-observability-slo.md - Observability patterns
- assets/monitoring-observability/template-loadtest-perf.md - Load testing and performance
Incident Response
- assets/incident-response/template-postmortem.md - Incident postmortems
- assets/incident-response/template-runbook-starter.md - Runbook starter template
- assets/incident-response/template-incident-comm.md - Incident communication
- assets/incident-response/template-incident-response.md - Incident response procedures
Security
- assets/security/template-security-hardening.md - Security hardening checklists
Navigation
Resources
- references/operational-patterns.md
- references/sre-incident-management.md
- references/devops-best-practices.md
- references/platform-engineering-patterns.md
- references/gitops-workflows.md
Shared Utilities (Centralized patterns — extract, don't duplicate)
Templates
- assets/incident-response/template-postmortem.md
- assets/incident-response/template-runbook-starter.md
- assets/incident-response/template-incident-comm.md
- assets/incident-response/template-incident-response.md
- assets/docker/template-docker-ops.md
- assets/security/template-security-hardening.md
- assets/azure/template-azure-ops.md
- assets/gcp/template-gcp-terraform.md
- assets/gcp/template-gcp-ops.md
- assets/cicd-pipelines/template-release-safety.md
- assets/cicd-pipelines/template-gitops.md
- assets/cicd-pipelines/template-ci-cd.md
- assets/cicd-pipelines/template-github-actions.md
- assets/kafka/template-kafka-ops.md
- assets/aws/template-aws-terraform.md
- assets/aws/template-aws-ops.md
- assets/aws/template-cost-optimization.md
- assets/monitoring-observability/template-slo.md
- assets/monitoring-observability/template-loadtest-perf.md
- assets/monitoring-observability/template-alert-rules.md
- assets/monitoring-observability/template-observability-slo.md
- assets/kubernetes/template-k8s-deploy.yaml
- assets/kubernetes/template-platform-api.md
- assets/kubernetes/template-kubernetes-ops.md
- assets/kubernetes/template-ha-dr.md
- assets/terraform-iac/template-env-promotion.md
- assets/terraform-iac/template-iac-terraform.md
- assets/terraform-iac/template-module.md
Data
- data/sources.json — Curated external references
Related Skills
Operations & Infrastructure:
Security & Compliance:
Software Development:
Optional: AI/Automation (Related Skills):
Cost Governance & Capacity Planning
assets/cost-governance/template-cost-governance.md — Production cost control for cloud infrastructure.
Key Sections
- Cost Governance Framework — Tagging strategy, budget alerts, anomaly detection
- Cloud Cost Optimization — Right-sizing, reserved capacity, storage tiering
- Kubernetes Cost Control — Resource requests/limits, quotas, autoscaler config
- Capacity Planning — Utilization baseline, growth projections, scaling triggers
- FinOps Practices — Monthly review agenda, optimization workflow
Do / Avoid
GOOD: Do
- Tag all resources at creation time
- Set budget alerts before hitting limits
- Review right-sizing recommendations monthly
- Use spot/preemptible for fault-tolerant workloads
- Set Kubernetes resource requests on all pods
- Enable cluster autoscaler with scale-down
- Document capacity planning assumptions
- Run postmortems after every incident
BAD: Avoid
- Deploying without cost tags
- Running dev resources 24/7
- Over-provisioning "just in case"
- Ignoring reserved capacity opportunities
- Disabling scale-down to "avoid disruption"
- Alert fatigue (too many low-priority alerts)
- Snowflake infrastructure (manual, undocumented)
- "Clickops" drift (changes outside IaC)
Anti-Patterns
| Anti-Pattern |
Problem |
Fix |
| No tagging |
Can't attribute costs |
Enforce tags in CI/CD |
| Dev runs 24/7 |
70% waste |
Scheduled shutdown |
| Over-provisioned |
Paying for unused capacity |
Monthly right-sizing |
| No reservations |
Paying on-demand premium |
60-70% coverage target |
| Alert fatigue |
Real issues missed |
SLO-based alerting, tuned thresholds |
| Snowflake infra |
Undocumented, unreproducible |
Everything in Terraform/IaC |
| No postmortems |
Same incidents repeat |
Blameless postmortem for every SEV1/2 |
Optional: AI/Automation (AIOps)
Note: AI can assist with analysis and triage, but infrastructure/cost/incident decisions require human approval and an audit trail (especially anything destructive or irreversible).
AIOps Capabilities (2026)
Self-Healing Systems:
- AI-powered anomaly detection to predict failures before they happen
- Automated remediation flows that trigger rollbacks or config changes
- Intelligent test selection and risk-based change scoring in CI/CD
- Causal graph analysis for instant root cause identification
Automated Operations:
- Unused resource detection and notification
- Right-sizing recommendation generation
- Alert summarization and correlation (reduce noise by 90%+)
- Runbook step suggestions and automated execution
AI-Assisted Analysis
- Cost trend prediction and anomaly detection
- Incident pattern identification across services
- Post-mortem theme extraction
- Capacity planning predictions
Platform Engineering + AI
Platform teams increasingly embed AI capabilities directly into the platform:
- Multi-agent orchestration for code generation, security validation, deployment
- Intelligent defaults and guardrails that scale across teams
Bounded Claims
- AI recommendations need validation before action
- Automated deletions require approval workflow
- Cost predictions are estimates, not guarantees
- Runbook suggestions need SRE verification
- Self-healing actions should have human-defined policies and audit trails
Operational Deep Dives
See references/operational-patterns.md for:
- Platform engineering blueprints and GitOps reconciliation checklists
- DevSecOps CI/CD gates, SLO/SLI playbooks, and rollout verification steps
- Observability patterns (eBPF), incident noise reduction, and reliability drills
External Resources
See data/sources.json for curated sources organized by tech stack:
- Cloud Platforms: AWS, GCP, Azure documentation and best practices
- Container Orchestration: Kubernetes, Helm, Kustomize, Docker
- Infrastructure as Code: Terraform, OpenTofu, Pulumi, CloudFormation, ARM templates
- CI/CD & GitOps: GitHub Actions, GitLab CI, Jenkins, ArgoCD, FluxCD
- Streaming: Apache Kafka, Confluent, Strimzi
- Monitoring: Prometheus, Grafana, Datadog, OpenTelemetry, Jaeger, Cilium/Hubble, Tetragon
- SRE: Google SRE books, incident response patterns
- Security: OWASP DevSecOps, CIS Benchmarks, Trivy, Falco
- Tools: kubectl, k9s, stern, Cosign, Syft, Terragrunt
Use this skill as a hub for safe, modern, and production-grade DevOps patterns. All templates and patterns are operational—no theory or book summaries.
Trend Awareness Protocol
When users ask recommendation questions about DevOps, platform engineering, or cloud infrastructure, validate time-sensitive details (versions, deprecations, licensing, major releases) against primary sources.
Trigger Conditions
- "What's the best tool for [Kubernetes/IaC/CI-CD/monitoring]?"
- "What should I use for [container orchestration/GitOps/observability]?"
- "What's the latest in DevOps/platform engineering?"
- "Current best practices for [Terraform/ArgoCD/Prometheus]?"
- "Is [tool/approach] still relevant in 2026?"
- "[Kubernetes] vs [alternative]?" or "[ArgoCD] vs [FluxCD]?"
- "Best cloud provider for [use case]?"
- "What orchestration/monitoring tool should I use?"
Minimum Verification (Preferred Order)
- Check the official docs + release notes linked in data/sources.json for the specific tools you recommend.
- If internet access is available, confirm recent releases, breaking changes, and deprecations from those release pages.
- If internet access is not available, state that versions may have changed and focus on stable selection criteria (operational fit, ecosystem, maturity, team skills, compliance).
What to Report
After searching, provide:
- Current landscape: What tools/approaches are popular NOW (not 6 months ago)
- Emerging trends: New tools, patterns, or practices gaining traction
- Deprecated/declining: Tools/approaches losing relevance or support
- Recommendation: Based on fresh data, not just static knowledge
Example Topics (verify with fresh search)
- Kubernetes versions and ecosystem tools (1.33+, Cilium, Gateway API)
- Infrastructure as Code (Terraform, OpenTofu, Pulumi, CDK)
- GitOps platforms (ArgoCD, FluxCD, Codefresh)
- Observability stacks (OpenTelemetry, Grafana stack, Datadog)
- Platform engineering tools (Backstage, Port, Kratix)
- CI/CD platforms (GitHub Actions, GitLab CI, Dagger)
- Cloud-native security (Falco, Trivy, policy engines)
1---2name: ops-devops-platform3description: Production-grade DevOps and platform engineering patterns: Kubernetes, Terraform, containers, GitOps, CI/CD, observability, incident response, security hardening, and cloud-native operations (AWS, GCP, Azure, Kafka).4---5
6# DevOps Engineering — Quick Reference
7
8This skill equips teams with actionable templates, checklists, and patterns for building self-service platforms, automating infrastructure with GitOps, deploying securely with DevSecOps, scaling with Kubernetes, ensuring reliability through SRE practices, and operating production systems with strong observability.
9
10**Modern baseline (2026)**: IaC (Terraform/OpenTofu/Pulumi), GitOps (Argo CD/Flux), Kubernetes (follow upstream supported releases), OpenTelemetry + Prometheus/Grafana, supply-chain security (SBOM + signing + provenance), policy-as-code (OPA/Gatekeeper or Kyverno), and eBPF-powered networking/security/observability (e.g., Cilium + Tetragon).
11
12---
13
14## Quick Reference
15
16| Task | Tool/Framework | Command | When to Use |
17|------|----------------|---------|-------------|
18| Infrastructure as Code | Terraform / OpenTofu | `terraform plan && terraform apply` | Provision cloud resources declaratively |
19| GitOps Deployment | Argo CD / Flux | `argocd app sync myapp` | Continuous reconciliation, declarative deployments |
20| Container Build | Docker Engine | `docker build -t app:v1 .` | Package applications with dependencies |
21| Kubernetes Deployment | kubectl / Helm (Kubernetes) | `kubectl apply -f deploy.yaml` / `helm upgrade app ./chart` | Deploy to K8s cluster, manage releases |
22| CI/CD Pipeline | GitHub Actions | Define workflow in `.github/workflows/ci.yml` | Automated testing, building, deploying |
23| Security Scanning | Trivy / Falco / Tetragon | `trivy image myapp:latest` | Vulnerability scanning, runtime security, eBPF enforcement |
24| Monitoring & Alerts | Prometheus + Grafana | Configure ServiceMonitor and AlertManager | Observability, SLO tracking, incident alerts |
25| Load Testing | k6 / Locust | `k6 run load-test.js` | Performance validation, capacity planning |
26| Incident Response | PagerDuty / Opsgenie | Configure escalation policies | On-call management, automated escalation |
27| Platform Engineering | Backstage / Port | Deploy internal developer portal | Self-service infrastructure, golden paths |
28
29---
30
31## Decision Tree: Choosing DevOps Approach
32
33```text
34What do you need to accomplish?
35 ├─ Infrastructure provisioning?
36 │ ├─ Cloud-agnostic → Terraform or OpenTofu (OSS fork)
37 │ ├─ Programming-first → Pulumi (TypeScript/Python/Go)
38 │ ├─ AWS-specific → CloudFormation or Terraform/OpenTofu
39 │ ├─ GCP-specific → Deployment Manager or Terraform/OpenTofu
40 │ └─ Azure-specific → ARM/Bicep or Terraform/OpenTofu
41 │
42 ├─ Application deployment?
43 │ ├─ Kubernetes cluster?
44 │ │ ├─ Simple deploy → kubectl apply -f manifests/
45 │ │ ├─ Complex app → Helm charts
46 │ │ └─ GitOps workflow → ArgoCD or FluxCD
47 │ └─ Serverless?
48 │ ├─ AWS → Lambda + SAM/Serverless Framework
49 │ ├─ GCP → Cloud Functions
50 │ └─ Azure → Azure Functions
51 │
52 ├─ CI/CD pipeline setup?
53 │ ├─ GitHub-based → GitHub Actions (template-github-actions.md)
54 │ ├─ GitLab-based → GitLab CI
55 │ ├─ Enterprise → Jenkins or Tekton
56 │ └─ Security-first → Add SAST/DAST/SCA scans (template-ci-cd.md)
57 │
58 ├─ Observability & monitoring?
59 │ ├─ Metrics → Prometheus + Grafana
60 │ ├─ Distributed tracing → Jaeger or OpenTelemetry
61 │ ├─ Logs → Loki or ELK stack
62 │ ├─ eBPF-based → Cilium + Hubble (sidecarless)
63 │ └─ Unified platform → Datadog or New Relic
64 │
65 ├─ Incident management?
66 │ ├─ On-call rotation → PagerDuty or Opsgenie
67 │ ├─ Postmortem → template-postmortem.md
68 │ └─ Communication → template-incident-comm.md
69 │
70 ├─ Platform engineering?
71 │ ├─ Self-service → Backstage or Port (internal developer portal)
72 │ ├─ Policy enforcement → OPA/Gatekeeper
73 │ └─ Golden paths → Template repositories + automation
74 │
75 └─ Security hardening?
76 ├─ Container scanning → Trivy or Grype
77 ├─ Runtime security → Falco or Sysdig
78 ├─ Secrets management → HashiCorp Vault or cloud-native KMS
79 └─ Compliance → CIS Benchmarks, template-security-hardening.md
80```
81
82---
83
84## When to Use This Skill
85
86Claude should invoke this skill when users request:
87
88- Platform engineering patterns (self-service developer platforms, internal tools)
89- GitOps workflows (ArgoCD, FluxCD, declarative infrastructure management)
90- Infrastructure as Code patterns (Terraform, K8s manifests, policy as code)
91- CI/CD pipelines with DevSecOps (GitHub Actions, security scanning, SAST/DAST/SCA)
92- SRE incident management, escalation, and postmortem templates
93- eBPF-based observability (Cilium, Hubble, kernel-level insights, OpenTelemetry)
94- Kubernetes operational patterns (day-2 operations, resource management, workload placement)
95- Cloud-native monitoring (Prometheus, Grafana, unified observability platforms)
96- Team workflow, communication, handover guides, and runbooks
97
98---
99
100## Resources (Best Practices Guides)
101
102Operational best practices by domain:
103
104- **DevOps/SRE Operations**: [references/devops-best-practices.md](references/devops-best-practices.md) - Core patterns for safe infrastructure changes, deployments, and incident response
105- **Platform Engineering**: [references/platform-engineering-patterns.md](references/platform-engineering-patterns.md) - Self-service platforms, golden paths, internal developer portals, policy as code
106- **GitOps Workflows**: [references/gitops-workflows.md](references/gitops-workflows.md) - Continuous reconciliation, multi-environment promotion, ArgoCD/FluxCD patterns, progressive delivery
107- **SRE Incident Management**: [references/sre-incident-management.md](references/sre-incident-management.md) - Severity classification, escalation procedures, blameless postmortems, alert correlation, and runbooks
108- **Operational Standards**: [references/operational-patterns.md](references/operational-patterns.md) - Platform engineering blueprints, CI/CD safety, SLOs, and reliability drills
109
110Each guide includes:
111- Checklists for completeness and safety
112- Common anti-patterns and remediations
113- Step-by-step patterns for safe rollout, rollback, and verification
114- Decision matrices (e.g., deployment, escalation, monitoring strategy)
115- Real-world examples and edge case handling
116
117---
118
119## Templates (Copy-Paste Ready)
120
121Production templates organized by tech stack:
122
123### AWS Cloud
124- [assets/aws/template-aws-ops.md](assets/aws/template-aws-ops.md) - AWS service operations and best practices
125- [assets/aws/template-aws-terraform.md](assets/aws/template-aws-terraform.md) - Terraform modules for AWS infrastructure
126- [assets/aws/template-cost-optimization.md](assets/aws/template-cost-optimization.md) - AWS cost optimization strategies
127
128### GCP Cloud
129- [assets/gcp/template-gcp-ops.md](assets/gcp/template-gcp-ops.md) - GCP service operations
130- [assets/gcp/template-gcp-terraform.md](assets/gcp/template-gcp-terraform.md) - Terraform modules for GCP
131
132### Azure Cloud
133- [assets/azure/template-azure-ops.md](assets/azure/template-azure-ops.md) - Azure service operations
134
135### Kubernetes
136- [assets/kubernetes/template-kubernetes-ops.md](assets/kubernetes/template-kubernetes-ops.md) - Day-to-day K8s operations
137- [assets/kubernetes/template-ha-dr.md](assets/kubernetes/template-ha-dr.md) - High availability and disaster recovery
138- [assets/kubernetes/template-platform-api.md](assets/kubernetes/template-platform-api.md) - Platform API patterns
139- [assets/kubernetes/template-k8s-deploy.yaml](assets/kubernetes/template-k8s-deploy.yaml) - Deployment manifests
140
141### Docker
142- [assets/docker/template-docker-ops.md](assets/docker/template-docker-ops.md) - Container build, security, and operations
143
144### Kafka
145- [assets/kafka/template-kafka-ops.md](assets/kafka/template-kafka-ops.md) - Kafka cluster operations and streaming
146
147### Terraform & IaC
148- [assets/terraform-iac/template-iac-terraform.md](assets/terraform-iac/template-iac-terraform.md) - Infrastructure as Code patterns
149- [assets/terraform-iac/template-module.md](assets/terraform-iac/template-module.md) - Reusable Terraform modules
150- [assets/terraform-iac/template-env-promotion.md](assets/terraform-iac/template-env-promotion.md) - Environment promotion strategies
151
152### CI/CD Pipelines
153- [assets/cicd-pipelines/template-ci-cd.md](assets/cicd-pipelines/template-ci-cd.md) - General CI/CD patterns
154- [assets/cicd-pipelines/template-github-actions.md](assets/cicd-pipelines/template-github-actions.md) - GitHub Actions workflows
155- [assets/cicd-pipelines/template-gitops.md](assets/cicd-pipelines/template-gitops.md) - GitOps deployment patterns
156- [assets/cicd-pipelines/template-release-safety.md](assets/cicd-pipelines/template-release-safety.md) - Safe release practices
157
158### Monitoring & Observability
159- [assets/monitoring-observability/template-slo.md](assets/monitoring-observability/template-slo.md) - Service level objectives
160- [assets/monitoring-observability/template-alert-rules.md](assets/monitoring-observability/template-alert-rules.md) - Alert configuration
161- [assets/monitoring-observability/template-observability-slo.md](assets/monitoring-observability/template-observability-slo.md) - Observability patterns
162- [assets/monitoring-observability/template-loadtest-perf.md](assets/monitoring-observability/template-loadtest-perf.md) - Load testing and performance
163
164### Incident Response
165- [assets/incident-response/template-postmortem.md](assets/incident-response/template-postmortem.md) - Incident postmortems
166- [assets/incident-response/template-runbook-starter.md](assets/incident-response/template-runbook-starter.md) - Runbook starter template
167- [assets/incident-response/template-incident-comm.md](assets/incident-response/template-incident-comm.md) - Incident communication
168- [assets/incident-response/template-incident-response.md](assets/incident-response/template-incident-response.md) - Incident response procedures
169
170### Security
171- [assets/security/template-security-hardening.md](assets/security/template-security-hardening.md) - Security hardening checklists
172
173---
174
175## Navigation
176
177**Resources**
178- [references/operational-patterns.md](references/operational-patterns.md)
179- [references/sre-incident-management.md](references/sre-incident-management.md)
180- [references/devops-best-practices.md](references/devops-best-practices.md)
181- [references/platform-engineering-patterns.md](references/platform-engineering-patterns.md)
182- [references/gitops-workflows.md](references/gitops-workflows.md)
183
184**Shared Utilities** (Centralized patterns — extract, don't duplicate)
185- [../software-clean-code-standard/utilities/config-validation.md](../software-clean-code-standard/utilities/config-validation.md) — Zod 3.24+, secrets management (Vault, 1Password, Doppler)
186- [../software-clean-code-standard/utilities/resilience-utilities.md](../software-clean-code-standard/utilities/resilience-utilities.md) — p-retry v6, circuit breaker, OTel spans
187- [../software-clean-code-standard/utilities/logging-utilities.md](../software-clean-code-standard/utilities/logging-utilities.md) — pino v9 + OpenTelemetry integration
188- [../software-clean-code-standard/utilities/observability-utilities.md](../software-clean-code-standard/utilities/observability-utilities.md) — OpenTelemetry SDK, tracing, metrics
189- [../software-clean-code-standard/utilities/testing-utilities.md](../software-clean-code-standard/utilities/testing-utilities.md) — Test factories, fixtures, mocks
190- [../software-clean-code-standard/references/clean-code-standard.md](../software-clean-code-standard/references/clean-code-standard.md) — Canonical clean code rules (`CC-*`) for citation
191
192**Templates**
193- [assets/incident-response/template-postmortem.md](assets/incident-response/template-postmortem.md)
194- [assets/incident-response/template-runbook-starter.md](assets/incident-response/template-runbook-starter.md)
195- [assets/incident-response/template-incident-comm.md](assets/incident-response/template-incident-comm.md)
196- [assets/incident-response/template-incident-response.md](assets/incident-response/template-incident-response.md)
197- [assets/docker/template-docker-ops.md](assets/docker/template-docker-ops.md)
198- [assets/security/template-security-hardening.md](assets/security/template-security-hardening.md)
199- [assets/azure/template-azure-ops.md](assets/azure/template-azure-ops.md)
200- [assets/gcp/template-gcp-terraform.md](assets/gcp/template-gcp-terraform.md)
201- [assets/gcp/template-gcp-ops.md](assets/gcp/template-gcp-ops.md)
202- [assets/cicd-pipelines/template-release-safety.md](assets/cicd-pipelines/template-release-safety.md)
203- [assets/cicd-pipelines/template-gitops.md](assets/cicd-pipelines/template-gitops.md)
204- [assets/cicd-pipelines/template-ci-cd.md](assets/cicd-pipelines/template-ci-cd.md)
205- [assets/cicd-pipelines/template-github-actions.md](assets/cicd-pipelines/template-github-actions.md)
206- [assets/kafka/template-kafka-ops.md](assets/kafka/template-kafka-ops.md)
207- [assets/aws/template-aws-terraform.md](assets/aws/template-aws-terraform.md)
208- [assets/aws/template-aws-ops.md](assets/aws/template-aws-ops.md)
209- [assets/aws/template-cost-optimization.md](assets/aws/template-cost-optimization.md)
210- [assets/monitoring-observability/template-slo.md](assets/monitoring-observability/template-slo.md)
211- [assets/monitoring-observability/template-loadtest-perf.md](assets/monitoring-observability/template-loadtest-perf.md)
212- [assets/monitoring-observability/template-alert-rules.md](assets/monitoring-observability/template-alert-rules.md)
213- [assets/monitoring-observability/template-observability-slo.md](assets/monitoring-observability/template-observability-slo.md)
214- [assets/kubernetes/template-k8s-deploy.yaml](assets/kubernetes/template-k8s-deploy.yaml)
215- [assets/kubernetes/template-platform-api.md](assets/kubernetes/template-platform-api.md)
216- [assets/kubernetes/template-kubernetes-ops.md](assets/kubernetes/template-kubernetes-ops.md)
217- [assets/kubernetes/template-ha-dr.md](assets/kubernetes/template-ha-dr.md)
218- [assets/terraform-iac/template-env-promotion.md](assets/terraform-iac/template-env-promotion.md)
219- [assets/terraform-iac/template-iac-terraform.md](assets/terraform-iac/template-iac-terraform.md)
220- [assets/terraform-iac/template-module.md](assets/terraform-iac/template-module.md)
221
222**Data**
223- [data/sources.json](data/sources.json) — Curated external references
224
225---
226
227## Related Skills
228
229**Operations & Infrastructure:**
230- [../qa-resilience/SKILL.md](../qa-resilience/SKILL.md) — Resilience, chaos engineering, and failure handling patterns
231- [../data-sql-optimization/SKILL.md](../data-sql-optimization/SKILL.md) — Database tuning, high availability, and migrations
232- [../qa-observability/SKILL.md](../qa-observability/SKILL.md) — Monitoring, tracing, profiling, and performance optimization
233- [../qa-debugging/SKILL.md](../qa-debugging/SKILL.md) — Production debugging, log analysis, and root cause investigation
234
235**Security & Compliance:**
236- [../software-security-appsec/SKILL.md](../software-security-appsec/SKILL.md) — Application-layer security patterns and OWASP best practices
237
238**Software Development:**
239- [../software-backend/SKILL.md](../software-backend/SKILL.md) — Service-level design and integration patterns
240- [../software-architecture-design/SKILL.md](../software-architecture-design/SKILL.md) — System design, scalability, and architectural patterns
241- [../dev-api-design/SKILL.md](../dev-api-design/SKILL.md) — RESTful API design and versioning
242- [../git-workflow/SKILL.md](../git-workflow/SKILL.md) — Git branching strategies and CI/CD integration
243
244**Optional: AI/Automation (Related Skills):**
245- [../ai-mlops/SKILL.md](../ai-mlops/SKILL.md) — ML model deployment, monitoring, and lifecycle management
246
247---
248
249## Cost Governance & Capacity Planning
250
251**[assets/cost-governance/template-cost-governance.md](assets/cost-governance/template-cost-governance.md)** — Production cost control for cloud infrastructure.
252
253### Key Sections
254
255- **Cost Governance Framework** — Tagging strategy, budget alerts, anomaly detection
256- **Cloud Cost Optimization** — Right-sizing, reserved capacity, storage tiering
257- **Kubernetes Cost Control** — Resource requests/limits, quotas, autoscaler config
258- **Capacity Planning** — Utilization baseline, growth projections, scaling triggers
259- **FinOps Practices** — Monthly review agenda, optimization workflow
260
261---
262
263## Do / Avoid
264
265### GOOD: Do
266
267- Tag all resources at creation time
268- Set budget alerts before hitting limits
269- Review right-sizing recommendations monthly
270- Use spot/preemptible for fault-tolerant workloads
271- Set Kubernetes resource requests on all pods
272- Enable cluster autoscaler with scale-down
273- Document capacity planning assumptions
274- Run postmortems after every incident
275
276### BAD: Avoid
277
278- Deploying without cost tags
279- Running dev resources 24/7
280- Over-provisioning "just in case"
281- Ignoring reserved capacity opportunities
282- Disabling scale-down to "avoid disruption"
283- Alert fatigue (too many low-priority alerts)
284- Snowflake infrastructure (manual, undocumented)
285- "Clickops" drift (changes outside IaC)
286
287---
288
289## Anti-Patterns
290
291| Anti-Pattern | Problem | Fix |
292|--------------|---------|-----|
293| **No tagging** | Can't attribute costs | Enforce tags in CI/CD |
294| **Dev runs 24/7** | 70% waste | Scheduled shutdown |
295| **Over-provisioned** | Paying for unused capacity | Monthly right-sizing |
296| **No reservations** | Paying on-demand premium | 60-70% coverage target |
297| **Alert fatigue** | Real issues missed | SLO-based alerting, tuned thresholds |
298| **Snowflake infra** | Undocumented, unreproducible | Everything in Terraform/IaC |
299| **No postmortems** | Same incidents repeat | Blameless postmortem for every SEV1/2 |
300
301---
302
303## Optional: AI/Automation (AIOps)
304
305> Note: AI can assist with analysis and triage, but infrastructure/cost/incident decisions require human approval and an audit trail (especially anything destructive or irreversible).
306
307### AIOps Capabilities (2026)
308
309**Self-Healing Systems:**
310- AI-powered anomaly detection to predict failures before they happen
311- Automated remediation flows that trigger rollbacks or config changes
312- Intelligent test selection and risk-based change scoring in CI/CD
313- Causal graph analysis for instant root cause identification
314
315**Automated Operations:**
316- Unused resource detection and notification
317- Right-sizing recommendation generation
318- Alert summarization and correlation (reduce noise by 90%+)
319- Runbook step suggestions and automated execution
320
321### AI-Assisted Analysis
322
323- Cost trend prediction and anomaly detection
324- Incident pattern identification across services
325- Post-mortem theme extraction
326- Capacity planning predictions
327
328### Platform Engineering + AI
329
330Platform teams increasingly embed AI capabilities directly into the platform:
331- Multi-agent orchestration for code generation, security validation, deployment
332- Intelligent defaults and guardrails that scale across teams
333
334### Bounded Claims
335
336- AI recommendations need validation before action
337- Automated deletions require approval workflow
338- Cost predictions are estimates, not guarantees
339- Runbook suggestions need SRE verification
340- Self-healing actions should have human-defined policies and audit trails
341
342---
343
344## Operational Deep Dives
345
346See [references/operational-patterns.md](references/operational-patterns.md) for:
347- Platform engineering blueprints and GitOps reconciliation checklists
348- DevSecOps CI/CD gates, SLO/SLI playbooks, and rollout verification steps
349- Observability patterns (eBPF), incident noise reduction, and reliability drills
350
351---
352
353## External Resources
354
355See [data/sources.json](data/sources.json) for curated sources organized by tech stack:
356- **Cloud Platforms**: AWS, GCP, Azure documentation and best practices
357- **Container Orchestration**: Kubernetes, Helm, Kustomize, Docker
358- **Infrastructure as Code**: Terraform, OpenTofu, Pulumi, CloudFormation, ARM templates
359- **CI/CD & GitOps**: GitHub Actions, GitLab CI, Jenkins, ArgoCD, FluxCD
360- **Streaming**: Apache Kafka, Confluent, Strimzi
361- **Monitoring**: Prometheus, Grafana, Datadog, OpenTelemetry, Jaeger, Cilium/Hubble, Tetragon
362- **SRE**: Google SRE books, incident response patterns
363- **Security**: OWASP DevSecOps, CIS Benchmarks, Trivy, Falco
364- **Tools**: kubectl, k9s, stern, Cosign, Syft, Terragrunt
365
366---
367
368*Use this skill as a hub for safe, modern, and production-grade DevOps patterns. All templates and patterns are operational—no theory or book summaries.*
369
370---
371
372## Trend Awareness Protocol
373
374When users ask recommendation questions about DevOps, platform engineering, or cloud infrastructure, validate time-sensitive details (versions, deprecations, licensing, major releases) against primary sources.
375
376### Trigger Conditions
377
378- "What's the best tool for [Kubernetes/IaC/CI-CD/monitoring]?"
379- "What should I use for [container orchestration/GitOps/observability]?"
380- "What's the latest in DevOps/platform engineering?"
381- "Current best practices for [Terraform/ArgoCD/Prometheus]?"
382- "Is [tool/approach] still relevant in 2026?"
383- "[Kubernetes] vs [alternative]?" or "[ArgoCD] vs [FluxCD]?"
384- "Best cloud provider for [use case]?"
385- "What orchestration/monitoring tool should I use?"
386
387### Minimum Verification (Preferred Order)
388
3891. Check the official docs + release notes linked in [data/sources.json](data/sources.json) for the specific tools you recommend.
3902. If internet access is available, confirm recent releases, breaking changes, and deprecations from those release pages.
3913. If internet access is not available, state that versions may have changed and focus on stable selection criteria (operational fit, ecosystem, maturity, team skills, compliance).
392
393### What to Report
394
395After searching, provide:
396
397- **Current landscape**: What tools/approaches are popular NOW (not 6 months ago)
398- **Emerging trends**: New tools, patterns, or practices gaining traction
399- **Deprecated/declining**: Tools/approaches losing relevance or support
400- **Recommendation**: Based on fresh data, not just static knowledge
401
402### Example Topics (verify with fresh search)
403
404- Kubernetes versions and ecosystem tools (1.33+, Cilium, Gateway API)
405- Infrastructure as Code (Terraform, OpenTofu, Pulumi, CDK)
406- GitOps platforms (ArgoCD, FluxCD, Codefresh)
407- Observability stacks (OpenTelemetry, Grafana stack, Datadog)
408- Platform engineering tools (Backstage, Port, Kratix)
409- CI/CD platforms (GitHub Actions, GitLab CI, Dagger)
410- Cloud-native security (Falco, Trivy, policy engines)