home-ops: Skill for Claude Code

.claude/skills/flux-substitution/SKILL.md

flux-substitution is a skill for Claude Code from Aviator-Coding/home-ops. It costs 79 tokens per session (842 once invoked), scanned A, original, MIT.

A project guide for handling `${...}` text in Flux-managed Kubernetes configuration. Flux is a deployment tool that replaces marked variables when it builds configuration, so ordinary application or dashboard variables can be mistaken for deployment variables.

In plain words
What is it for?
Use it when editing Grafana dashboards, Helm values, ConfigMaps, or container environment settings managed by Flux, or when a Flux Kustomization reports a substitution error.
Why use it?
It prevents a whole Flux deployment from failing because a literal variable was interpreted as missing configuration. It also describes how to diagnose and fix these substitution conflicts.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions AGENTS.md.

This is Aviator-Coding/home-ops's own configuration. It tells Claude Code how to work on home-ops itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything home-ops configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Aviator-Coding/home-ops. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Aviator-Coding/home-ops/main/.claude/skills/flux-substitution/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Aviator-Coding/home-ops

Made for: Claude Code.

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 flux-substitution

README.md
[![agentmods](https://agentmods.dev/badge/skills/aviator-coding/home-ops/flux-substitution.svg)](https://agentmods.dev/skills/aviator-coding/home-ops/flux-substitution)
Your own site
<a href="https://agentmods.dev/skills/aviator-coding/home-ops/flux-substitution"><img src="https://agentmods.dev/badge/skills/aviator-coding/home-ops/flux-substitution.svg" alt="Measured on agentmods" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 842 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.00079 $0.00842
Opus 5 $0.00039 $0.00421
Sonnet 5 $0.00016 $0.00168
Haiku 4.5 $0.00008 $0.00084

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

Security

Grade A, and why

flux-substitution 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 3d 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.

.claude/skills/flux-substitution/SKILL.md · 20 lines

What it actually says

Flux postBuild.substitute and literal ${...} tokens

Relocated verbatim from AGENTS.md on 2026-09-01 so it loads only when this subsystem is in play. The text below is unchanged; only line breaks were inserted. AGENTS.md keeps a one-sentence pointer. Add new findings here or to the owning document, not back into AGENTS.md - see its "Maintaining this file" section for the rule.

  • postBuild.substitute collision (literal ${...} tokens): Flux's strict-mode envsubst runs over the entire built Kustomization output, so any literal ${...} token that isn't a Flux substitution variable - a Grafana dashboard variable like ${__url_time_range}/${datasource}, or an app's own unresolved var like ${TIMEZONE} - gets treated as a missing Flux variable and fails the whole Kustomization, not just the offending resource. Flux only reports the first failure per Kustomization, so fixing one collision can reveal another underneath it. This caused a 44-day, 4-app outage (coder, grafana, rsshub, rsshub-playwright frozen at once commit) before being fixed in #1371 - see git show e5a43b1b. task flux:test:* / CI's flate do not catch this, and the 2026-08-29 flux-local -> flate migration did not change that - do not let flate's use of Flux's own libraries suggest otherwise. flux-local never ran a real envsubst pass at all (postbuild_substitute only fed Helm values). flate does call fluxcd/pkg/envsubst, the exact engine kustomize-controller uses, and honours kustomize.toolkit.fluxcd.io/substitute: disabled - but only in lenient mode, with no strict flag: Substitute (pkg/kustomize/substitute.go) returns exists=true for every lookup, so an undefined ${VAR} expands to empty rather than failing. Our cluster runs StrictPostBuildSubstitutions=true (opt-out since kustomize-controller v1.9). Measured on this repo against flate v0.6.1: injecting a literal ${UNDEFINED_COLLISION_TOKEN} renders it as empty and still reports 299 passed, exit 0. So a PR can go green and still freeze the cluster. Detect it live with flux get ks -A --status-selector ready=false (message names the offending variable, e.g. envsubst error: variable not set (strict mode): "datasource"). Three fixes, pick by situation:

    • Annotate the specific resource kustomize.toolkit.fluxcd.io/substitute: disabled when it's a whole resource full of non-Flux tokens (e.g. a Grafana dashboard ConfigMap) - kubernetes/apps/base/coder/app/kustomization.yaml (coder-dashboards configMapGenerator).

    • Escape with $${...} when the same resource legitimately mixes real Flux variables with literal ones - kubernetes/apps/base/monitoring/grafana/app/helmrelease.yaml ($${datasource} next to real ${SECRET_DOMAIN} substitution).

    • Define the variable properly when it's a genuinely missing Flux var, not a false-positive match - kubernetes/apps/base/selfhosted/rsshub/playwright/helmrelease.yaml renamed ${TIMEZONE} to ${CONFIG_TIMEZONE}, defined in kubernetes/apps/main/selfhosted/rsshub.yaml's substitute map.

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. 3d ago First seen · 20 lines · 79 tokens per session scan A dbf6445e6ce8

Subscribe to this mod's changes

flux-substitution is a skill published in the GitHub repository Aviator-Coding/home-ops (2 stars, last pushed today), licensed MIT. It adds 79 tokens to every session and 842 once invoked, about $0.0004 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-09-04.

Related

Other skills, from other repositories

import-prom-rule

Bulk import of a Prometheus alert rule YAML file (create a whole set of rules at once). Dedicated to handling a remote URL or local YAML text, automatically parsing the three formats groups / a plain rules array / a single rule. ⚠️ Do not use this skill for single-rule creation — when the user describes a single alert…

ccfos/nightingale · 125 tokens

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

configure-env-variables

Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…

microsoft/power-platform-skills · 119 tokens

atmos-profiles

Atmos profiles: profile directories, --profile and ATMOSPROFILE activation, profile merge behavior, environment switching, and routing profile-specific auth/toolchain/config overrides.

cloudposse/atmos · 35 tokens

webhook-management

Configure and validate CCAM webhook targets across supported chat, incident, automation, and generic providers. Use when listing provider requirements, creating or updating a target, scoping it to alert rules, sending a test notification, reviewing delivery history, or deleting a target.

hoangsonww/Claude-Code-Agent-Monitor · 56 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens