What problem does it solve? Authoring Helm charts involves many moving parts — Chart.yaml metadata, templated manifests, helper definitions, subchart dependencies, and validation — and mistakes often surface only at deploy time. This Skill guides chart creation, testing, and packaging so charts are linted, rendered, and dry-run validated before release. ## Core Features & Use Cases - Chart scaffolding and structure: Generate charts with helm create and configure Chart.yaml with apiVersion, SemVer versioning, and dependency declarations. - Validation and testing: Run helm lint --strict, helm template rendering, dry-run installs, and chart test hooks to catch errors before deployment. - Packaging and distribution: Package charts with dependency updates, index chart repositories, and push to OCI registries. - Use Case: You need to ship an application to Kubernetes with a PostgreSQL backend. Use this Skill to scaffold the chart, declare the Bitnami PostgreSQL subchart dependency, write _helpers.tpl naming templates, lint and dry-run the chart, then package and push it to an OCI registry. ## Quick Start Ask the assistant to create a new Helm chart for your application, add a dependency, and validate it with helm lint and a dry-run install.