design-protocol 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +225 -0
  3. package/agents/dp-researcher.md +239 -0
  4. package/agents/dp-verifier.md +207 -0
  5. package/bin/install.js +464 -0
  6. package/commands/dp-back.md +221 -0
  7. package/commands/dp-discuss.md +257 -0
  8. package/commands/dp-execute.md +513 -0
  9. package/commands/dp-journey.md +85 -0
  10. package/commands/dp-progress.md +178 -0
  11. package/commands/dp-roadmap.md +83 -0
  12. package/commands/dp-skip.md +186 -0
  13. package/commands/dp-start.md +510 -0
  14. package/commands/dp-storytell.md +94 -0
  15. package/commands/dp-verify.md +207 -0
  16. package/package.json +59 -0
  17. package/skills/dp-color/SKILL.md +214 -0
  18. package/skills/dp-color/export_tokens.py +297 -0
  19. package/skills/dp-color/references/apca-contrast.md +87 -0
  20. package/skills/dp-color/references/hue-emotions.md +109 -0
  21. package/skills/dp-color/references/oklch-gamut.md +79 -0
  22. package/skills/dp-color/references/pitfalls.md +171 -0
  23. package/skills/dp-color/references/scale-patterns.md +206 -0
  24. package/skills/dp-color/references/tool-workflows.md +200 -0
  25. package/skills/dp-discovery/SKILL.md +480 -0
  26. package/skills/dp-eng_review/SKILL.md +471 -0
  27. package/skills/dp-eng_review/references/code-review-checklist.md +385 -0
  28. package/skills/dp-eng_review/references/react-patterns.md +512 -0
  29. package/skills/dp-eng_review/references/shadcn-patterns.md +510 -0
  30. package/skills/dp-eng_review/references/tailwind-conventions.md +351 -0
  31. package/skills/dp-journey/SKILL.md +682 -0
  32. package/skills/dp-journey/references/journey-types.md +97 -0
  33. package/skills/dp-journey/references/map-structures.md +177 -0
  34. package/skills/dp-journey/references/omnichannel-patterns.md +208 -0
  35. package/skills/dp-journey/references/research-methods.md +125 -0
  36. package/skills/dp-prd/SKILL.md +201 -0
  37. package/skills/dp-prd/references/claude-code-spec.md +107 -0
  38. package/skills/dp-prd/references/interview-questions.md +158 -0
  39. package/skills/dp-prd/references/section-templates.md +231 -0
  40. package/skills/dp-research/SKILL.md +540 -0
  41. package/skills/dp-research/references/facilitation-guide.md +291 -0
  42. package/skills/dp-research/references/interview-guide-template.md +190 -0
  43. package/skills/dp-research/references/method-selection.md +195 -0
  44. package/skills/dp-research/references/question-writing.md +244 -0
  45. package/skills/dp-research/references/research-report-template.md +363 -0
  46. package/skills/dp-research/references/synthesis-methods.md +289 -0
  47. package/skills/dp-research/references/usability-test-template.md +260 -0
  48. package/skills/dp-roadmap/SKILL.md +648 -0
  49. package/skills/dp-roadmap/references/prioritization-frameworks.md +312 -0
  50. package/skills/dp-roadmap/references/roadmap-structures.md +179 -0
  51. package/skills/dp-roadmap/references/roadmap-workshops.md +264 -0
  52. package/skills/dp-roadmap/references/theme-development.md +168 -0
  53. package/skills/dp-storytell/SKILL.md +645 -0
  54. package/skills/dp-storytell/references/audience-playbooks.md +260 -0
  55. package/skills/dp-storytell/references/content-type-templates.md +310 -0
  56. package/skills/dp-storytell/references/delivery-tactics.md +228 -0
  57. package/skills/dp-storytell/references/narrative-frameworks.md +259 -0
  58. package/skills/dp-ui/SKILL.md +503 -0
  59. package/skills/dp-ui/references/b2b-enterprise-patterns.md +319 -0
  60. package/skills/dp-ui/references/data-visualization.md +304 -0
  61. package/skills/dp-ui/references/visual-design-principles.md +237 -0
  62. package/skills/dp-ux/SKILL.md +414 -0
  63. package/skills/dp-ux/references/accessibility-checklist.md +128 -0
  64. package/skills/dp-ux/references/product-excellence.md +149 -0
  65. package/skills/dp-ux/references/usability-principles.md +140 -0
  66. package/skills/dp-ux/references/ux-patterns.md +221 -0
  67. package/templates/config.json +55 -0
  68. package/templates/context.md +96 -0
  69. package/templates/project.md +83 -0
  70. package/templates/requirements.md +137 -0
  71. package/templates/roadmap.md +168 -0
  72. package/templates/state.md +107 -0
@@ -0,0 +1,312 @@
1
+ # Prioritization Frameworks — Detailed Reference
2
+
3
+ Eight frameworks for ranking themes on a roadmap, with exact formulas, scales, fit, and pitfalls. Pick one per roadmap (mixing is OK once the team is mature).
4
+
5
+ ---
6
+
7
+ ## 1. RICE (Intercom, Sean McBride)
8
+
9
+ ### Formula
10
+ ```
11
+ RICE Score = (Reach × Impact × Confidence) / Effort
12
+ ```
13
+
14
+ ### Component scales
15
+
16
+ | Component | Scale | Notes |
17
+ |---|---|---|
18
+ | **Reach** | Absolute number | Users/events affected in a defined period (e.g., per quarter). Use real units. |
19
+ | **Impact** | 0.25 / 0.5 / 1 / 2 / 3 | 3 = massive; 2 = high; 1 = medium; 0.5 = low; 0.25 = minimal |
20
+ | **Confidence** | 50% / 80% / 100% | <50% = "moonshot"; don't go below that |
21
+ | **Effort** | Person-months | Combined design + eng + PM; min 0.5 |
22
+
23
+ ### Output unit
24
+ "Total impact per time worked."
25
+
26
+ ### When to use
27
+ - Data-rich backlog (you have usage analytics)
28
+ - Medium-to-large teams
29
+ - Mixed portfolio serving different segments (Reach normalizes)
30
+
31
+ ### When NOT to use
32
+ - Early-stage / low-data (Confidence collapses to <50% everywhere)
33
+ - Strategic platform bets (Effort dominates denominator, kills compounding investments)
34
+ - Compliance / must-do items (score irrelevant)
35
+
36
+ ### Strengths
37
+ - Forces explicit numbers
38
+ - Reach prevents loud-voice bias
39
+ - Confidence is anti-BS mechanism
40
+
41
+ ### Weaknesses
42
+ - Encourages false precision
43
+ - Impact scale still subjective
44
+ - Penalizes large bets
45
+
46
+ ### Common mistakes
47
+ 1. Treating 4.7 > 4.3 as meaningful when inputs are gut picks
48
+ 2. Confidence inflation — everyone defaults to 80-100%
49
+ 3. Effort underestimation — estimated before discovery
50
+ 4. Reach double-counting — same user across multiple features
51
+ 5. Mixing time units — Reach per quarter, Effort in weeks
52
+ 6. No cutoff threshold — scoring without a go/no-go is theater
53
+
54
+ ---
55
+
56
+ ## 2. ICE (Sean Ellis)
57
+
58
+ ### Formula
59
+ ```
60
+ ICE Score = Impact × Confidence × Ease
61
+ ```
62
+ Each factor 1-10.
63
+
64
+ ### When to use
65
+ - Growth/experimentation backlogs
66
+ - Early-stage teams
67
+ - A/B test ideation
68
+ - Speed > rigor
69
+
70
+ ### When NOT to use
71
+ - Cross-team portfolio decisions (too subjective to defend)
72
+ - When reach normalization matters
73
+
74
+ ### Critical caveat
75
+ ICE is a **conversation tool, not a decision algorithm**. Score variance between raters is huge. Use with ≥3 raters for mitigating bias.
76
+
77
+ ---
78
+
79
+ ## 3. MoSCoW
80
+
81
+ ### Structure
82
+ Not a formula — a categorization.
83
+
84
+ | Tier | Meaning |
85
+ |---|---|
86
+ | **M**ust have | Non-negotiable this release. Failure = project failure. |
87
+ | **S**hould have | Important, not vital. Painful to skip; project survives without. |
88
+ | **C**ould have | Desirable, low cost. Included if time/budget allows. |
89
+ | **W**on't have | Explicitly deferred. Critical to document. |
90
+
91
+ ### DSDM budget guideline
92
+ Must-haves ≤ 60% of effort. Should + Could ≈ 40% (Could acts as contingency).
93
+
94
+ ### When to use
95
+ - Fixed-timebox releases (sprints, MVPs, regulatory deadlines)
96
+ - Stakeholder alignment on scope cuts
97
+ - Agency/client contexts
98
+
99
+ ### When NOT to use
100
+ - Continuous delivery (timebox breaks down)
101
+ - Large backlogs — too coarse, everything becomes "Must"
102
+
103
+ ### Common failure
104
+ **Must-inflation.** Push back hard: "If this slipped, would the project fail?" If no, it's not a Must.
105
+
106
+ ---
107
+
108
+ ## 4. Kano Model (Noriaki Kano, 1984)
109
+
110
+ ### Five categories
111
+
112
+ | Category | Meaning | Example |
113
+ |---|---|---|
114
+ | **Must-be / Basic** | Expected. Absence causes dissatisfaction; presence is neutral. | Brakes on a car |
115
+ | **Performance** | Satisfaction scales linearly with investment. | Battery life |
116
+ | **Attractive / Delighter** | Unexpected. Absence not missed; presence delights. | Surprise discount |
117
+ | **Indifferent** | Users don't care. | Extra settings nobody uses |
118
+ | **Reverse** | Presence causes dissatisfaction for some. | Forced gamification |
119
+
120
+ ### Measurement
121
+ Kano survey pairs two questions per feature:
122
+ - **Functional:** "How would you feel if the product HAD feature X?"
123
+ - **Dysfunctional:** "How would you feel if it did NOT?"
124
+
125
+ Answers: Like / Expect / Neutral / Tolerate / Dislike.
126
+
127
+ Answer-pair lookup table classifies the feature.
128
+
129
+ ### Kano decay
130
+ Delighters → Performance → Basic over time. What wowed in 2020 is expected in 2026.
131
+
132
+ ### When to use
133
+ - Differentiation strategy
134
+ - Table-stakes vs. competitive differentiator diagnosis
135
+ - Need real user panel (≥30 respondents per segment)
136
+
137
+ ### When NOT to use
138
+ - Internal tools / B2B efficiency tools
139
+ - No survey capability
140
+ - Pure effort/cost reasoning
141
+
142
+ ---
143
+
144
+ ## 5. Value vs. Effort Matrix (2×2)
145
+
146
+ ### Structure
147
+ ```
148
+ Low Effort High Effort
149
+ High Value QUICK WINS BIG BETS
150
+ Low Value FILL-INS MONEY PITS
151
+ ```
152
+
153
+ ### When to use
154
+ - Rapid workshops, early ideation
155
+ - Aligning on obvious next moves
156
+ - "What should we do today?" conversations
157
+
158
+ ### When NOT to use
159
+ - Final prioritization (too coarse)
160
+ - When Value hides sub-dimensions (reach, confidence)
161
+
162
+ ### Common failure
163
+ **Top-left migration.** Every theme drifts to "high value / low effort" by stakeholder optimism. Force-rank within each quadrant to break the tie.
164
+
165
+ ### Recommended pairing
166
+ Use 2×2 as **first-pass filter**, then apply RICE or WSJF on the "Big Bets" quadrant.
167
+
168
+ ---
169
+
170
+ ## 6. WSJF — Weighted Shortest Job First (SAFe, Don Reinertsen)
171
+
172
+ ### Formula
173
+ ```
174
+ WSJF = Cost of Delay / Job Duration (or Size)
175
+
176
+ Cost of Delay (CoD) = User-Business Value + Time Criticality + Risk Reduction / Opportunity Enablement
177
+ ```
178
+
179
+ ### Scoring
180
+ **Modified Fibonacci** (1, 2, 3, 5, 8, 13, 20). Relative ranking within the batch. Never absolute units.
181
+
182
+ ### Components
183
+ - **User-Business Value** — relative value; revenue/penalty
184
+ - **Time Criticality** — does value decay? deadlines? competitive windows?
185
+ - **Risk Reduction / Opportunity Enablement (RR|OE)** — risks retired; opportunities unlocked
186
+ - **Job Size** — effort proxy (story points)
187
+
188
+ ### When to use
189
+ - SAFe / scaled agile
190
+ - Portfolio-level Epics
191
+ - Time-sensitive releases (compliance, seasonal)
192
+
193
+ ### When NOT to use
194
+ - Small teams, flat backlogs
195
+ - Near-identical time-criticality across items
196
+ - Non-SAFe orgs (high overhead)
197
+
198
+ ### Unique strength
199
+ **Time decay** is first-class. No other framework models "value erodes while we wait."
200
+
201
+ ---
202
+
203
+ ## 7. Opportunity Scoring (Anthony Ulwick, JTBD)
204
+
205
+ ### Formula
206
+ ```
207
+ Opportunity Score = Importance + max(Importance − Satisfaction, 0)
208
+ ```
209
+
210
+ ### Measurement
211
+ Survey users on **desired outcomes** (not features):
212
+ - **Importance:** "How important is it that [outcome]?" (1-10)
213
+ - **Satisfaction:** "How satisfied are you with your current ability to achieve [outcome]?" (1-10)
214
+
215
+ ### Interpretation thresholds
216
+ | Score | Meaning |
217
+ |---|---|
218
+ | ≥ 15 | Under-served (huge opportunity) |
219
+ | 12-15 | Opportunity |
220
+ | 10-12 | Appropriately served |
221
+ | < 10 | Over-served (disruption risk — simplify) |
222
+
223
+ ### When to use
224
+ - Product-market-fit discovery
225
+ - Competitive whitespace analysis
226
+ - JTBD-driven strategy
227
+
228
+ ### When NOT to use
229
+ - Feature-level backlog grooming (wrong altitude — it ranks outcomes)
230
+ - Small samples
231
+
232
+ ### Output
233
+ Classifies outcomes, not solutions. You still need ideation after.
234
+
235
+ ---
236
+
237
+ ## 8. Story Mapping (Jeff Patton)
238
+
239
+ ### Structure (not a prioritization formula)
240
+ - **Horizontal axis (Backbone):** user journey, left→right chronological
241
+ - **Vertical axis (Priority depth):** stories sliced top-to-bottom
242
+ - **Horizontal slices:** releases ("walking skeleton" = thinnest end-to-end slice)
243
+
244
+ ### Role in roadmapping
245
+ Story mapping is **orthogonal** to prioritization — not a replacement for RICE/ICE. Canonical pairing:
246
+ 1. Story map → identify the MVP slice
247
+ 2. RICE / WSJF → rank work within or across slices
248
+
249
+ ### When to use
250
+ - MVP scoping
251
+ - Aligning UX journey to engineering backlog
252
+ - Communicating scope across disciplines
253
+
254
+ ### Patton principle
255
+ *"Shared documents aren't shared understanding."* The point of story mapping is the conversation, not the artifact.
256
+
257
+ ---
258
+
259
+ ## Framework Selection Guide
260
+
261
+ | Situation | Data maturity | Team size | Recommended |
262
+ |---|---|---|---|
263
+ | Workshop, early ideation | None | Any | **Value / Effort 2×2** |
264
+ | Growth experiments | Some analytics | Small | **ICE** |
265
+ | Feature backlog with metrics | Good analytics | Medium+ | **RICE** |
266
+ | Timeboxed release (client/MVP) | Any | Any | **MoSCoW** |
267
+ | SAFe / scaled agile portfolio | Mature PM | Large | **WSJF** |
268
+ | Differentiation strategy | Survey capability | Any | **Kano** |
269
+ | Market / outcome discovery | Research budget | Any | **Opportunity Scoring** |
270
+ | MVP scoping | Any | Any | **Story Mapping** (+ a ranker) |
271
+
272
+ **Meta-rule:**
273
+ - Data-poor → qualitative (MoSCoW, 2×2)
274
+ - Data-rich → quantitative (RICE, WSJF)
275
+ - Research-rich → user-based (Kano, Opportunity Scoring)
276
+
277
+ ---
278
+
279
+ ## Universal Pitfalls (All Frameworks)
280
+
281
+ 1. **Confusing precision with accuracy** — A decimal-precise score built from gut picks is still a gut pick
282
+ 2. **Single-rater bias** — Always score with ≥3 people independently, then discuss deltas
283
+ 3. **No cutoff line** — If the team scores but never says "we'll do the top N and nothing below," the whole exercise is theater
284
+ 4. **Strategic bet exclusion** — Numeric frameworks penalize large platform bets. Carve out a reserved % of capacity for strategic investment outside the framework
285
+ 5. **Score inflation over time** — Themes added later get benchmarked against current scores rather than original scale; recalibrate quarterly
286
+ 6. **Ignoring dependencies** — A "high-score" theme blocked by a "low-score" theme still has to wait. Prioritization must include dependency ordering
287
+ 7. **Skipping validation** — High scores based on untested assumptions create larger waste than low-confidence admissions
288
+ 8. **Framework worship** — Any single framework will mis-prioritize edge cases. Use frameworks as tools, not as decision-makers
289
+
290
+ ---
291
+
292
+ ## NNGroup's General Stance
293
+
294
+ NNGroup generally prefers:
295
+ - **Lightweight visual tools (2×2)** during workshops for alignment
296
+ - **Skepticism toward numeric frameworks** — false precision is a recurring concern
297
+ - **Theme-based prioritization** — by user problem / outcome, not feature
298
+ - **Kano** useful diagnostically, not as sole tool
299
+
300
+ Verify at nngroup.com — "Prioritization Matrices," "UX Roadmaps," "Kano Model in UX."
301
+
302
+ ---
303
+
304
+ ## Workflow Integration
305
+
306
+ The skill uses prioritization output as follows:
307
+
308
+ 1. Score every theme using the chosen framework
309
+ 2. Rank-order within each horizon (Now / Next / Future)
310
+ 3. Write scores into the Theme Detail blocks
311
+ 4. Store the framework name and version in `config.json` under `optional_phases.roadmap.prioritization_framework`
312
+ 5. At each review cycle, re-score and log delta in the Change Log
@@ -0,0 +1,179 @@
1
+ # Roadmap Structures — Full Templates per Type
2
+
3
+ Templates for the four NNGroup roadmap types plus audience-specific variants. Use the matching template based on the type chosen in Step 1.
4
+
5
+ ---
6
+
7
+ ## Template 1 — Now / Next / Future (canonical NNGroup)
8
+
9
+ ### Header
10
+ ```
11
+ TITLE: [Product/Team/Portfolio] Roadmap
12
+ OWNER: [Name / Role]
13
+ DATE: [YYYY-MM-DD]
14
+ HIGH-LEVEL GOALS:
15
+ 1. [Company/org goal]
16
+ 2. [Company/org goal]
17
+ 3. [Company/org goal]
18
+ ```
19
+
20
+ ### Body
21
+
22
+ | Completed | Now | Next (2 quarters) | Future (6+ months) | Future++ |
23
+ |---|---|---|---|---|
24
+ | ✓ [Theme] | 🔨 [Theme] | → [Theme] | ? [Theme] | 💭 [Idea] |
25
+ | ✓ [Theme] | 🔨 [Theme] | → [Theme] | ? [Theme] | 💭 [Idea] |
26
+
27
+ ### Per-theme detail (linked from the table)
28
+
29
+ Each theme has full detail with Beneficiary / Need / Business Objective / Confidence / Disclaimers.
30
+
31
+ ### When to use
32
+ - Default choice
33
+ - Cross-functional audience
34
+ - Timelines uncertain but direction is clear
35
+
36
+ ---
37
+
38
+ ## Template 2 — Outcome-Based
39
+
40
+ ### Header
41
+ Same as Template 1.
42
+
43
+ ### Body
44
+ Themes grouped under outcomes:
45
+
46
+ ```
47
+ OUTCOME 1: Reduce onboarding drop-off from 40% → 25%
48
+ ├── Theme A: For first-time users, simplify activation path [Now]
49
+ ├── Theme B: For first-time users, reduce time-to-first-value [Next]
50
+ └── Theme C: For first-time users, personalize early suggestions [Future]
51
+
52
+ OUTCOME 2: Increase retention at 90 days from 50% → 65%
53
+ ├── Theme D: For active users, surface unused value [Now]
54
+ ├── Theme E: For at-risk users, trigger re-engagement [Next]
55
+ └── Theme F: ...
56
+ ```
57
+
58
+ ### When to use
59
+ - Org has explicit outcome targets (OKRs, North Star metric)
60
+ - Leadership wants to see work tied to measurable shifts
61
+ - Measuring progress matters more than sequencing
62
+
63
+ ---
64
+
65
+ ## Template 3 — Theme-Based (No Time Horizons)
66
+
67
+ ### Header
68
+ Same as Template 1 + "Commit order" line.
69
+
70
+ ### Body
71
+ Just themes, stack-ranked:
72
+
73
+ ```
74
+ 1. [Theme] — Priority score [X] — Owner [who]
75
+ 2. [Theme] — Priority score [X] — Owner [who]
76
+ 3. [Theme] — Priority score [X] — Owner [who]
77
+ ...
78
+ ```
79
+
80
+ ### When to use
81
+ - Velocity is unpredictable
82
+ - Team works in pull mode (take next when ready)
83
+ - Reporting to stakeholders who don't need timing commitments
84
+
85
+ ---
86
+
87
+ ## Template 4 — Lean / Low-Fidelity
88
+
89
+ ### Structure
90
+ Sticky-note wall (or digital equivalent — Miro, FigJam):
91
+
92
+ - **Column headers:** Now / Next / Future
93
+ - **Sticky notes:** one per theme, hand-written or typed
94
+ - **Color coding:** by audience or product area
95
+ - **Dot-vote marks:** for prioritization output
96
+
97
+ ### When to use
98
+ - In a workshop — live, collaborative
99
+ - When polish would slow alignment
100
+ - Iterating fast before freezing a format
101
+
102
+ ---
103
+
104
+ ## Audience-Specific Variants
105
+
106
+ The roadmap artifact can be re-rendered for different audiences without changing the content.
107
+
108
+ ### Variant A — Executive Read-Out (1-pager)
109
+ ```
110
+ ╔═══════════════════════════════════════════════════════════════╗
111
+ ║ [PRODUCT] UX ROADMAP — [QUARTER YEAR] ║
112
+ ║ Owner: [Name] · Last updated: [Date] ║
113
+ ╠═══════════════════════════════════════════════════════════════╣
114
+ ║ HIGH-LEVEL GOALS ║
115
+ ║ 1. [Goal] ║
116
+ ║ 2. [Goal] ║
117
+ ║ 3. [Goal] ║
118
+ ╠═══════════════════════════════════════════════════════════════╣
119
+ ║ NOW │ NEXT │ FUTURE ║
120
+ ║ [3 themes] │ [3 themes] │ [3 themes] ║
121
+ ╠═══════════════════════════════════════════════════════════════╣
122
+ ║ TOP-3 OUTCOMES WE'RE TARGETING ║
123
+ ║ 1. [Outcome] — Current: [X] Target: [Y] ║
124
+ ║ 2. [Outcome] — Current: [X] Target: [Y] ║
125
+ ║ 3. [Outcome] — Current: [X] Target: [Y] ║
126
+ ╠═══════════════════════════════════════════════════════════════╣
127
+ ║ NEXT REVIEW: [Date] ║
128
+ ╚═══════════════════════════════════════════════════════════════╝
129
+ ```
130
+ One page. No feature names. All outcome-oriented.
131
+
132
+ ### Variant B — Team-Internal View
133
+ Full detail table with all 9 theme components. Typically in Notion, Confluence, or a shared doc.
134
+
135
+ ### Variant C — Stakeholder Commitment View
136
+ Shows only **Now** and **Next**. Hides Future entirely to avoid over-commitment. Includes explicit disclaimer: *"Future direction is shown in the full roadmap on request — commitments are limited to Now and Next."*
137
+
138
+ ### Variant D — Product-Ops / Delivery View
139
+ Includes:
140
+ - Owner (team or person) per theme
141
+ - Estimated effort (from prioritization)
142
+ - Dependencies between themes
143
+ - Risk flags
144
+
145
+ Used by delivery/ops to plan capacity.
146
+
147
+ ---
148
+
149
+ ## Visualization Formats
150
+
151
+ The same content rendered in different visual formats:
152
+
153
+ | Format | Best for | Tool |
154
+ |---|---|---|
155
+ | Swimlane table | Detail-rich review | Notion, Confluence, Markdown |
156
+ | Gantt-like bars | Showing duration | Timeline view, Aha! |
157
+ | Kanban columns | Rolling refresh | Trello, Linear, Miro |
158
+ | Slide deck | Executive read-out | Slides with one theme per slide |
159
+ | One-pager PDF | Send-and-forget comms | PDF export |
160
+ | Live workshop wall | Iterative facilitation | Miro, FigJam, sticky notes |
161
+
162
+ **Recommendation:** maintain source-of-truth in one format (usually table). Generate derivatives from that source on demand.
163
+
164
+ ---
165
+
166
+ ## Versioning & Change Log
167
+
168
+ Every roadmap iteration should include:
169
+
170
+ ```markdown
171
+ ## Change Log
172
+ | Version | Date | Author | Changes |
173
+ |---|---|---|---|
174
+ | 1.0 | 2026-04-01 | [Owner] | Initial roadmap |
175
+ | 1.1 | 2026-05-15 | [Owner] | Moved Theme X from Next to Now; added Theme Y to Future (new research from team Z) |
176
+ | 2.0 | 2026-07-01 | [Owner] | Quarterly refresh — 40% of themes revised |
177
+ ```
178
+
179
+ Never delete themes from history — mark them as *completed*, *deprecated*, or *merged into X*.