From helm-chart-generator
Execute use when generating Helm charts for Kubernetes applications. Trigger with phrases like "create Helm chart", "generate chart for app", "package Kubernetes deployment", or "helm template". Produces production-ready charts with Chart.yaml, values.yaml, templates, and best practices for multi-environment deployments.
npx claudepluginhub flight505/skill-forge --plugin helm-chart-generatorThis skill is limited to using the following tools:
Generate production-ready Helm 3 charts for Kubernetes applications with Chart.yaml, values.yaml, Go templates, and helper functions. Support multi-environment deployments with values overrides, dependency management, security contexts, health probes, and resource limits following Helm best practices.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Guides code writing, review, and refactoring with Karpathy-inspired rules to avoid overcomplication, ensure simplicity, surgical changes, and verifiable success criteria.
Share bugs, ideas, or general feedback.
Generate production-ready Helm 3 charts for Kubernetes applications with Chart.yaml, values.yaml, Go templates, and helper functions. Support multi-environment deployments with values overrides, dependency management, security contexts, health probes, and resource limits following Helm best practices.
helm version)kubectl configured with cluster access for testing chart installationChart.yaml, values.yaml, templates/, charts/, .helmignoreChart.yaml with apiVersion: v2, name, version, appVersion, and dependency declarationsvalues.yaml with sensible production defaults: replica count, image config, resource limits, ingress settings.Values references and _helpers.tpl for reusable named templateslivenessProbe and readinessProbe in the deployment template with configurable paths and thresholdsrunAsNonRoot: true, readOnlyRootFilesystem: true, and drop all capabilitiesvalues-dev.yaml, values-staging.yaml, values-prod.yamlNOTES.txt with post-install instructions showing how to access the applicationhelm lint . and test rendering with helm template . --values values-prod.yamlChart.yaml with metadata and dependenciesvalues.yaml with documented, configurable defaultsdeployment.yaml, service.yaml, ingress.yaml, configmap.yaml, serviceaccount.yaml, hpa.yaml_helpers.tpl with name, label, and selector helper templatesNOTES.txt with post-install access instructions| Error | Cause | Solution |
|---|---|---|
Chart.yaml: version is required | Missing or malformed version field | Add a valid SemVer version string to Chart.yaml |
parse error in template | Go template syntax error (missing end, wrong function) | Run helm template . to pinpoint the error; check bracket matching and function names |
dependency not found | Chart dependency not downloaded | Run helm dependency update to fetch dependencies into charts/ |
release failed: timed out waiting for condition | Pods not reaching ready state during install | Check pod logs; verify image exists, resource limits are sufficient, and probes are correct |
values override not applied | Wrong values file path or key mismatch | Verify --values file path and that keys match the structure in values.yaml exactly |