AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Helm

skill-greedychipmunk-agent-skills-helm · by greedychipmunk

Package and deploy Kubernetes applications with Helm charts and releases. Use when tasks mention helm, Helm charts, helm install, helm upgrade, Helm repositories, values.yaml, or Helm releases.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-greedychipmunk-agent-skills-helm

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-greedychipmunk-agent-skills-helm)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Helm? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

helm

Use this skill to keep Helm-based Kubernetes deployments reproducible, auditable, and safe across environments.

Intent Router

| Request | Reference | Load When | | --- | --- | --- | | Install Helm, add repos, configure registries | resources/install-and-setup.md | User needs to install Helm or configure repositories | | install/upgrade/list/rollback/template commands | resources/command-cookbook.md | User needs day-to-day Helm release operations | | Chart.yaml, templates, values, helpers | resources/chart-authoring.md | User wants to author or modify a Helm chart | | Release lifecycle, --atomic, --wait, diff plugin | resources/release-management.md | User asks about release management or upgrade strategies |

Quick Start

# Add a chart repository
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update

# Search for a chart
helm search repo bitnami/nginx

# Inspect default values
helm show values bitnami/nginx

# Install with custom values
helm install my-nginx bitnami/nginx --set service.type=ClusterIP -n my-namespace

# Upgrade with a values file
helm upgrade my-nginx bitnami/nginx -f values.yaml -n my-namespace

# List releases
helm list -A

Core Command Tracks

  • Install: helm install [flags] — create a new release
  • Upgrade: helm upgrade --install — create or update release
  • Rollback: helm rollback [revision] — revert to previous revision
  • Template: helm template — render manifests locally without applying
  • Values: helm get values — inspect values used by a deployed release
  • Status: helm status — show release info and notes
  • Uninstall: helm uninstall — remove release and resources

Safety Guardrails

  • Always run helm upgrade --dry-run --debug or helm template before applying changes to production.
  • Use the helm diff plugin (helm diff upgrade) to inspect what will change before applying.
  • Use --atomic in CI pipelines so failed upgrades automatically roll back.
  • Never pass secrets via --set; use a secrets manager or the helm-secrets plugin.
  • Always specify --namespace explicitly; do not rely on the default namespace.
  • Pin chart versions with --version in production to ensure reproducibility.
  • Confirm before running helm uninstall; it removes all resources managed by the release.

Workflow

  1. Add and update chart repository: helm repo add and helm repo update.
  2. Inspect default values: helm show values .
  3. Create a values.yaml override file for environment-specific configuration.
  4. Render and review manifests: helm template -f values.yaml.
  5. Install or upgrade: helm upgrade --install -f values.yaml --atomic --wait.
  6. Verify: helm list, helm status , kubectl get pods -n .
  7. On failure, check: helm history and helm rollback .
# Troubleshoot a failed upgrade: inspect history and roll back
helm history my-nginx -n my-namespace
helm rollback my-nginx 1 -n my-namespace
helm status my-nginx -n my-namespace

Related Skills

  • kubectl — inspect and manage Kubernetes resources created by Helm
  • docker — build container images referenced in Helm chart values

References

  • resources/install-and-setup.md
  • resources/command-cookbook.md
  • resources/chart-authoring.md
  • resources/release-management.md
  • Official docs:
  • Chart hub:

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.