devops

Advise on cloud architecture, CI/CD, Kubernetes, IaC, security, and SRE practices.

39|4|Updated Apr 13, 2026
One-click install
npx skills add https://github.com/firatcand/founder-skills --skill devops-firatcand
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: devops
Source: https://github.com/firatcand/founder-skills/tree/main/devops
Command: npx skills add https://github.com/firatcand/founder-skills --skill devops-firatcand

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Engineering teams face recurring infrastructure decisions — multi-region design, deployment strategies, Kubernetes vs ECS, Terraform vs Pulumi, alert fatigue, incident response — without a consistent source of opinionated, practitioner-grounded guidance. This Skill provides decision frameworks, failure patterns, and corrective heuristics across eight DevOps domains. ## Core Features & Use Cases - Eight domain knowledge bases: Cloud architecture, CI/CD pipelines, security & compliance, observability, incident & reliability, container orchestration, infrastructure as code, and developer experience. - Decision heuristics: Quick-reference rules for multi-region adoption, service mesh timing, IaC tool selection, autoscaling (HPA/VPA/KEDA), and deployment strategies (blue-green, canary, rolling). - Artifact generation: Produces annotated runbooks, pipeline configs, Terraform modules, and Kubernetes manifests with explanations of why each decision was made. - Use Case: Ask whether your startup should go multi-region, and receive a requirement-based decision rule (RTO, data sovereignty, latency) plus the default recommendation of three-AZ single-region with failover runbooks. ## Quick Start Ask the agent to review your deployment pipeline and recommend a deployment strategy with DORA benchmark targets.

Frequently Asked Questions about devops

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

FAQPage Schema
How do I choose between Kubernetes and ECS for container orchestration?▼

Choose ECS/Fargate when running fewer than 20 services on AWS without Kubernetes expertise. Choose managed Kubernetes (EKS, GKE, AKS) when you need multi-cloud portability and have a platform team. EKS on Fargate removes node management on AWS.

Terraform vs Pulumi vs AWS CDK — which IaC tool should I use?▼

Use Terraform/OpenTofu for multi-cloud or compliance-heavy environments, Pulumi when you want general-purpose languages for complex logic, and AWS CDK for AWS-only stacks needing rich L2/L3 constructs. Always use remote state with locking and pin module versions.

When should a startup adopt multi-region architecture?▼

Adopt multi-region only for contractual RTO under 30 minutes, data sovereignty requirements, or sub-50ms global latency needs. The default for most startups is three availability zones in one region with documented failover runbooks.

How do I reduce alert fatigue in production monitoring?▼

Use SLO-based alerting on error budget burn rate instead of infrastructure thresholds. Every alert must require immediate human action; otherwise delete it, ticket it, or move it to a dashboard. Target fewer than two pages per shift per day.

What are the DORA elite performance benchmarks?▼

Elite performers deploy multiple times per day, achieve lead time under one hour, restore service in under one hour, and maintain a change failure rate of 0-15%. Track team-level trends over rolling 90-day windows rather than snapshots.

When should I not adopt a service mesh like Istio?▼

Avoid a service mesh when you have fewer than 15 services, no dedicated platform team, or when API gateway mTLS plus cloud-native private connectivity suffices. Istio adds roughly 20-30% overhead and significant operational complexity.