README terminal demos without recording leaks.
Turn a small JSON spec plus captured command output into a reproducible, sanitized animated SVG. Leak scan refuses home paths and hostnames. No runtime JavaScript in the embed.
Install · Use it · Used by Brigade
pipx install plating-cli
npm install -g svg-term-cli # SVG renderer plating shells out to
plating render examples/plating-demo.json| Job | What you get | |
|---|---|---|
| Spec | JSON steps + outputs | Commands stay honest; animation is synthesized |
| Scan | Refuse identity leaks | Home paths, username, hostname, private IPs |
| Render | Animated SVG embed | GitHub README and sites as a plain img |
| Verify | Drift detection | Re-run specs when CLI output changes |
That recording was made by plating itself.
Write a spec, quickstart.json:
{
"title": "quickstart",
"width": 84,
"steps": [
{ "command": "mytool --version", "output": "mytool 1.2.3\n" },
{ "command": "mytool build", "output_file": "build-output.txt" }
]
}Render it:
plating render quickstart.json
# wrote quickstart.svg (and quickstart.cast, the reproducible source)Then embed quickstart.svg in your README or drop it into a site.
In priority order:
| In the step | Output is |
|---|---|
"output": "..." |
the literal string |
"output_file": "path" |
a captured-output file (relative to the spec) |
"run": true (or plating render --run) |
the live result of running command |
Live capture (--run) is convenient; committing captured output is what makes it reproducible in CI. Use normalize to rewrite a throwaway path into something clean:
{ "normalize": [["/tmp/tmp.AbC123/demo", "~/my-repo"]] }Before rendering, plating scans the recording for /home/... and /Users/... paths, the machine's current username and hostname, and private IPs. If it finds one it refuses to render and tells you how to fix it (add a normalize rule, or pass --allow-leaks). You can also point the scan at a Content Guard policy JSON so demo recordings share the same fleet denylist:
plating scan some-recording.cast
plating scan some-recording.cast --policy ../content-guard/policies/public-repo.json
plating render quickstart.json --scan-policy ../content-guard/policies/public-repo.json
plating verify quickstart.json --scan-policy ../content-guard/policies/public-repo.jsonSpec keys: title, width, height, padding, window (macOS chrome, on by default), prompt, prompt_color, the timing knobs (type_speed, line_delay, command_pause, ... see src/plating/cast.py), normalize, scan_patterns, scan_policy, cwd.
CLI:
plating render <spec> [--run] [--cwd DIR] [--out-dir DIR] [--png MS] [--allow-leaks] [--scan-policy FILE]
plating verify <spec> [--cwd DIR] [--allow-leaks] [--scan-policy FILE]
plating scan <file> [--policy FILE]
--png MS writes a static PNG of the frame at MS milliseconds (via headless Chrome), handy for a quick eyeball before you commit the SVG.
examples/brigade-quickstart.json rebuilds the quickstart recording used in the Brigade README from its real, captured output:
plating render examples/brigade-quickstart.jsonMIT. See LICENSE.
