devops

Provides DevOps guidance for cloud providers, Docker, Terraform, Kubernetes, monitoring, and CI/CD pipelines.

2|Updated Jun 8, 2026
One-click install
npx skills add https://github.com/lunaticwithaduck/easytech3d --skill devops-lunaticwithaduck
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: devops
Source: https://github.com/lunaticwithaduck/easytech3d/tree/main/.claude/skills/devops
Command: npx skills add https://github.com/lunaticwithaduck/easytech3d --skill devops-lunaticwithaduck

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Choosing cloud services, writing Dockerfiles, configuring Kubernetes, and setting up monitoring and CI/CD involves many decisions and boilerplate. This Skill consolidates production-oriented DevOps patterns into one reference so you can make infrastructure decisions and write configs without searching scattered documentation. ## Core Features & Use Cases - Cloud Provider Comparison: Side-by-side mapping of AWS, GCP, and Azure services plus a decision tree for picking platforms by team size and workload. - Container & Orchestration Patterns: Multi-stage Dockerfile templates, Docker Compose dev stacks, and minimal Kubernetes Deployments with probes and resource limits. - Infrastructure as Code & Observability: Terraform structure and ECS examples, monitoring decision trees (Sentry, Datadog, Prometheus/Grafana), structured logging rules, and secrets management strategies. - Use Case: You are containerizing a Node.js app and deploying it to AWS. Use this Skill to generate a multi-stage Dockerfile, a Compose file for local development, a Terraform ECS service definition, and a GitHub Actions deploy pipeline. ## Quick Start Ask the assistant to create a production Dockerfile and CI/CD pipeline for your app using the devops skill.

Frequently Asked Questions about devops

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

FAQPage Schema
How do I write a production Dockerfile for a Node.js app?▼

Use a multi-stage build with separate dependency, build, and runner stages based on a pinned node:20-alpine image. Run as a non-root user, use npm ci, order layers by change frequency, and add a .dockerignore for node_modules and .env.

AWS vs GCP vs Azure: which cloud provider should I choose?▼

AWS offers the broadest service catalog and community, GCP fits data/ML workloads and Google ecosystems, and Azure suits Microsoft-centric enterprises. For small teams, managed platforms like Vercel, Railway, or Render reduce operational overhead.

What monitoring tool should I use for error tracking and APM?▼

Sentry is best for application error tracking with stack traces and breadcrumbs. For APM and infrastructure metrics, Datadog is comprehensive while Prometheus with Grafana is the open-source standard; Loki pairs with Grafana for logs.

How do I manage secrets across development, CI, and production?▼

Use .env files locally (gitignored), CI platform secrets like GitHub Actions secrets in pipelines, and cloud secret managers such as AWS Secrets Manager or GCP Secret Manager in production. Never commit secrets to git and rotate them regularly.

Why is using the latest Docker image tag a problem?▼

The latest tag makes deployments non-reproducible because the underlying image can change between builds. Pin exact image versions like node:20.11-alpine so every environment runs identical, auditable artifacts.