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 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.
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
Simple data integration for modern teams
Cloud computing platform with 200+ services
IronCalc is a spreadsheet engine and ecosystem
Orchestrate workloads with multi-cloud support, job scheduling, and integrated service discovery features.
Monitor frontend performance and debug effectively with session replay and analytics.