Use when documentation needs updating - ensures variables.tf, docs/llms.md, kube.tf.example, and README are in sync
61
72%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
Fix and improve this skill with Tessl
tessl review fix ./.claude/skills/sync-docs/SKILL.mdEnsure documentation is synchronized across all key files when variables or features change.
/sync-docs| File | Purpose | Priority |
|---|---|---|
variables.tf | Source of truth for all variables | PRIMARY |
docs/llms.md | Comprehensive variable reference | HIGH |
kube.tf.example | Working example configuration | HIGH |
README.md | Project overview and quick start | MEDIUM |
MIGRATION.md | Operator-facing upgrade contract and v2 -> v3 variable map | HIGH for major upgrades |
docs/v2-to-v3-migration.md | Stepwise migration playbook | HIGH for major upgrades |
docs/selinux.md | SELinux policy provenance and AVC workflow | HIGH for SELinux changes |
docs/v3-release-evidence.md | Live proof and release evidence | HIGH for release claims |
docs/terraform.md | Auto-generated terraform docs | AUTO |
docs/v3-topology-recommendations.md | Topology chooser and release-shaping guidance | MEDIUM |
examples/*/README.md | Feature-specific operator examples | MEDIUM |
tests/README.md | Test gate expectations and live-test notes | MEDIUM |
.claude/skills/*/SKILL.md | Agent/operator workflows | MEDIUM |
digraph sync_flow {
rankdir=TB;
node [shape=box];
extract [label="1. Extract from variables.tf"];
compare [label="2. Compare with docs/llms.md"];
gaps [label="3. Identify gaps"];
update_llms [label="4. Update docs/llms.md"];
update_example [label="5. Update kube.tf.example"];
update_readme [label="6. Update README if needed"];
verify [label="7. Verify consistency"];
extract -> compare;
compare -> gaps;
gaps -> update_llms;
update_llms -> update_example;
update_example -> update_readme;
update_readme -> verify;
}Use Gemini for large file analysis:
# List all variables from variables.tf
gemini --model gemini-3.1-pro-preview -p "@variables.tf List ALL variable names defined in this file, one per line"
# Get variable details
gemini --model gemini-3.1-pro-preview -p "@variables.tf For variable '<name>', provide: type, default, description"# Compare variables.tf with docs/llms.md
gemini --model gemini-3.1-pro-preview -p \
"@variables.tf @docs/llms.md List ALL variables from variables.tf that are NOT documented in docs/llms.md. Output one per line."**Variable Name**
```tf
variable_name = "default_value"variable_name (Type, Optional/Required):
default_value### kube.tf.example Format
```tf
# Description of what this controls
# Additional context if needed
# variable_name = "default_value"For each undocumented variable:
variables.tflocals.tf and other filesdocs/llms.md| Section | Variables |
|---|---|
| Cluster Basics | cluster_name, hcloud_token, ssh_* |
| Network | network_, subnet_ |
| Control Plane | control_plane_* |
| Agents | agent_, autoscaler_ |
| Load Balancer | lb_, traefik_, nginx_* |
| CNI | cni_, cilium_, calico_* |
| Node Transport | node_transport_mode, tailscale_* |
| Storage | longhorn_* |
| Security | firewall_, audit_ |
| Advanced | Additional/misc options |
Ensure new variables appear in the example with:
# Check what's in example vs variables.tf
gemini --model gemini-3.1-pro-preview -p \
"@variables.tf @kube.tf.example List variables from variables.tf missing from kube.tf.example"Update README.md if:
Features section should match actual capabilities.
For Tailscale changes, keep these surfaces in sync:
README.md support table and Multinetwork sectionkube.tf.example Tailscale node-transport commentsdocs/llms.md support levels and variable notesdocs/v3-topology-recommendations.mdexamples/tailscale-node-transport/README.mdexamples/external-overlay-tailscale/README.mdexamples/external-overlay-cloudflare-access/README.md when access-boundary wording changes.claude/skills/kh-assistant/SKILL.md.claude/skills/migrate-v2-to-v3/SKILL.mdFor Cloudflare Zero Trust wording, keep the boundary consistent:
For Cilium Gateway API changes, keep these surfaces in sync:
variables.tf validation for cilium_gateway_api_enabledlocals.tf Cilium values and Gateway API CRD version mappingREADME.mdkube.tf.exampledocs/llms.mddocs/v3-topology-recommendations.mdexamples/cilium-gateway-api/README.md.claude/skills/kh-assistant/SKILL.md.claude/skills/test-changes/SKILL.mdFor embedded registry mirror changes, keep these surfaces in sync:
variables.tf validation for embedded_registry_mirrorlocals.tf effective generated registries YAML merge behaviorREADME.mdkube.tf.exampledocs/llms.mddocs/v3-topology-recommendations.md.claude/skills/kh-assistant/SKILL.md.claude/skills/test-changes/SKILL.mdFor v2 -> v3 migration or production-upgrade safety changes, keep these surfaces in sync:
MIGRATION.md, especially "Production in-place upgrades: safety model"docs/v2-to-v3-migration.mdCHANGELOG.md upgrade notesdocs/v3-release-evidence.md live proof.claude/skills/migrate-v2-to-v3/SKILL.md.claude/skills/upgrade-cluster/SKILL.md.claude/skills/kh-assistant/SKILL.mdThe no-destroy gate must include the full protected hcloud set:
hcloud_server, hcloud_network, hcloud_network_subnet,
hcloud_load_balancer, hcloud_volume, hcloud_primary_ip,
hcloud_placement_group, and hcloud_firewall.
For SELinux changes, keep these surfaces in sync:
docs/selinux.mdtemplates/kube-hetzner-selinux.tetemplates/k8s-custom-policies.tevariables.tf enable_selinux and per-pool selinux.claude/skills/debug-node/SKILL.md.claude/skills/kh-assistant/SKILL.mdDo not make generic "disable SELinux" recommendations. The operator path is
AVC evidence, udica-first workload policy, upstream module policy only with
reproducible denials, and per-pool selinux = false as the last resort.
For release presentation changes, verify README's "What's New in v3" tag link still points at the current release tag, and keep the section current with the live GitHub release body.
# Final verification
gemini --model gemini-3.1-pro-preview -p \
"@variables.tf @docs/llms.md @kube.tf.example Verify these files are consistent. List any discrepancies."MIGRATION.mddocs/selinux.md# Regenerate terraform docs
terraform-docs markdown . > docs/terraform.md
# Validate v3 topology/Gateway/registry surfaces
uv run scripts/validate_v3_final_polish_examples.py
# Validate rendered templates and negative contract cases when those surfaces change
uv run scripts/render_harness.py
uv run scripts/contract_negative_tests.py
# Search for variable across all docs
rg -n "variable_name" docs/ kube.tf.example README.md
# Find undocumented variables (quick check)
diff <(rg -o 'variable "([^"]+)"' -r '$1' variables.tf | sort) \
<(rg -o '`[a-z_]+`' docs/llms.md | tr -d '`' | sort -u) | rg "^<"terraform fmt -recursivedocs: sync documentation with variables.tfa8b696d
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.