CtrlK
BlogDocsLog inGet started
Tessl Logo

nitinjain999/platform-skills

Production-grade platform engineering handbook — Kubernetes, Terraform, Flux CD, GitHub Actions, AWS, and more.

64

Quality

80%

Does it follow best practices?

Impact

No eval scenarios have been run

SecuritybySnyk

Advisory

Suggest reviewing before use

Overview
Quality
Evals
Security
Files

render.shassets/

#!/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"

BEFORE_AFTER.md

CHANGELOG.md

CODE_OF_CONDUCT.md

COMMANDS.md

CONTRIBUTING.md

EDITOR_INTEGRATIONS.md

GETTING_STARTED.md

HOW_IT_WORKS.md

install.sh

INSTALLATION.md

LAUNCH.md

PROMPTS.md

QUICKSTART.md

README.md

renovate.json

SECURITY.md

SKILL.md

tessl.json

tile.json