Production-grade platform engineering handbook — Kubernetes, Terraform, Flux CD, GitHub Actions, AWS, and more.
64
80%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
#!/usr/bin/env bash
# render.sh — substitute __TOKEN__ placeholders in a template file.
# Usage: bash render.sh <template> KEY1=value1 KEY2=value2 > output
# Token format: __SNAKE_CASE__ — valid in YAML, JSON, and Markdown.
# Values may contain slashes and newlines; bash parameter expansion handles both
# without the escaping hazards of sed.
set -euo pipefail
template="$1"; shift
content="$(cat "$template")"
for pair in "$@"; do
name="${pair%%=*}"
value="${pair#*=}"
content="${content//__"${name}"__/${value}}"
done
printf '%s\n' "$content".claude-plugin
.github
assets
commands
docs
examples
agent-self-improve
argocd
awesome-docs
aws
cloudfront
functions
lambda-edge
functions
azure
compliance
conventional-commits
datadog
llm-observability
demo
documentation
dora
dynatrace
fluxcd
github-actions
composite-actions
configure-cloud
db-migrate
docker-build-push
k8s-deploy
notify-slack
pr-comment
release-tag
security-scan
setup-env
setup-terraform
terraform-plan
helm
web-service
templates
karpenter
kubernetes
kyverno
mcp
observability
openshift
pr-review
ownership
runtime-security
setup-agents
terraform
references
scripts
skills
platform-skills
tests