add-helm-chart

A scaffolding tool that creates a standard Helm chart, which packages Kubernetes deployment settings for an application or service. The chart includes configuration and templates for common resources such as deployments, services, ingress, and autoscaling.

In plain words
What is it for?
Use it when deploying a new microservice or other component to Kubernetes that needs its own chart.
Why use it?
It removes repetitive chart setup and helps a new deployment package follow the project's existing Kubernetes conventions.

Skill for Claude CodeCodex

Part of the cloud-infra plugin — 7 skills, 1 agent shipped together

Install

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.

agentmods
npx agentmods add skills/makigjuro/cloudstack-ai-plugins/add-helm-chart
Any agent
npx skills add makigjuro/cloudstack-ai-plugins --skill add-helm-chart
Clone the repo
git clone --depth 1 https://github.com/makigjuro/cloudstack-ai-plugins

Made for: Claude Code, Codex.

Or install cloud-infra, the plugin that ships this one along with the rest of its 7 skills, 1 agent.

Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 888 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00035 $0.00888
Opus 5 $0.00017 $0.00444
Sonnet 5 $0.00007 $0.00178
Haiku 4.5 $0.00003 $0.00089

Measured 2d ago against content hash 2fdde95bc589, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

add-helm-chart 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.

plugins/cloud-infra/skills/add-helm-chart/SKILL.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Add Helm Chart

Scaffold a new Helm chart following project conventions.

Arguments

  • {chart-name} — Name of the chart (required, e.g., my-service, api-gateway)

Configuration

Read cloudstack.json from the project root at the start of execution. Extract:

  • CHARTS_PATH = infrastructure.chartsPath (default: deploy/charts)
  • K8S_NAMESPACE = infrastructure.namespace (default: detect from existing charts or use project name)

If cloudstack.json does not exist, auto-detect by scanning the project structure.

Process

  1. Create the chart directory structure under {CHARTS_PATH}/{chart-name}/:
{CHARTS_PATH}/{chart-name}/
├── Chart.yaml
├── values.yaml
├── templates/
│   ├── _helpers.tpl
│   ├── deployment.yaml
│   ├── service.yaml
│   ├── configmap.yaml
│   ├── ingress.yaml
│   └── hpa.yaml
  1. Read the helm-charts rule file (if present) for project conventions. Also scan existing charts in {CHARTS_PATH}/ to follow established patterns.

  2. Generate files following these conventions:

    • Namespace: Use {{ .Release.Namespace }} in templates (do not hardcode)
    • Standard Kubernetes labels: app.kubernetes.io/name, app.kubernetes.io/instance, app.kubernetes.io/version
    • Health check paths: /health/live (liveness), /health/ready (readiness)
    • Resource limits and requests with sensible defaults
    • HPA with min 1, max 3 replicas
  3. Chart.yaml template:

apiVersion: v2
name: {chart-name}
description: {description}
type: application
version: 0.1.0
appVersion: "0.1.0"
  1. values.yaml — Include configurable values for:

    • image.repository, image.tag, image.pullPolicy
    • replicaCount
    • resources.requests and resources.limits
    • service.type, service.port
    • ingress.enabled, ingress.hosts
    • env (environment variables as key-value map)
  2. Validate the chart:

helm lint {CHARTS_PATH}/{chart-name}
helm template test {CHARTS_PATH}/{chart-name} > /dev/null

Read the full file on GitHub · 108 lines

Changes

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.

  1. 2d ago First seen · 108 lines · 35 tokens per session scan A 2fdde95bc589

Subscribe to this mod's changes

add-helm-chart is a skill published in the GitHub repository makigjuro/cloudstack-ai-plugins (1 stars, last pushed 1mo ago), licensed MIT. It adds 35 tokens to every session and 888 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

redteam-container-detail-pack

Domain routing and boundary guidance for authorized container and orchestration security testing, including Docker escape, Kubernetes privilege escalation, image vulnerabilities, and service mesh bypasses. Use when a task belongs to the container testing domain and needs scope, evidence, pivot, or exit criteria.

Netw0rkNoob/VulnClaw · 59 tokens

ovh

OVHcloud infrastructure integration for managing instances, Kubernetes clusters, networks, and object storage via CLI and Terraform.

Arvo-AI/aurora · 24 tokens

ak-cloud-deploy

Deploy an Agent Kernel project to AWS, Azure, or GCP using Terraform modules, or to any Kubernetes cluster (on-prem, baremetal, EKS) using the official Helm chart. Supports serverless and containerized modes for all three clouds. AWS supports execution modes (restsync, restasync, async, stream), queue-based scalable…

yaalalabs/agent-kernel · 146 tokens

awesome-kubernetes-ops

This skill documents the local verification, editing, and deployment procedures for the Antigravity AI Agent when pair-programming with the repository maintainer.

nubenetes/awesome-kubernetes · 0 tokens

kubectl_onprem

On-prem Kubernetes cluster integration for running kubectl commands via Aurora agent relay or uploaded kubeconfig.

Arvo-AI/aurora · 23 tokens

aspire-stop

Stop the .NET Aspire AppHost and its Docker containers via the developer CLI. Defaults to the current worktree; supports stopping all worktrees or a specific base port.

platformplatform/PlatformPlatform · 38 tokens