DevOps Claude Skills automates infrastructure as code workflows with Terraform and Terragrunt. Operations teams use it to create, validate, and troubleshoot configurations. Integrates with Claude Code for AI-assisted DevOps tasks.
git clone https://github.com/ahmedasmar/devops-claude-skills.gitDevOps Claude Skills is a community repository providing six specialized skills for infrastructure automation and operational excellence. It covers Infrastructure as Code with Terraform and Terragrunt for managing configurations and state, Kubernetes troubleshooting for diagnosing pod failures and cluster issues, AWS cost optimization for identifying waste and rightsizing resources, CI/CD pipeline design and optimization across GitHub Actions and GitLab CI, GitOps workflows with ArgoCD and Flux for multi-cluster deployments, and monitoring and observability implementation using Prometheus, Grafana, and OpenTelemetry. Operations teams and DevOps engineers use these skills to automate infrastructure workflows, troubleshoot production incidents, optimize cloud spending, and design resilient deployment systems.
Add the marketplace with `/plugin marketplace add https://github.com/ahmedasmar/devops-claude-skills`, then install individual skills like `/plugin install iac-terraform@devops-skills` or `/plugin install k8s-troubleshooter@devops-skills`. Once installed, describe your DevOps task to Claude Code—such as 'Help me troubleshoot this Kubernetes pod' or 'Find unused AWS resources costing me money'—and the skill will provide diagnostics, scripts, and production-ready templates.
Create and validate Terraform modules and manage infrastructure state
Diagnose Kubernetes pod failures and cluster health issues
Find unused AWS resources and analyze Reserved Instance opportunities
Design and optimize CI/CD pipelines across GitHub Actions and GitLab CI
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/ahmedasmar/devops-claude-skillsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm working on a Terraform configuration for [INFRASTRUCTURE_PROJECT]. Please help me [TASK: create/validate/troubleshoot] the configuration. Here's the relevant code: [CODE_SNIPPET]. What should I do next to [SPECIFIC_GOAL]?
Based on the Terraform configuration you've shared for your AWS VPC setup, I've identified a few areas to improve. First, your variable definitions could be more consistent. Here's how to standardize them:
```hcl
variable "vpc_cidr" {
description = "The CIDR block for the VPC"
type = string
default = "10.0.0.0/16"
}
variable "subnet_cidrs" {
description = "The CIDR blocks for the subnets"
type = list(string)
default = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
}
```
Next, I noticed you're not using any remote state configuration. For better collaboration, consider adding this to your backend configuration:
```hcl
terraform {
backend "s3" {
bucket = "my-terraform-state"
key = "path/to/my/key"
region = "us-west-2"
dynamodb_table = "my-lock-table"
}
}
```
Finally, your security group rules could be more specific. Instead of allowing all traffic from certain subnets, consider restricting to specific ports and protocols. Would you like me to suggest some improvements to your security group configuration?AI assistant built for thoughtful, nuanced conversation
Manage microservices traffic and enhance security with comprehensive observability features.
Get more done every day with Microsoft Teams – powered by AI
Orchestrate workloads with multi-cloud support, job scheduling, and integrated service discovery features.
Monitor frontend performance and debug effectively with session replay and analytics.
Cloud computing platform with 200+ services
Take a free 3-minute scan and get personalized AI skill recommendations.
Take free scan