devops-expert

Diagnose and resolve CI/CD, container, infrastructure, monitoring, and security issues.

3|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/trudyan141/my-antigravity-agents-kit --skill devops-expert-trudyan141
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: devops-expert
Source: https://github.com/trudyan141/my-antigravity-agents-kit/tree/main/templates/.agent/skills/devops-expert
Command: npx skills add https://github.com/trudyan141/my-antigravity-agents-kit --skill devops-expert-trudyan141

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? DevOps work spans many tools—CI/CD pipelines, Docker, Kubernetes, Terraform, monitoring stacks—and troubleshooting failures across them is time-consuming. This Skill provides structured diagnosis patterns, error-to-solution mappings, and production-ready configuration examples for the full infrastructure lifecycle. ## Core Features & Use Cases - Pipeline & Container Troubleshooting: Maps common errors (ImagePullBackOff, OOMKilled, pipeline timeouts, state lock failures) to immediate, improved, and complete fixes. - Infrastructure as Code Guidance: Provides Terraform module patterns, state management, and validation workflows following current best practices. - Deployment Strategies: Includes blue-green, canary, and rolling update configurations with decision trees for choosing the right approach. - Use Case: A Kubernetes pod keeps crash-looping in production. Invoke this Skill to get diagnostic commands, identify the root cause from the error pattern, and apply a properly configured deployment with resource limits and health probes. ## Quick Start Use the devops-expert skill to diagnose why my GitHub Actions build keeps failing and fix the pipeline configuration.

Frequently Asked Questions about devops-expert

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix a Kubernetes CrashLoopBackOff error?

Start with kubectl describe pod and kubectl logs --previous to identify why the container exits. Common causes include missing dependencies, failed health checks, or insufficient memory limits, each with specific configuration fixes.

How to speed up a slow GitHub Actions pipeline?

Enable dependency caching with actions/setup-node, run jobs in parallel using matrix builds, and add timeouts to prevent hanging steps. For builds over 10 minutes, also consider incremental builds and smaller runner images.

Which deployment strategy should I use for zero downtime?

Use blue-green deployment when you can afford double resources and need instant rollback. Choose canary releases for high-risk changes needing gradual validation, and rolling updates for low-risk changes with fast rollback.

Does this cover Terraform state lock errors?

Yes, it addresses state lock failures with terraform force-unlock for stuck locks, plus remote backend configuration using S3 with DynamoDB locking to prevent concurrent operation conflicts.

When should I use a specialized expert instead of devops-expert?

For deep Docker image optimization use docker-expert, and for complex GitHub Actions matrix workflows use github-actions-expert. The devops-expert handles broad infrastructure issues and will recommend switching when a specialist fits better.