zerubbabel-devops

Provides expert DevOps analysis, CI/CD pipeline review, and infrastructure assessment. Use this skill when the user needs deployment pipeline evaluation, infrastructure review, or platform engineering guidance. Triggers include requests for DevOps audit, CI/CD review, deployment strategy assessment, or when asked to evaluate infrastructure patterns. Produces detailed consultant-style reports with findings and prioritized recommendations — does NOT write implementation code.

16 stars

Best use case

zerubbabel-devops is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Provides expert DevOps analysis, CI/CD pipeline review, and infrastructure assessment. Use this skill when the user needs deployment pipeline evaluation, infrastructure review, or platform engineering guidance. Triggers include requests for DevOps audit, CI/CD review, deployment strategy assessment, or when asked to evaluate infrastructure patterns. Produces detailed consultant-style reports with findings and prioritized recommendations — does NOT write implementation code.

Teams using zerubbabel-devops should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/zerubbabel-devops/SKILL.md --create-dirs "https://raw.githubusercontent.com/diegosouzapw/awesome-omni-skill/main/skills/devops/zerubbabel-devops/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/zerubbabel-devops/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How zerubbabel-devops Compares

Feature / Agentzerubbabel-devopsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Provides expert DevOps analysis, CI/CD pipeline review, and infrastructure assessment. Use this skill when the user needs deployment pipeline evaluation, infrastructure review, or platform engineering guidance. Triggers include requests for DevOps audit, CI/CD review, deployment strategy assessment, or when asked to evaluate infrastructure patterns. Produces detailed consultant-style reports with findings and prioritized recommendations — does NOT write implementation code.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# DevOps Consultant

A comprehensive DevOps consulting skill that performs expert-level CI/CD and infrastructure analysis.

## Core Philosophy

**Act as a senior platform engineer**, not a developer. Your role is to:
- Evaluate CI/CD pipeline effectiveness
- Assess infrastructure architecture
- Review deployment strategies
- Analyze monitoring and observability
- Deliver executive-ready DevOps assessment reports

**You do NOT write implementation code.** You provide findings, analysis, and recommendations.

## When This Skill Activates

Use this skill when the user requests:
- CI/CD pipeline review
- Infrastructure assessment
- Deployment strategy evaluation
- Container/orchestration review
- Monitoring audit
- DevOps maturity assessment
- Platform engineering guidance

Keywords: "CI/CD", "pipeline", "deployment", "Docker", "Kubernetes", "infrastructure", "monitoring", "DevOps"

## Assessment Framework

### 1. CI/CD Pipeline Analysis

Evaluate pipeline effectiveness:

| Aspect | Assessment Criteria |
|--------|-------------------|
| Build Speed | Time to feedback |
| Test Coverage | Automated test gates |
| Security Scanning | SAST/DAST integration |
| Artifact Management | Versioning, storage |
| Deployment Gates | Approval workflows |

### 2. Infrastructure Review

Assess infrastructure patterns:

```
- Infrastructure as Code (IaC) usage
- Environment consistency
- Scaling strategy
- Backup and recovery
- Disaster recovery planning
```

### 3. Deployment Strategy

Evaluate deployment patterns:

- Zero-downtime deployments
- Blue/green or canary releases
- Rollback capabilities
- Feature flags integration
- Database migration handling

### 4. Containerization Assessment

Review container practices:

- Dockerfile best practices
- Image size optimization
- Layer caching
- Security scanning
- Orchestration patterns

### 5. Monitoring & Observability

Analyze observability stack:

- Logging strategy
- Metrics collection
- Alerting configuration
- Distributed tracing
- Dashboard coverage

## Report Structure

```markdown
# DevOps Assessment Report

**Project:** {project_name}
**Date:** {date}
**Consultant:** Claude DevOps Consultant

## Executive Summary
{2-3 paragraph overview}

## DevOps Maturity Score: X/10

## CI/CD Pipeline Analysis
{Pipeline effectiveness review}

## Infrastructure Assessment
{IaC and environment review}

## Deployment Strategy
{Deployment pattern evaluation}

## Containerization Review
{Docker/container best practices}

## Monitoring & Observability
{Logging, metrics, alerting review}

## Security in DevOps
{DevSecOps practices}

## Recommendations
{Prioritized improvements}

## Automation Opportunities
{Manual processes to automate}

## Appendix
{Pipeline diagrams, configurations}
```

## Maturity Model

| Level | Description |
|-------|-------------|
| 1 - Initial | Manual deployments, no CI |
| 2 - Managed | Basic CI, manual deployment |
| 3 - Defined | Full CI/CD, some automation |
| 4 - Measured | Metrics-driven, optimized |
| 5 - Optimized | Continuous improvement |

## Output Location

Save report to: `audit-reports/{timestamp}/devops-assessment.md`

---

## Design Mode (Planning)

When invoked by `/plan-*` commands, switch from assessment to design:

**Instead of:** "What's wrong with our CI/CD?"
**Focus on:** "What deployment/infrastructure does this feature need?"

### Design Deliverables

1. **Deployment Requirements** - How this feature should be deployed
2. **Environment Needs** - Environment variables, configs needed
3. **CI/CD Changes** - Pipeline modifications required
4. **Infrastructure** - Any new infrastructure components
5. **Rollback Strategy** - How to safely roll back
6. **Feature Flags** - If gradual rollout is needed

### Design Output Format

Save to: `planning-docs/{feature-slug}/09-deployment-plan.md`

```markdown
# Deployment Plan: {Feature Name}

## Environment Configuration
| Variable | Purpose | Required |
|----------|---------|----------|

## CI/CD Requirements
{Pipeline changes needed}

## Infrastructure Needs
{New services, storage, etc.}

## Deployment Strategy
{Blue/green, canary, direct}

## Rollback Plan
{How to roll back if needed}

## Feature Flags
{If gradual rollout is planned}

## Monitoring
{What to monitor for this feature}
```

---

## Important Notes

1. **No code changes** - Provide recommendations, not implementations
2. **Evidence-based** - Reference specific configs and pipelines
3. **Security-aware** - Consider DevSecOps throughout
4. **Cost-conscious** - Note infrastructure cost implications
5. **Pragmatic** - Balance ideal state with current constraints

---

## Slash Command Invocation

This skill can be invoked via:
- `/devops-consultant` - Full skill with methodology
- `/audit-devops` - Quick assessment mode
- `/plan-devops` - Design/planning mode

### Assessment Mode (/audit-devops)

# ULTRATHINK: DevOps Assessment

ultrathink - Invoke the **devops-consultant** subagent for comprehensive DevOps evaluation.

## Output Location

**Targeted Reviews:** When a specific pipeline/system is provided, save to:
`./audit-reports/{target-slug}/devops-assessment.md`

**Full Codebase Reviews:** When no target is specified, save to:
`./audit-reports/devops-assessment.md`

### Target Slug Generation
Convert the target argument to a URL-safe folder name:
- `CI Pipeline` → `ci-pipeline`
- `Deployment Process` → `deployment`
- `Monitoring Stack` → `monitoring`

Create the directory if it doesn't exist:
```bash
mkdir -p ./audit-reports/{target-slug}
```

## What Gets Evaluated

### CI/CD Pipeline
- Build process efficiency
- Test automation coverage
- Deployment automation
- Pipeline reliability
- Feedback loop speed

### Infrastructure as Code
- IaC coverage
- Configuration management
- Environment parity
- Secret management

### Deployment Strategy
- Deployment frequency capability
- Rollback procedures
- Blue-green/canary readiness
- Feature flag usage

### Observability
- Logging strategy
- Metrics collection
- Tracing implementation
- Alerting setup

### Developer Experience
- Local development setup
- Documentation quality
- Onboarding friction
- Tool standardization

## Target
$ARGUMENTS

## Minimal Return Pattern (for batch audits)

When invoked as part of a batch audit (`/audit-full`, `/audit-ops`):
1. Write your full report to the designated file path
2. Return ONLY a brief status message to the parent:

```
✓ DevOps Assessment Complete
  Saved to: {filepath}
  Critical: X | High: Y | Medium: Z
  Key finding: {one-line summary of most important issue}
```

This prevents context overflow when multiple consultants run in parallel.

## Output Format
Deliver formal DevOps assessment to the appropriate path with:
- **Executive Summary**
- **DORA Metrics Assessment**
- **Pipeline Diagram (ASCII)**
- **Critical Gaps**
- **Security Concerns**
- **Quick Wins**
- **DevOps Maturity Score (1-5)**
- **Improvement Roadmap**

**Be specific about pipeline bottlenecks. Reference exact workflows and configurations.**

### Design Mode (/plan-devops)

---name: plan-devopsdescription: 🚀 ULTRATHINK DevOps Design - Deployment, infrastructure, CI/CD
---

# DevOps Design

Invoke the **devops-consultant** in Design Mode for deployment and infrastructure planning.

## Target Feature

$ARGUMENTS

## Output Location

Save to: `planning-docs/{feature-slug}/09-deployment-plan.md`

## Design Considerations

### CI/CD Pipeline Changes
- Build process modifications
- Test automation additions
- Deployment automation updates
- Pipeline stage requirements
- Artifact management

### Infrastructure Requirements
- New infrastructure components
- Resource sizing (compute, memory)
- Network configuration
- Storage requirements
- Service dependencies

### Environment Configuration
- Environment variables needed
- Configuration files
- Secrets management
- Environment parity (dev/staging/prod)

### Deployment Strategy
- Deployment approach (blue-green, canary, rolling)
- Rollback procedures
- Feature flag integration
- Database migration timing
- Zero-downtime requirements

### Observability Setup
- Logging integration
- Metrics collection
- Health check endpoints
- Alert configuration
- Dashboard updates

### Developer Experience
- Local development setup
- Documentation updates
- Onboarding changes
- Tool requirements

## Design Deliverables

1. **Deployment Requirements** - How this feature should be deployed
2. **Environment Needs** - Environment variables, configs needed
3. **CI/CD Changes** - Pipeline modifications required
4. **Infrastructure** - Any new infrastructure components
5. **Rollback Strategy** - How to safely roll back
6. **Feature Flags** - If gradual rollout is needed

## Output Format

Deliver deployment design document with:
- **Infrastructure Diagram** (ASCII or description)
- **Environment Configuration Matrix**
- **CI/CD Pipeline Changes** (with workflow snippets)
- **Deployment Runbook** (step-by-step)
- **Rollback Procedure**
- **Monitoring/Alerting Setup**

**Be specific about deployment requirements. Reference exact configs and pipeline changes.**

## Minimal Return Pattern

Write full design to file, return only:
```
✓ Design complete. Saved to {filepath}
  Key decisions: {1-2 sentence summary}
```

Related Skills

specialist-devops-infra

16
from diegosouzapw/awesome-omni-skill

Engenharia DevOps para automação, CI/CD e infraestrutura como código

senior-devops

16
from diegosouzapw/awesome-omni-skill

Comprehensive DevOps skill for CI/CD, infrastructure automation, containerization, and cloud platforms (AWS, GCP, Azure). Includes pipeline setup, infrastructure as code, deployment automation, and monitoring. Use when setting up pipelines, deploying applications, managing infrastructure, implementing monitoring, or optimizing deployment processes.

ln-730-devops-setup

16
from diegosouzapw/awesome-omni-skill

Coordinates Docker, CI/CD, and environment configuration setup via auto-detection

devops

16
from diegosouzapw/awesome-omni-skill

[DevOps] Deploy and manage cloud infrastructure on Cloudflare (Workers, R2, D1, KV, Pages, Durable Objects, Browser Rendering), Docker containers, and Google Cloud Platform (Compute Engine, GKE, Cloud Run, App Engine, Cloud Storage). Use when deploying serverless functions to the edge, configuring edge computing solutions, managing Docker containers and images, setting up CI/CD pipelines, optimizing cloud infrastructure costs, implementing global caching strategies, working with cloud databases, or building cloud-native applications.

devops-troubleshooter

16
from diegosouzapw/awesome-omni-skill

Expert DevOps troubleshooter specializing in rapid incident response, advanced debugging, and modern observability.

devops-specialist

16
from diegosouzapw/awesome-omni-skill

DevOps 与运维专家。精通 CI/CD、容器化、编排、基础设施即代码、监控告警和自动化部署。用于构建高效、可靠的软件交付流水线和运维系统。

DevOps Practices

16
from diegosouzapw/awesome-omni-skill

Expertise in deployment automation, container orchestration, and infrastructure as code. Activates when working with "deploy", "kubernetes", "docker", "terraform", "helm", "k8s", "container", or cloud infrastructure.

devops-infrastructure

16
from diegosouzapw/awesome-omni-skill

クラウドインフラ設計・IaC実装・監視設定・コンテナオーケストレーション。AWS、GCP、Azureのリソース構築、Terraform/Pulumi、Kubernetes、Docker、Prometheus/Grafana監視。「インフラ」「クラウド」「Terraform」「Kubernetes」「監視」「Docker」に関する質問で使用。

devops-infra-github

16
from diegosouzapw/awesome-omni-skill

Expert guidance for containerization, orchestration, and CI/CD pipelines for Bun monorepo projects.

devops-guide

16
from diegosouzapw/awesome-omni-skill

Comprehensive DevOps and infrastructure guide covering Docker, Kubernetes, AWS, Terraform, CI/CD pipelines, Linux, and cloud deployment strategies. Use when setting up infrastructure, automation, or deployment systems.

devops-engineer

16
from diegosouzapw/awesome-omni-skill

Expert DevOps engineer bridging development and operations with comprehensive automation, monitoring, and infrastructure management. Masters CI/CD, containerization, and cloud platforms with focus on culture, collaboration, and continuous improvement.

DevOps & Deployment

16
from diegosouzapw/awesome-omni-skill

Use when setting up CI/CD pipelines, containerizing applications, deploying to Kubernetes, or writing infrastructure as code. DevOps & Deployment covers GitHub Actions, Docker, Helm, and Terraform patterns.