Help us improve
Share bugs, ideas, or general feedback.
From helmcraft
Use when you need to audit a Helm chart against security, best practices, and production readiness
npx claudepluginhub jugrajsingh/skillgarden --plugin helmcraftHow this skill is triggered — by the user, by Claude, or both
Slash command
/helmcraft:auditingThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Comprehensive audit of a Helm chart against security, best practices, and production readiness.
Applies C++ Core Guidelines to write, review, or refactor C++ code. Enforces modern, safe, and idiomatic practices for C++17/20/23.
Share bugs, ideas, or general feedback.
Comprehensive audit of a Helm chart against security, best practices, and production readiness.
Glob: chart/Chart.yaml, chart/values.yaml, chart/templates/*.yaml, chart/templates/*.tpl, chart/templates/*.txt
If no chart found, report and exit.
Read every file in chart/ to understand the full picture.
Read references/checklist.md and evaluate each check against the chart files.
Present findings grouped by category with severity indicators:
Helm Chart Audit: {chart_name}
SECURITY
[PASS] Non-root user configured
[FAIL] Capabilities not dropped — add capabilities.drop: [ALL]
[PASS] No secrets in values.yaml
BEST PRACTICES
[PASS] Checksum annotations present
[WARN] Resource limits empty — define actual limits
[PASS] Labels via _helpers.tpl
PRODUCTION READINESS
[PASS] Probes configured (exec)
[FAIL] NodeSelector empty — add node targeting
[PASS] NOTES.txt customized
Summary: {pass_count} passed, {warn_count} warnings, {fail_count} failures
Present via AskUserQuestion:
| Option | Description |
|---|---|
| Fix all issues | Apply fixes for all FAIL and WARN items |
| Fix critical only | Fix FAIL items only (security and production) |
| Report only | No changes, just the audit report |
For each fixable issue, edit the appropriate file. Report what was changed.