What problem does it solve? Upgrading Helm charts in production manifest repos is risky: skipped stepping-stone versions cause failed DB migrations, removed values keys break upgrades silently, and new charts may require newer Kubernetes versions than the cluster runs. This Skill provides a structured workflow to assess upgrade safety before touching a cluster. ## Core Features & Use Cases - Version Discovery: Finds the pinned chart version from README and values.yaml, then queries the upstream Helm repo for the latest available versions. - Impact Assessment: Diffs default values between current and target chart versions with helm show values, cross-references removed or renamed keys against your values.yaml, and checks Kubernetes version constraints. - Upgrade Path Validation: Detects mandatory stepping-stone versions from community forums, docs, and ArtifactHub changelogs to avoid DB migration failures. - Guided Execution: Runs the helm upgrade, watches pod rollout, triggers DB migrations via API when needed, and polls until the app reports UP. - Use Case: Ask whether SonarQube in your staging manifest repo can move from chart 2025.6.1 to 2026.4.0, and receive a full compatibility report plus a safe execution plan. ## Quick Start Ask the assistant to check if a newer chart version is available for a service in your manifest repo and whether it is safe to upgrade.