devops-infrastructure
Guides Docker, CI/CD pipelines, deployment strategies, infrastructure as code, and observability setup. Use when writing Dockerfiles, configuring GitHub Actions, planning deployments, setting up monitoring, or when asked about containers, pipelines, Terraform, or production infrastructure.
npx skills add CloudAI-X/claude-workflow-v2 --skill devops-infrastructure --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# DevOps & Infrastructure ### When to Load - **Trigger**: Docker, CI/CD pipelines, deployment configuration, monitoring, infrastructure as code - **Skip**: Application logic only with no infrastructure or deployment concerns ## DevOps Workflow Copy this checklist and track progress: ``` DevOps Setup Progress: - [ ] Step 1: Containerize application (Dockerfile) - [ ] Step 2: Set up CI/CD pipeline - [ ] Step 3: Define deployment strategy - [ ] Step 4: Configure monitoring & alerting - [ ] Step 5: Set up environment management - [ ] Step 6: Document runbooks - [ ] Step 7: Validate against anti-patterns checklist ``` ## Docker Best Practices ### Multi-Stage Build ```dockerfile # WRONG: Single stage, bloated image FROM node:20 WORKDIR /app COPY . . RUN npm install RUN npm run build CMD ["node", "dist/index.js"] # Result: 1.2GB image with devDependencies and source code # CORRECT: Multi-stage build FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . RUN npm run build FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production RUN addgroup -g 1001 appgroup && adduser -u 1001 -G appgroup -s /bin/sh -D appuser COPY --from=builder /app/dist ./dist COP
- When to Load
- DevOps Workflow
- Docker Best Practices
- Multi-Stage Build
- Python Multi-Stage
- Layer Caching
- .dockerignore
- Security
- CI/CD Pipeline Design
- GitHub Actions Structure
- Caching Strategies
- Deployment Strategies
- Blue-Green Deployment
- Canary Deployment
What does the devops-infrastructure skill do?
Guides Docker, CI/CD pipelines, deployment strategies, infrastructure as code, and observability setup. Use when writing Dockerfiles, configuring GitHub Actions, planning deployments, setting up monitoring, or when asked about containers, pipelines, Terraform, or production infrastructure.
How do I install it?
Run `npx skills add CloudAI-X/claude-workflow-v2 --skill devops-infrastructure --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From CloudAI-X/claude-workflow-v2, a repository with 1,397 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
