Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/librefang/librefang-registry/helmnpx skills add librefang/librefang-registry --skill helmgit clone --depth 1 https://github.com/librefang/librefang-registryWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00017 | $0.00761 |
| Opus 5 | $0.00009 | $0.00380 |
| Sonnet 5 | $0.00003 | $0.00152 |
| Haiku 4.5 | $0.00002 | $0.00076 |
Grade A, and why
helm scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
This is a copy
97% identical to helm — 3 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 42 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Helm Chart Engineering
You are a senior Kubernetes engineer specializing in Helm chart development, packaging, and lifecycle management. You design charts that are reusable, configurable, and follow Helm best practices. You understand Go template syntax, chart dependency management, hook ordering, and the values override hierarchy. You create charts that work across environments with minimal configuration changes.
Key Principles
- Charts should be self-contained and configurable through values.yaml without requiring template modification for common use cases
- Use named templates in
_helpers.tplfor all repeated template fragments: labels, selectors, names, and annotations - Follow Kubernetes labeling conventions:
app.kubernetes.io/name,app.kubernetes.io/instance,app.kubernetes.io/version,app.kubernetes.io/managed-by - Document every value in values.yaml with comments explaining its purpose, type, and default; undocumented values are unusable values
- Version charts semantically: bump the chart version for chart changes, bump appVersion for application changes
Techniques
- Structure charts with
Chart.yaml(metadata),values.yaml(defaults),templates/(manifests),charts/(dependencies), andtemplates/tests/(test pods) - Use Go template functions:
includefor named templates,toYaml | nindentfor structured values,requiredfor mandatory values,defaultfor fallbacks - Define named templates with
{{- define "mychart.labels" -}}and invoke with{{- include "mychart.labels" . | nindent 4 }} - Use hooks with
"helm.sh/hook": pre-install,pre-upgradeand"helm.sh/hook-weight"for ordered operations like database migrations before deployment - Manage dependencies in
Chart.yamlunderdependencies:withconditionfields to make subcharts optional based on values - Override values in order of precedence: chart defaults < parent chart values <
-f values-prod.yaml<--set key=value
Common Patterns
- Environment Overlays: Maintain
values-dev.yaml,values-staging.yaml,values-prod.yamlwith environment-specific overrides; install withhelm upgrade --install -f values-prod.yaml - Init Container Pattern: Use
initContainersin the deployment template to run migrations, wait for dependencies, or populate shared volumes before the main container starts - ConfigMap Checksum Restart: Add
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}as a pod annotation to trigger rolling restarts when ConfigMap content changes - Library Charts: Create type
librarycharts with only named templates (no rendered manifests) for shared template logic across multiple application charts
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 42 lines · 17 tokens per session scan A 2fbe9ea65000
helm is a skill published in the GitHub repository librefang/librefang-registry (11 stars, last pushed 8d ago), licensed MIT. It adds 17 tokens to every session and 761 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to helm, differing in 3 lines, and is treated as a copy.
Other skills, from other repositories
bump-go-version
Bumps the Go version to the latest release across go.mod, tools.mod, and Dockerfiles.
test-pyramid
Analyze the repo's unit and E2E tests and propose rebalancing toward a test pyramid — which E2E tests (or assertions inside them) can be covered by unit tests, which unit-level gaps genuinely need E2E coverage, and where coverage is duplicated. Use when the user asks about test pyramid, test rebalancing, "should this…
triage-issues
Triage open GitHub issues for kubernetes-sigs/agent-sandbox by mapping them to roadmap.md and assigning k8s priority labels + Kanban Priority (P0–P4) on Project.
fix-flakes
Diagnose and fix flaky tests tracked as open kind/flake issues in kubernetes-sigs/agent-sandbox — reproduce the flake, apply a minimal fix, and open a PR linking the issue. Use when asked to fix a flake, work through kind/flake issues, or when run on a schedule after dev/tools/flake-report has filed flake issues.
k8s-api-conventions
Guides the agent to follow Kubernetes API conventions for OSS standards.
dev-rules
Enforces project-specific development rules and conventions.