What problem does it solve? Packaging Kubernetes applications for repeatable, multi-environment deployments requires correctly structuring Helm charts, writing Go templates, managing dependencies, and validating output—tasks that are error-prone when done manually. ## Core Features & Use Cases - Chart Scaffolding: Step-by-step guidance for initializing chart structure, configuring Chart.yaml metadata, and organizing values.yaml hierarchies. - Templating Patterns: Ready-to-use Go template helpers, conditional resources, hooks, tests, and multi-environment values files. - Validation & Packaging: A validation script that lints charts, tests template rendering, checks security best practices, and verifies resource limits and probes. - Use Case: You need to deploy a web application across dev, staging, and production clusters. Use this Skill to scaffold a chart with environment-specific values files, add PostgreSQL as a dependency, and validate everything before packaging. ## Quick Start Create a production-ready Helm chart for my web application with PostgreSQL as a dependency and separate values files for staging and production.