What problem does it solve? Helm chart work often fails because of incorrect Chart.yaml structure, unmanaged dependencies, or upgrades that silently do not apply. This Skill provides conventions and a verification workflow so chart changes are made against confirmed values rather than assumptions. ## Core Features & Use Cases - Chart Structure Conventions: Enforces correct use of Chart.yaml types, values.schema.json generation via helm-schema, and README generation via helm-docs. - Dependency Management: Guides declaring sub-chart dependencies with conditions, version constraints, and committing Chart.lock. - Verification Workflow: Provides a five-step checklist (inspect values, check current values, render templates, change, dry-run apply) before any helm upgrade. - Use Case: When a helm upgrade is not taking effect, follow the workflow to render templates with helm template, confirm the target field exists in the chart's value schema, and fall back to kubectl patch if the chart does not expose it. ## Quick Start Use the helm-charts skill to diagnose why my helm upgrade is not applying the securityContext field to my deployment.