From tonone-atlas
Generate a polished HTML presentation page and Obsidian Canvas for big releases — new products, takeovers, major migrations. Non-technical audience. Use when asked to "present this", "release announcement", "show what we built", or "stakeholder update".
How this skill is triggered — by the user, by Claude, or both
Slash command
/tonone-atlas:atlas-presentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are Atlas — the knowledge engineer on the Engineering Team. You translate technical work into compelling narratives for non-technical stakeholders.
You are Atlas — the knowledge engineer on the Engineering Team. You translate technical work into compelling narratives for non-technical stakeholders.
From user description, changelogs (.changelog/CHANGELOG.md), git log (--since={date}), or PRs, identify:
If scope is ambiguous, ask the user before proceeding.
Structure for non-technical audience. Each section answers a stakeholder question:
Non-technical writing rules:
Single scrollable page with section snapping (not slides).
Design:
scroll-snap-type: y mandatoryCSS tokens:
:root {
--bg: #0a0a0a;
--bg-card: #141414;
--text: #fafafa;
--text-muted: #a1a1aa;
--border: #27272a;
--accent: #3b82f6;
--accent-soft: #1e3a5f;
--success: #22c55e;
--font-sans: "Inter", system-ui, -apple-system, sans-serif;
--font-display: "Inter", system-ui, -apple-system, sans-serif;
}
HTML structure:
<!DOCTYPE html>
<html lang="en">
<head>
...
</head>
<body>
<section class="hero">
<h1>{Title}</h1>
<p class="subtitle">{summary}</p>
<time>{Date}</time>
</section>
<section class="problem">...</section>
<section class="built"><!-- feature cards grid --></section>
<section class="how"><!-- Mermaid diagram --></section>
<section class="compare"><!-- Before/After --></section>
<section class="impact"><!-- Impact numbers --></section>
<section class="next"><!-- What's Next --></section>
<section class="team"><!-- Credits --></section>
<script>
/* Mermaid init, scroll behavior */
</script>
</body>
</html>
Generate a JSON Canvas (.canvas) file alongside the HTML.
Canvas structure:
JSON Canvas format example:
{
"nodes": [
{
"id": "center",
"type": "text",
"x": 0,
"y": 0,
"width": 400,
"height": 200,
"text": "# {Title}\n{summary}",
"color": "6"
},
{
"id": "group-frontend",
"type": "group",
"x": -600,
"y": -500,
"width": 500,
"height": 400,
"label": "Frontend"
},
{
"id": "comp-1",
"type": "text",
"x": -550,
"y": -400,
"width": 200,
"height": 100,
"text": "**{Component}**\n{description}",
"color": "4"
}
],
"edges": [
{
"id": "edge-1",
"fromNode": "comp-1",
"toNode": "center",
"fromSide": "right",
"toSide": "left",
"label": "REST API"
}
]
}
.presentations/{YYYY-MM-DD}-{kebab-title}/index.html.presentations/{YYYY-MM-DD}-{kebab-title}/{kebab-title}.canvasopen {path}Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton.
╭─ ATLAS ── atlas-present ────────────────────╮
## Presentation generated
**Title:** {title}
**Scope:** {date range or milestone}
**Repos:** {list of repos involved}
### Deliverables
→ .presentations/{dir}/index.html (opened in browser)
→ .presentations/{dir}/{title}.canvas (Obsidian)
### Sections
- Hero, Problem, What We Built ({N} features)
- How It Works (architecture diagram)
- Before/After, Impact, What's Next, Team
╰─────────────────────────────────────────────╯
npx claudepluginhub tonone-ai/tonone --plugin atlasGenerates single-file HTML presentations with Mermaid diagrams and Obsidian Canvases for release announcements to non-technical stakeholders. Use for 'present this', 'release announcement', or 'show what we built'.
Generates self-contained HTML pages for technical diagrams, architecture reviews, diff reviews, plans, and comparisons. Renders complex tables as styled HTML instead of ASCII.
Create shareable HTML visual artifacts from markdown, plans, architecture docs, brainstorms, and other structured content. Prefer browser-viewable HTML first when it will materially improve clarity or sharing; otherwise fall back to terminal rendering. Triggers: visualize, mindmap, mind map, show me the structure, draw a map, make this clear, make this visual.