🎯

helm-validator

🎯Skill

from akin-ozer/cc-devops-skills

VibeIndex|
What it does

Validates Helm charts for syntax correctness, best practices, security vulnerabilities, and configuration errors using tools like helm lint and kubeval.

πŸ“¦

Part of

akin-ozer/cc-devops-skills(26 items)

helm-validator

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add akin-ozer/cc-devops-skills
Install PluginInstall plugin from marketplace
/plugin install devops-skills@akin-ozer
πŸ“– Extracted from docs: akin-ozer/cc-devops-skills
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# DevOps Skills for Claude Code

A comprehensive collection of Claude Code skills for DevOps engineers, providing generators and validators for infrastructure automation, CI/CD pipelines, container orchestration, and observability tooling.

[![Mentioned in Awesome Claude Code](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/hesreallyhim/awesome-claude-code)

What are Claude Code Skills?

Skills are reusable prompt templates that help Claude provide expert guidance on specific topics. When you invoke a skill, Claude assumes the role of an expert in that domain and provides detailed, actionable advice with automatic validation.

Available Skills (31 skills)

Ansible (2 skills)

| Skill | Description |

|-------|-------------|

| ansible-generator | Generate production-ready Ansible playbooks, roles, tasks, and inventory files following best practices |

| ansible-validator | Validate, lint, and test Ansible playbooks and roles using ansible-lint and syntax checks |

Azure Pipelines (2 skills)

| Skill | Description |

|-------|-------------|

| azure-pipelines-generator | Generate best practice Azure DevOps Pipelines for CI/CD workflows |

| azure-pipelines-validator | Validate, lint, and secure Azure DevOps Pipeline configurations |

Bash Scripts (2 skills)

| Skill | Description |

|-------|-------------|

| bash-script-generator | Generate best practice bash scripts with proper error handling and portability |

| bash-script-validator | Validate, lint, and optimize bash and shell scripts for syntax and security |

Docker (2 skills)

| Skill | Description |

|-------|-------------|

| dockerfile-generator | Generate production-ready Dockerfiles with multi-stage builds and security hardening |

| dockerfile-validator | Validate Dockerfiles using hadolint and Checkov for security and best practices |

Fluent Bit (2 skills)

| Skill | Description |

|-------|-------------|

| fluentbit-generator | Generate Fluent Bit configurations for log collection and forwarding pipelines |

| fluentbit-validator | Validate Fluent Bit configurations for syntax, security, and best practices |

GitHub Actions (2 skills)

| Skill | Description |

|-------|-------------|

| github-actions-generator | Generate GitHub Actions workflows and custom actions (composite, Docker, JavaScript) |

| github-actions-validator | Validate GitHub Actions workflows using actionlint and test with act |

GitLab CI (2 skills)

| Skill | Description |

|-------|-------------|

| gitlab-ci-generator | Generate GitLab CI/CD pipelines following best practices |

| gitlab-ci-validator | Validate, lint, and secure GitLab CI/CD pipeline configurations |

Helm (2 skills)

| Skill | Description |

|-------|-------------|

| helm-generator | Generate Helm charts with proper templating, values, and chart structure |

| helm-validator | Validate and lint Helm charts with automatic CRD documentation lookup |

Jenkins (2 skills)

| Skill | Description |

|-------|-------------|

| jenkinsfile-generator | Generate Jenkinsfiles for Declarative and Scripted pipeline syntaxes |

| jenkinsfile-validator | Validate and lint Jenkinsfile pipelines for syntax and best practices |

Kubernetes (3 skills)

| Skill | Description |

|-------|-------------|

| k8s-generator | Generate Kubernetes YAML manifests with automatic CRD documentation lookup |

| k8s-yaml-validator | Validate Kubernetes manifests using kubeconform and yamllint |

| k8s-debug | Debug Kubernetes cluster issues with systematic troubleshooting workflows |

Logging & Observability (3 skills)

| Skill | Description |

|-------|-------------|

| logql-generator | Generate LogQL queries for Loki log analysis and alerting |

| loki-config-generator | Generate Loki configuration files for log aggregation |

| promql-generator | Generate PromQL queries for Prometheus monitoring and alerting |

Makefiles (2 skills)

| Skill | Description |

|-------|-------------|

| makefile-generator | Generate best practice Makefiles for build automation |

| makefile-validator | Validate, lint, and optimize Makefiles for syntax and best practices |

PromQL (1 skill)

| Skill | Description |

|-------|-------------|

| promql-validator | Validate PromQL queries for syntax and best practices |

Terraform (2 skills)

| Skill | Description |

|-------|-------------|

| terraform-generator | Generate Terraform configurations following best practices |

| terraform-validator | Validate Terraform configurations with fmt, validate, and tflint |

Terragrunt (2 skills)

| Skill | Description |

|-------|-------------|

| terragrunt-generator | Generate Terragrunt configurations for multi-environment deployments |

| terragrunt-validator | Validate Terragrunt configurations and DRY patterns |

Installation

From Plugin Marketplace (Recommended)

Add this repository as a Claude Code plugin marketplace and install the skills:

```bash

# Add the marketplace

/plugin marketplace add akin-ozer/cc-devops-skills

# Install the plugin

/plugin install devops-skills@akin-ozer

```

Or browse available plugins interactively with /plugin.

Team Installation

To automatically install for your team, add to your project's .claude/settings.json:

```json

{

"extraKnownMarketplaces": {

"devops-skills": {

"source": {

"source": "github",

"repo": "akin-ozer/cc-devops-skills"

}

}

}

}

```

When team members trust the repository folder, Claude Code automatically installs the marketplace.

Now available for Codex desktop πŸŽ‰

```

$skill-installer install https://github.com/akin-ozer/cc-devops-skills/tree/main/devops-skills-plugin/skills

```

How to Use

Invoking a Skill

Simply ask Claude to use a skill by name:

```

Use the dockerfile-generator skill to create a Dockerfile for my Node.js application

```

Or ask Claude to validate an existing file:

```

Validate my terraform configuration using the terraform-validator skill

```

Generator + Validator Workflow

Most skills come in pairs (generator + validator). When you use a generator skill, it automatically validates the output:

  1. Generator creates the resource following best practices
  2. Validator checks for syntax errors, security issues, and best practices
  3. Generator fixes any validation errors
  4. Final output is production-ready and validated

Skill Categories

By Function

  • Generators: Create new resources from scratch following best practices
  • Validators: Validate, lint, and secure existing resources
  • Debug/Troubleshooting: Diagnose and fix issues in running systems

By Technology Area

```

Infrastructure as Code

β”œβ”€β”€ Terraform (generator, validator)

β”œβ”€β”€ Terragrunt (generator, validator)

└── Ansible (generator, validator)

Container & Orchestration

β”œβ”€β”€ Dockerfile (generator, validator)

β”œβ”€β”€ Kubernetes (generator, validator, debug)

└── Helm (generator, validator)

CI/CD Pipelines

β”œβ”€β”€ GitHub Actions (generator, validator)

β”œβ”€β”€ GitLab CI (generator, validator)

β”œβ”€β”€ Jenkins (generator, validator)

└── Azure Pipelines (generator, validator)

Observability

β”œβ”€β”€ PromQL (generator, validator)

β”œβ”€β”€ LogQL (generator)

β”œβ”€β”€ Fluent Bit (generator, validator)

└── Loki Config (generator)

Build & Scripting

β”œβ”€β”€ Makefile (generator, validator)

└── Bash Script (generator, validator)

```

By Experience Level

| Level | Skills |

|-------|--------|

| Beginner-friendly | dockerfile-generator, bash-script-generator, makefile-generator |

| Intermediate | terraform-generator, ansible-generator, github-actions-generator, k8s-generator |

| Advanced | helm-generator, terragrunt-generator, k8s-debug, promql-generator |

Key Features

Automatic Validation

All generator skills automatically validate their output using the corresponding validator skill, ensuring production-ready results.

Version-Aware Documentation

Skills automatically fetch up-to-date documentation for

More from this repository10

πŸͺ
akin-ozer-cc-devops-skillsπŸͺMarketplace

Marketplace with 1 plugins

🎯
dockerfile-validator🎯Skill

Validates Dockerfiles using hadolint and Checkov to ensure security best practices and identify potential configuration issues or vulnerabilities.

🎯
jenkinsfile-validator🎯Skill

Skill

🎯
azure-pipelines-validator🎯Skill

Validates Azure DevOps Pipeline configurations for syntax correctness, security best practices, and potential configuration errors.

🎯
makefile-validator🎯Skill

Validates Makefiles for syntax correctness, best practices, and potential errors using linting and static analysis techniques.

🎯
dockerfile-generator🎯Skill

Generates production-ready Dockerfiles with multi-stage builds and security hardening best practices for containerizing applications.

🎯
terraform-generator🎯Skill

Generates production-ready Terraform infrastructure-as-code configurations, modules, and resource definitions following best practices and security guidelines.

🎯
makefile-generator🎯Skill

Generates production-ready, best-practice Makefiles for automating build, test, and deployment processes across different programming languages and project types.

🎯
ansible-validator🎯Skill

Validates Ansible playbooks and roles by performing syntax checks and linting using ansible-lint to ensure configuration quality and best practices.

🎯
github-actions-validator🎯Skill

Validates GitHub Actions workflow files for syntax correctness, security best practices, and potential runtime issues using actionlint and act.