What problem does it solve?
Keeping the Bifrost Helm chart in sync with the evolving config.schema.json is error-prone: new config fields get added to the gateway but never surface in values.yaml, values.schema.json, or the _helpers.tpl template, and changelogs fall behind. This Skill automates the entire update cycle so no field is silently dropped.
Core Features & Use Cases
- Schema Gap Detection: Diffs transports/config.schema.json against the last helm release commit to find fields not yet reflected in the chart, then closes those gaps automatically.
- Coordinated Chart Updates: Updates values.yaml (commented samples), values.schema.json (typed properties), _helpers.tpl (config.json rendering), and bumps the Chart.yaml version in one pass.
- Changelog Automation: Updates the helm README Latest Version and Upcoming sections, creates a docs/changelogs/helm-v<version>.mdx file, and registers it in docs.json navigation.
- Use Case: After merging a PR that adds a new load-balancer option to config.schema.json, invoke the skill to propagate that option through the Helm chart, bump the version, and generate all changelog entries, ending with a diff review verifying every new field maps back to the schema.
Quick Start
Invoke /helm-update and describe the Helm chart changes you want applied, such as adding a new config field or syncing recent schema changes.