Agent skill · DevOps & Cloud

devops-deploy

DevOps e deploy de aplicacoes — Docker, CI/CD com GitHub Actions, AWS Lambda, SAM, Terraform, infraestrutura como codigo e monitoramento.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill devops-deploy --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Declared author: renat
Path: skills/devops-deploy/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# DEVOPS-DEPLOY — Da Ideia para Producao ## Overview DevOps e deploy de aplicacoes — Docker, CI/CD com GitHub Actions, AWS Lambda, SAM, Terraform, infraestrutura como codigo e monitoramento. Ativar para: dockerizar aplicacao, configurar pipeline CI/CD, deploy na AWS, Lambda, ECS, configurar GitHub Actions, Terraform, rollback, blue-green deploy, health checks, alertas. ## When to Use This Skill - When you need specialized assistance with this domain ## Do Not Use This Skill When - The task is unrelated to devops deploy - A simpler, more specific tool can handle the request - The user needs general-purpose assistance without domain expertise ## How It Works > "Move fast and don't break things." — Engenharia de elite nao e lenta. > E rapida e confiavel ao mesmo tempo. --- ## Dockerfile Otimizado (Python) ```dockerfile FROM python:3.11-slim AS builder WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir --user -r requirements.txt FROM python:3.11-slim WORKDIR /app COPY --from=builder /root/.local /root/.local COPY . . ENV PATH=/root/.local/bin:$PATH ENV PYTHONUNBUFFERED=1 EXPOSE 8000 HEALTHCHECK --interval=30s --timeout=3s CMD curl -f http://localhost:8000/health || exi

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. Do Not Use This Skill When
  4. How It Works
  5. Dockerfile Otimizado (Python)
  6. Docker Compose (Dev Local)
  7. Sam Template (Serverless)
  8. Deploy Commands
  9. .Github/Workflows/Deploy.Yml
  10. 5. Checklist De Producao
  11. 6. Comandos
  12. Best Practices
  13. Common Pitfalls
  14. Limitations
Commands it runs
sam build
sam deploy --guided  # primeira vez
sam deploy           # deploys seguintes
sam deploy --no-confirm-changeset --no-fail-on-empty-changeset
sam logs -n AuriFunction --tail
sam delete
More from agentic-awesome-skills
All skills →
About this skill
What does the devops-deploy skill do?

DevOps e deploy de aplicacoes — Docker, CI/CD com GitHub Actions, AWS Lambda, SAM, Terraform, infraestrutura como codigo e monitoramento.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill devops-deploy --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 sickn33/agentic-awesome-skills, a repository with 44,414 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.

Keep going