create-terraform-helm-upgrade-plan

create-terraform-helm-upgrade-plan is a skill for Claude Code, Codex from abdullahkhawer/devops-skills. It costs 37 tokens per session (995 once invoked), scanned A, original, Apache-2.0.

A guided workflow for planning an upgrade to a Helm release managed by Terraform. Helm packages and deploys Kubernetes applications, while Terraform describes infrastructure as code.

In plain words
What is it for?
Use it to locate the Terraform helm_release, identify the chart and overrides, and produce an upgrade plan after you provide both versions.
Why use it?
It organizes the comparison between the current and desired chart versions, including breaking changes and code updates that may be needed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to locate the Terraform helm_release, identify the chart and overrides, and produce an upgrade plan after you provide both versions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan
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.

Any agent
npx skills add abdullahkhawer/devops-skills --skill create-terraform-helm-upgrade-plan
Clone the repo
git clone --depth 1 https://github.com/abdullahkhawer/devops-skills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for create-terraform-helm-upgrade-plan

README.md
[![agentmods](https://agentmods.dev/badge/skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan/github.svg)](https://agentmods.dev/skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan)
Your own site
<a href="https://agentmods.dev/skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan"><img src="https://agentmods.dev/badge/skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for create-terraform-helm-upgrade-plan

Your own site · 80×15
<a href="https://agentmods.dev/skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan"><img src="https://agentmods.dev/badge/skills/abdullahkhawer/devops-skills/create-terraform-helm-upgrade-plan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 995 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00037 $0.00995
Opus 5 $0.00018 $0.00498
Sonnet 5 $0.00007 $0.00199
Haiku 4.5 $0.00004 $0.00100

Measured 10d ago against content hash fbad37711ffa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

create-terraform-helm-upgrade-plan 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 10d 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.

skills/create-terraform-helm-upgrade-plan/SKILL.md · 145 lines

How it starts

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

Create Terraform Helm Upgrade Plan Skill

Run this skill when asked to analyse a Helm chart upgrade for a Terraform-managed Helm release, or to create an upgrade plan.

Step 1 — Locate the Helm release in Terraform code

Scan the current working directory recursively for Terraform files that define a helm_release resource:

grep -r "helm_release" . --include="*.tf" -l

Read the matching files and extract:

  • Helm chart name (the chart argument)
  • Helm repository URL (the repository argument)
  • Any set blocks that override default values

If no helm_release resource is found, report this and ask the user to confirm the correct directory.


Step 2 — Ask for versions

Ask the user:

1. Current Helm chart version (the version currently deployed)?
2. Desired Helm chart version (the version you want to upgrade to)?

Do not attempt to infer versions from the Terraform code or any VERSION files — always ask.


Step 3 — Find the chart's source repository

Using the repository URL and chart name from Step 1, locate the chart's GitHub.com (or GitLab.com) source repository. Search the web if needed:

<chart-name> helm chart github.com site:github.com

Identify the correct tags for the current and desired versions (e.g. chart-4.12.3 and chart-4.13.1, or just the version numbers, depending on the project's tagging convention).


Step 4 — Compare chart versions

Fetch the diff between the two version tags. The comparison URL typically follows this pattern:

https://github.com/<org>/<repo>/compare/<current-tag>...<desired-tag>.diff

Fetch this URL to retrieve the full diff. If it is unavailable on GitHub.com, search GitLab.com.

Focus on changes in:

  • templates/ — all template files
  • values.yaml — default values
  • Chart.yaml — chart metadata and dependencies

Step 5 — Search for breaking changes

Search the web for breaking changes between the two versions:

<chart-name> helm chart upgrade <current-version> to <desired-version> breaking changes

Read the full file on GitHub · 145 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. 10d ago First seen · 145 lines · 37 tokens per session scan A fbad37711ffa

Subscribe to this mod's changes

create-terraform-helm-upgrade-plan is a skill published in the GitHub repository abdullahkhawer/devops-skills (7 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 995 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

workthreads

SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…

specstoryai/getspecstory · 126 tokens

docs-manage

Manage the Grounded Docs MCP Server documentation index. Covers scraping and indexing documentation from URLs or local files, refreshing existing indexes with changed content, and removing libraries from the index. Use when you need to add, update, or delete indexed documentation.

arabold/docs-mcp-server · 53 tokens

ecspresso

ECS deployment tool - deploy, manage, and troubleshoot ECS services.

kayac/ecspresso · 17 tokens

dokploy-deploy

This skill should be used when user asks to "deploy with Dokploy", "use Dokploy Cloud", "manage self-hosted Dokploy", "deploy Docker Compose on Dokploy", "manage Dokploy databases", "configure Dokploy domains", or "look up Dokploy CLI commands".

fcakyon/claude-codex-settings · 63 tokens

ultralytics-platform

This skill should be used when user asks to "upload my model to Ultralytics Platform", "push this run to the platform", "upload a dataset to platform", "download a dataset from platform", "search platform datasets", "start cloud training", "train on platform GPUs", "export a model on platform", "deploy a model…

fcakyon/claude-codex-settings · 112 tokens

fetch-url

Fetch a single URL and convert its content to Markdown. Use when you need to read a web page, documentation page, or API reference without indexing it. The content is returned as plain Markdown text on stdout.

arabold/docs-mcp-server · 45 tokens