What problem does it solve? Helm charts often ship with weak security defaults, unpinned images, missing schema validation, and untested templates that break at deploy time. This Skill applies a structured review and hardening workflow so charts render safely and consistently before release. ## Core Features & Use Cases - Chart Hardening: Enforces baseline structure (Chart.yaml, values.yaml, _helpers.tpl), standard labels, fail-fast required values, secure pod/securityContext defaults, and least-privilege RBAC. - Dependency-Aware Validation: Resolves chart dependencies, then runs helm lint --strict and helm template smoke renders, including kube-version and CRD-gated feature checks. - Use Case: Before publishing an internal application chart, run the Skill to pin image tags, externalize secrets, add values.schema.json, split readiness/liveness probes, and verify the rendered manifests against your supported Kubernetes version. ## Quick Start Use the helmchart skill to review and harden the chart in charts/my-app and validate it with helm lint and helm template.