devops-skills
v1.0.0Set of DevOps skills for Claude Code and Codex.
by Akin OzerApache-2.0290updated 1 week ago
Source
git clone https://github.com/akin-ozer/cc-devops-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is devops-skills-plugin/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json├── skills/ansible-generator/SKILL.md├── skills/ansible-validator/SKILL.md├── skills/azure-pipelines-generator/SKILL.md├── skills/azure-pipelines-validator/SKILL.md├── skills/bash-script-generator/SKILL.md├── skills/bash-script-validator/SKILL.md├── skills/dockerfile-generator/SKILL.md├── skills/dockerfile-validator/SKILL.md├── skills/fluentbit-generator/SKILL.md├── skills/fluentbit-validator/SKILL.md├── skills/github-actions-generator/SKILL.md├── skills/github-actions-validator/SKILL.md├── skills/gitlab-ci-generator/SKILL.md├── skills/gitlab-ci-validator/SKILL.md├── skills/helm-generator/SKILL.md├── skills/helm-validator/SKILL.md├── skills/jenkinsfile-generator/SKILL.md├── skills/jenkinsfile-validator/SKILL.md├── skills/k8s-debug/SKILL.md├── skills/k8s-yaml-generator/SKILL.md├── skills/k8s-yaml-validator/SKILL.md├── skills/logql-generator/SKILL.md├── skills/loki-config-generator/SKILL.md├── skills/makefile-generator/SKILL.md├── skills/makefile-validator/SKILL.md├── skills/promql-generator/SKILL.md├── skills/promql-validator/SKILL.md├── skills/terraform-generator/SKILL.md├── skills/terraform-validator/SKILL.md├── skills/terragrunt-generator/SKILL.md└── skills/terragrunt-validator/SKILL.md
Skills31
Generate, create, or scaffold Ansible playbooks, roles, tasks, handlers, inventory, vars.
Validate, lint, audit, or debug Ansible playbooks, roles, inventories, FQCN, tasks.
Generate/create/scaffold azure-pipelines.yml, stages, jobs, steps, or reusable templates.
Validate, lint, audit, or review azure-pipelines.yml — syntax, security, best practices.
Create, generate, write, or scaffold bash/shell scripts (.sh), automation, or CLI tools.
Validate, lint, audit, or fix bash/shell/.sh scripts via ShellCheck.
Create, generate, or write Dockerfiles and multi-stage Docker images. Containerize apps.
Validate, lint, audit, or scan a Dockerfile for security and best practices.
Generate/create Fluent Bit configs — INPUT, FILTER, OUTPUT, parsers, log pipeline.
Validate, lint, audit, or check Fluent Bit configs (INPUT, FILTER, OUTPUT, tag routing).
Create, generate, or scaffold GitHub Actions workflows, action.yml, or .github/workflows CI/CD pipelines.
Validate, lint, audit, fix GitHub Actions workflows (.github/workflows).
Create, generate, or scaffold .gitlab-ci.yml pipelines, stages, and jobs.
Validate, lint, audit, or fix .gitlab-ci.yml pipelines, stages, and jobs.
Create, scaffold, or generate Helm charts, Chart.yaml, values.yaml, templates, helpers.
Validate, lint, audit, check Helm charts — Chart.yaml, templates, values.yaml, CRDs, schemas.
Generate/create/scaffold Jenkinsfile — declarative, scripted, shared library, CI/CD pipelines.
Validate, lint, audit, or check Jenkinsfiles and shared libraries.
Diagnose and fix Kubernetes pods, CrashLoopBackOff, Pending, DNS, networking, storage, and rollout failures with kubectl.
Generate/create/scaffold Kubernetes YAML — Deployment, Service, ConfigMap, Ingress, RBAC, StatefulSet, CRDs.
Validate, lint, audit, or dry-run Kubernetes manifests (Deployment, Service, ConfigMap, CRD).
Generate LogQL queries, log stream selectors, metric queries, and alerting rules for Grafana Loki.
Generate/create Loki configs — ingester, querier, compactor, ruler, S3/GCS/Azure backends.
Create, generate, or scaffold Makefiles with .PHONY targets and build automation.
Validate, lint, audit, or check Makefiles and .mk files for errors.
Generate/create/write PromQL queries, metric expressions, alerting rules, recording rules, Prometheus dashboards.
Validate, lint, audit, or fix PromQL queries and alerting rules; detects anti-patterns.
Create, generate, write, or scaffold Terraform .tf HCL — resources, modules, providers, variables, outputs.
Validate, lint, audit, or plan Terraform/.tf/HCL files; runs tflint, checkov, terraform validate.
Generate/create/scaffold Terragrunt HCL files — root.hcl, terragrunt.hcl, child modules, stacks, multi-env layouts.
Validate, lint, audit, or check Terragrunt .hcl/terragrunt.hcl files, stacks, modules, compliance.
Manifests2
{
"name": "devops-skills",
"version": "1.0.0",
"description": "Set of DevOps skills for Claude Code and Codex.",
"author": {
"name": "Akin Ozer",
"email": "[TODO: author@example.com]",
"url": "https://github.com/akin-ozer"
},
"homepage": "https://github.com/akin-ozer/cc-devops-skills",
"repository": "https://github.com/akin-ozer/cc-devops-skills.git",
"license": "Apache-2.0",
"keywords": [
"devops",
"skills",
"codex"
],
"skills": "./skills/",
"hooks": "[TODO: ./hooks.json]",
"mcpServers": "[TODO: ./.mcp.json]",
"apps": "[TODO: ./.app.json]",
"interface": {
"displayName": "DevOps Skills",
"shortDescription": "DevOps skill pack for infrastructure and pipeline work.",
"longDescription": "A practical skill pack for DevOps work in Claude Code and Codex desktop, including generators, validators, and Kubernetes debugging workflows.",
"developerName": "Akin Ozer",
"category": "Productivity",
"capabilities": [
"Interactive",
"Write"
],
"websiteURL": "https://github.com/akin-ozer/cc-devops-skills",
"privacyPolicyURL": "[TODO: https://example.com/privacy]",
"termsOfServiceURL": "[TODO: https://example.com/terms]",
"defaultPrompt": [
"Generate a secure GitHub Actions workflow.",
"Validate this Terraform module for risks.",
"Help debug a failing Kubernetes rollout."
],
"brandColor": "[TODO: #3B82F6]",
"composerIcon": "[TODO: ./assets/icon.png]",
"logo": "[TODO: ./assets/logo.png]",
"screenshots": [
"[TODO: ./assets/screenshot1.png]",
"[TODO: ./assets/screenshot2.png]",
"[TODO: ./assets/screenshot3.png]"
]
}
}{
"name": "devops-skills",
"description": "Set of DevOps skills for Claude Code.",
"version": "1.0.0",
"author": {
"name": "Akin Ozer"
}
}