roadmap-visualizerlisted
Install: claude install-skill Oldvictech/session-continuity
# Roadmap Visualizer
Keeps one canonical roadmap file and turns it into a visual that can be read in
seconds. It fights the wall-of-text problem — so it must not reproduce the wall.
## Operating principle
**`ROADMAP.md` is the single source of truth — not the chat, not this skill.**
Every render reads it first. Every agreed change is written back to it immediately.
The chat is where the roadmap is discussed; `ROADMAP.md` is where it lives. These
must never drift apart.
---
## The canonical file: ROADMAP.md
The skill reads and writes this exact structure so the file stays machine-reliable
and human-readable. The **status table is the canonical data**; the diagram is a
generated view of it (regenerated from the table on every change, so they can't
disagree).
```markdown
# Project Roadmap
_Last updated: YYYY-MM-DD · ROADMAP.md is the source of truth for project sequencing._
## Shape
<gated-sequence | time-bound | parallel-streams | decision-tree | status-board>
## Diagram
<mermaid block — a generated VIEW of the Status table below; do not hand-edit>
## Status
| # | Item | Status | Gated on / Next |
|---|------|--------|-----------------|
| 1 | ... | ✅ Done | — |
| 2 | ... | 🔄 In flight | ... |
| 3 | ... | ⏳ Pending | depends on #2 |
| 4 | ... | ❌ Blocked | blocker: ... |
| 5 | ... | 🅿️ Parked | ... |
## Constraints / Invariants
- <locked decisions, immutable items, guardrails — omit section if none>
## Amendment log
- YYYY-MM-DD: <what changed and why>
```
St