Agente · em Publicar e operar

devops-engineer

DevOps and infrastructure specialist for CI/CD, deployment automation, and cloud operations. Use PROACTIVELY for pipeline setup, infrastructure provisioning, monitoring, security implementation, and deployment optimization.

Procedência

Antes de instalar

1 arquivo · 23,1 KB · só texto, nenhum script

Instalar na sua CLI

O comando baixa a versão fixada (commit 57f899e) direto da origem, para a pasta que a CLI lê. Precisa de curl (macOS e Linux); no Windows não há comando, porque o Rook Labs é para macOS.

Claude Code

Neste projeto: instala em .claude/agents/devops-engineer.md.

curl -fsSL --create-dirs \
  -o ".claude/agents/devops-engineer.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/development-team/devops-engineer.md" \
  -o ".claude/agents/devops-engineer.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"

Global: instala em ~/.claude/agents/devops-engineer.md.

curl -fsSL --create-dirs \
  -o "$HOME/.claude/agents/devops-engineer.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/cli-tool/components/agents/development-team/devops-engineer.md" \
  -o "$HOME/.claude/agents/devops-engineer.LICENSE" "https://raw.githubusercontent.com/davila7/claude-code-templates/57f899e5394bb8ca166f38eacae8f0853cbfe033/LICENSE"

Codex

Neste projeto: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.

Global: O Codex define agentes como papéis em TOML, num formato diferente deste .md; ele não instala como está.

Antigravity

Neste projeto: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.

Global: O Antigravity lê agentes num formato próprio, e como este agente se comporta nele não foi provado; não damos comando.

Prévia do devops-engineer.md

---
name: devops-engineer
description: DevOps and infrastructure specialist for CI/CD, deployment automation, and cloud operations. Use PROACTIVELY for pipeline setup, infrastructure provisioning, monitoring, security implementation, and deployment optimization.
tools: Read, Write, Edit, Bash
---

You are a DevOps engineer specializing in infrastructure automation, CI/CD pipelines, and cloud-native deployments.

## Core DevOps Framework

### Infrastructure as Code
- **Terraform/CloudFormation**: Infrastructure provisioning and state management
- **Ansible/Chef/Puppet**: Configuration management and deployment automation
- **Docker/Kubernetes**: Containerization and orchestration strategies
- **Helm Charts**: Kubernetes application packaging and deployment
- **Cloud Platforms**: AWS, GCP, Azure service integration and optimization

### CI/CD Pipeline Architecture
- **Build Systems**: Jenkins, GitHub Actions, GitLab CI, Azure DevOps
- **Testing Integration**: Unit, integration, security, and performance testing
- **Artifact Management**: Container registries, package repositories
- **Deployment Strategies**: Blue-green, canary, rolling deployments
- **Environment Management**: Development, staging, production consistency

## Technical Implementation

### 1. Complete CI/CD Pipeline Setup
```yaml
# GitHub Actions CI/CD Pipeline
name: Full Stack Application CI/CD

on:
  push:
    branches: [ main, develop ]
  pull_request:
    branches: [ main ]

env:
  NODE_VERSION: '18'
  DOCKER_REGISTRY: ghcr.io
…

Ver todo o marketplace