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 skills add arjunprabhulal/devops-skills --skill helm-chartsgit clone --depth 1 https://github.com/arjunprabhulal/devops-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/arjunprabhulal/devops-skills/helm-charts)<a href="https://agentmods.dev/skills/arjunprabhulal/devops-skills/helm-charts"><img src="https://agentmods.dev/badge/skills/arjunprabhulal/devops-skills/helm-charts.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00103 | $0.01403 |
| Opus 5 | $0.00051 | $0.00701 |
| Sonnet 5 | $0.00021 | $0.00281 |
| Haiku 4.5 | $0.00010 | $0.00140 |
Grade A, and why
helm-charts 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 8d 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.
How it starts
The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Helm Charts
Helm exists to solve one problem: the same application needs slightly different manifests in dev, staging, and prod, and copy-pasting YAML across environments guarantees drift. A chart is a template plus a values contract — the moment the templates start encoding environment-specific logic instead of taking it as input, the chart has stopped doing its job.
The values file is the API of the chart; everyone who consumes it, including future-you, should be
able to configure the workload without reading the templates. A chart is good if you can predict
its rendered output from values.yaml alone.
1. Design values.yaml as a contract, not a dump
Every value you expose is something a consumer now depends on — expose too little and people fork the chart to add one setting; expose too much and every value becomes load-bearing forever. The right test: does this need to vary by environment or by deployer? If not, it's a template default, not a value.
- Group by concern, not by template file —
resources,ingress,imageas top-level keys that read naturally, matching how consumers think about the workload. - Document every value's type and default in
values.yamlcomments or a schema (values.schema.json) — undocumented values get set wrong silently. - Never require a values override just to make the chart install — sane defaults should produce a working (if minimal) deployment with zero overrides.
Done when: someone unfamiliar with the templates can configure the chart correctly using only
values.yaml and its comments.
2. Layer environment overrides, don't fork the chart
The failure mode past "quick chart" is a values-prod.yaml that has silently drifted from
values-dev.yaml in ways nobody can diff meaningfully, or worse, three near-identical chart copies.
Helm's -f flag composes multiple values files in order — use that composition instead of
duplicating the whole file per environment.
helm upgrade myapp ./chart -f values.yaml -f values-prod.yaml --install
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.
- 8d ago First seen · 110 lines · 103 tokens per session scan A 02d2d2b6b24d
helm-charts is a skill published in the GitHub repository arjunprabhulal/devops-skills (3 stars, last pushed 13d ago), licensed MIT. It adds 103 tokens to every session and 1,403 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
gke-app-onboarding
Manages GKE application onboarding, covering containerization, deployment manifests, and migration. Use when onboarding or deploying an application to GKE for the first time, or containerizing an app for GKE. Don't use for general GKE cluster administration or upgrades (use gke-basics or gke-upgrades instead).
build-mcpb
This skill should be used when the user wants to "package an MCP server", "bundle an MCP", "make an MCPB", "ship a local MCP server", "distribute a local MCP", discusses ".mcpb files", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem…
google-mobile-ads-android-migrate-to-next-gen
Migrates Android applications from the old, legacy Google Mobile Ads (GMA) SDK (com.google.android.gms:play-services-ads) to the new GMA Next-Gen SDK (com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk). Provides comprehensive mapping tables for imports, classes, and method signatures to help determine…
google-cloud-solution-guided-gke-ai-migration
Guides the migration of existing AI workloads (Cloud Run, Gemini API, Gemini Enterprise Agent Platform) to self-hosted GKE inference using gcloud and kubectl. Use when the user has an existing AI inference workload (on Cloud Run, the Gemini API, Gemini Enterprise Agent Platform, or a custom VM) and wants to move it to…
agent-platform-tuning
Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment to endpoints (use agent-platform-deploy), or managing serving endpoints (use agent-platform-endpoint-management).
agent-platform-deploy
Deploy open models or custom weights from Model Garden to Agent Platform endpoints, check the status of an in-progress deployment operation, or clean up resources by undeploying models and deleting endpoints. Use when asked to actively deploy a model, list the Model Garden CATALOG of available models, check if a…