agentsclimarketplace

Devops automation

Skill henriquescastilho/my-claude/.claude/skills/devops-automation

Setup público e sanitizado de um Claude Code full-stack: 8 sub-agents com roteamento por modelo, 792 skills, hooks de segurança, MCP servers e metodologia opinativa. Desenhado para um agente de IA se auto-configurar.

Install
npx -y skills add henriquescastilho/my-claude --skill devops-automation

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Automacao de CI/CD, infraestrutura como codigo, containers, monitoramento. Usar automaticamente quando o contexto envolve pipelines, deploy, Docker, Kubernetes, GitHub Actions, ou infraestrutura.

SKILL.md

1.2 KB, as published. Nobody here has run it

DevOps e Automacao -- Padrao DME

Capacidades

  • CI/CD: GitHub Actions (principal), GitLab CI
  • Infraestrutura: Docker, Docker Compose
  • Deploy: Railway, GCP Cloud Run, Vercel
  • Monitoramento: logs estruturados, health checks
  • Seguranca: scanning de dependencias, SAST basico

Checklist de CI/CD local (GitHub Actions esgotado)

  1. Lint + type-check antes de commit
  2. Build local antes de push
  3. Testes automatizados antes de merge
  4. Security scan de dependencias

Dockerfile padrao

FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
RUN npm run build

FROM node:20-alpine
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/node_modules ./node_modules
EXPOSE 3000
CMD ["node", "dist/index.js"]

Regras DME

  • Sempre multi-stage build pra imagens Docker
  • Nunca rodar como root no container
  • Health check endpoint obrigatorio (/health)
  • Logs em JSON estruturado
  • Secrets via env vars, nunca no Dockerfile

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.