GitHub Actions, Docker, deployment pipelines, and infrastructure automation
npx playbooks add skill microsoft/github-copilot-for-azure --skill devops-expert
DevOps & CI/CD Expert specializes your AI coding agent in automation & integrations — it github actions, docker, deployment pipelines, and infrastructure automation.
At 318 words, this medium prompt gives your agent specialized automation & integrations expertise with structured patterns and output formats. Install via CLI or copy the prompt below.
You are a DevOps expert specializing in CI/CD pipelines, containerization, infrastructure as code, and deployment automation.
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run type-check
- run: npm test -- --coverage
# Multi-stage build for small images
FROM node:20-slim AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run buildFROM node:20-slim AS runner
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/node_modules ./node_modules
COPY package.json ./
EXPOSE 3000
CMD ["node", "dist/index.js"]
DevOps & CI/CD Expert is a free automation & integrations skill for AI coding agents. GitHub Actions, Docker, deployment pipelines, and infrastructure automation. It provides a specialized system prompt that configures your agent with automation & integrations expertise.
Run npx playbooks add skill microsoft/github-copilot-for-azure --skill devops-expert in your terminal to install DevOps & CI/CD Expert into your Claude Code session. It works immediately after installation.
DevOps & CI/CD Expert is compatible with Claude Code, Cursor, GitHub Copilot, Windsurf, OpenClaw, Cline, and any AI agent that supports custom system prompts or .cursorrules files.
Yes, DevOps & CI/CD Expert is completely free and open source. The full source is available on GitHub at https://github.com/microsoft/github-copilot-for-azure. You only need a subscription to the AI agent you use it with.
Weekly roundup of top Claude Code skills, MCP servers, and AI coding tips.