Use when complex comparisons, architectures, processes, decisions, or risk boundaries are easier to understand as a graphic-first, minimal-text, temporary HTML brief.
Turn dense material into a graphic-first, minimal-text, self-contained HTML brief. The brief is a disposable communication surface, never the authoritative evidence store.
Use when the user asks for a visual, diagram, map, dashboard, or burnable report, or when a comparison, architecture, process, dependency, decision, or risk boundary is materially clearer spatially than in prose.
Do not use for simple facts, exact commands, source code/diffs, urgent alerts, canonical legal/audit artifacts, or decoration without information gain.
Choose a visual grammar that matches the information:
Information shape
Preferred visual
sequence or handoff
branching flow, swimlane, or timeline
architecture or dependency
node-link map, layered stack, or boundary graph
comparison
aligned matrix or grouped/stacked bar chart with real measures
status and thresholds
bar, bullet chart, sparkline, or gauge backed by observed values
decision and trade-off
decision tree, quadrant, or weighted trade-off plot
risk and control boundary
safe path, blocked path, or nested authority zones
The base template provides an SVG branching route and nested boundary map. Adapt the geometry to the real relationships or replace it; delete unused sections.
Use position, grouping, color, line, direction, containment, and scale to encode meaning. Keep labels inside shapes short. Do not create long prose boxes, decorative meters without measurements, or rows of option cards that should be bullets. Never invent metrics to make a chart look complete.
Durable-source boundary
A brief may summarize or point to canonical evidence, but it must not be the only copy of durable facts, approvals, source ledgers, recovery instructions, or specifications. If HTML itself is the durable deliverable, use the applicable report workflow and store it under reports/, not this transient path.
Workflow
Identify one reading outcome: understand, compare, decide, or monitor.
Separate durable evidence from temporary presentation.
Select one dominant visual grammar and at most two supporting patterns.
Delete template sections that do not encode a real relationship, boundary, sequence, or measured comparison.
Fill every placeholder; add concise provenance, caveats, and next action.
Set UTC creation/expiry metadata and mode 0600 where applicable.
Run the standard-library validator.
Open locally and inspect desktop plus approximately 390px mobile width.
Deliver the attachment with a short caption; do not paste the report into chat.
Seven-day lifecycle
At seven days, workspace hygiene should propose the expired file for cleanup. Deletion remains separately approval-gated. If a brief still matters, regenerate it from durable sources with current facts; do not refresh its timestamp merely to evade expiry.
Common pitfalls
HTML for everything. Use it only when spatial communication reduces reading cost.
Prose in cards. Borders do not turn paragraphs into graphics.
False geometry. Connectors and containment must reflect actual semantics.
Decorative data. Charts require observed values.
Remote assets. They create privacy and availability risk.
Orphaned truth. Temporary HTML cannot be the sole evidence record.
Unverified rendering. Validator success does not replace visual QA.
Verification checklist
Trigger gate passed and the artifact reduces reading cost.
An actual diagram or data-backed chart is visually dominant.
Position, connectors, containment, or scale encodes real meaning.
Text stays concise without hiding scope, uncertainty, risk, or action.
Sources and durable artifacts are named or linked.
No secret, private path, or unrelated personal data is present.
File is self-contained, script-free, and mode 0600 on POSIX.
Creation and seven-day expiry metadata are valid.
Validator, desktop/mobile, overflow, contrast, and console checks pass.
1---2name: burnable-visual-briefs3description: Use when complex comparisons, architectures, processes, decisions, or risk boundaries are easier to understand as a graphic-first, minimal-text, temporary HTML brief.4license: MIT5---67# Burnable Visual Briefs89## Overview1011Turn dense material into a graphic-first, minimal-text, self-contained HTML brief. The brief is a disposable communication surface, never the authoritative evidence store.1213```text14canonical evidence → burnable visual brief → short caption + attachment15```1617## Trigger gate1819Use when the user asks for a visual, diagram, map, dashboard, or burnable report, or when a comparison, architecture, process, dependency, decision, or risk boundary is materially clearer spatially than in prose.2021Do not use for simple facts, exact commands, source code/diffs, urgent alerts, canonical legal/audit artifacts, or decoration without information gain.2223## Artifact contract2425Write final briefs under:2627```text28<active-workspace>/scratch/visual-briefs/29 <profile>/<YYYY-MM-DD>/<YYYYMMDDTHHMMSSZ>-<concise-slug>.html30```3132Rules:3334- one standalone UTF-8 `.html` file with a responsive viewport;35- mode `0600` on POSIX systems;36- inline CSS and SVG only;37- no JavaScript, external stylesheets, web fonts, trackers, forms, iframes, embedded objects, or remotely loaded assets;38- ordinary `https://` source links are allowed;39- include `hermes-created-at` and `hermes-expires-at` UTC metadata;40- expiry is no more than seven days after creation;41- never include credentials, hidden raw data, or unrelated personal information.4243Use `templates/burnable-visual-brief.html` as a starting point and validate before delivery:4445```bash46python3 <skill-package>/scripts/validate_brief.py \47 --root <active-workspace>/scratch/visual-briefs \48 /absolute/path/to/brief.html49```5051## Graphic-first contract5253Choose a visual grammar that matches the information:5455| Information shape | Preferred visual |56|---|---|57| sequence or handoff | branching flow, swimlane, or timeline |58| architecture or dependency | node-link map, layered stack, or boundary graph |59| comparison | aligned matrix or grouped/stacked bar chart with real measures |60| status and thresholds | bar, bullet chart, sparkline, or gauge backed by observed values |61| decision and trade-off | decision tree, quadrant, or weighted trade-off plot |62| risk and control boundary | safe path, blocked path, or nested authority zones |6364The base template provides an SVG branching route and nested boundary map. Adapt the geometry to the real relationships or replace it; delete unused sections.6566Use position, grouping, color, line, direction, containment, and scale to encode meaning. Keep labels inside shapes short. Do not create long prose boxes, decorative meters without measurements, or rows of option cards that should be bullets. Never invent metrics to make a chart look complete.6768## Durable-source boundary6970A brief may summarize or point to canonical evidence, but it must not be the only copy of durable facts, approvals, source ledgers, recovery instructions, or specifications. If HTML itself is the durable deliverable, use the applicable report workflow and store it under `reports/`, not this transient path.7172## Workflow73741. Identify one reading outcome: understand, compare, decide, or monitor.752. Separate durable evidence from temporary presentation.763. Select one dominant visual grammar and at most two supporting patterns.774. Delete template sections that do not encode a real relationship, boundary, sequence, or measured comparison.785. Fill every placeholder; add concise provenance, caveats, and next action.796. Set UTC creation/expiry metadata and mode `0600` where applicable.807. Run the standard-library validator.818. Open locally and inspect desktop plus approximately 390px mobile width.829. Check console errors, clipping, overlap, tiny text, page-level overflow, contrast, and connector semantics.8310. Deliver the attachment with a short caption; do not paste the report into chat.8485## Seven-day lifecycle8687At seven days, workspace hygiene should propose the expired file for cleanup. Deletion remains separately approval-gated. If a brief still matters, regenerate it from durable sources with current facts; do not refresh its timestamp merely to evade expiry.8889## Common pitfalls90911. **HTML for everything.** Use it only when spatial communication reduces reading cost.922. **Prose in cards.** Borders do not turn paragraphs into graphics.933. **False geometry.** Connectors and containment must reflect actual semantics.944. **Decorative data.** Charts require observed values.955. **Remote assets.** They create privacy and availability risk.966. **Orphaned truth.** Temporary HTML cannot be the sole evidence record.977. **Unverified rendering.** Validator success does not replace visual QA.9899## Verification checklist100101- [ ] Trigger gate passed and the artifact reduces reading cost.102- [ ] An actual diagram or data-backed chart is visually dominant.103- [ ] Position, connectors, containment, or scale encodes real meaning.104- [ ] Text stays concise without hiding scope, uncertainty, risk, or action.105- [ ] Sources and durable artifacts are named or linked.106- [ ] No secret, private path, or unrelated personal data is present.107- [ ] File is self-contained, script-free, and mode `0600` on POSIX.108- [ ] Creation and seven-day expiry metadata are valid.109- [ ] Validator, desktop/mobile, overflow, contrast, and console checks pass.
Run npx skillmds@latest add saikaaco/burnable-visual-briefs in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Use when complex comparisons, architectures, processes, decisions, or risk boundaries are easier to understand as a graphic-first, minimal-text, temporary HTML brief. It is listed under Web & Frontend on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free. This skill is licensed under MIT.
SaikaAco (@saikaaco) published this skill. Their other Agent Skills are listed on their SkillMD profile.