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,244 @@
1
+ # Writing Unbiased Research Questions
2
+
3
+ Your questions shape your data. Biased questions = biased insights.
4
+
5
+ ---
6
+
7
+ ## The Cardinal Rule
8
+
9
+ **Ask about behavior, not opinions about future behavior.**
10
+
11
+ ❌ "Would you use this feature?"
12
+ ✅ "Tell me about the last time you needed to [do this thing]."
13
+
14
+ People are terrible at predicting their own behavior. They're great at describing what they've actually done.
15
+
16
+ ---
17
+
18
+ ## Question Types
19
+
20
+ ### Open-Ended Questions (Primary)
21
+
22
+ Start with these words:
23
+ - "Tell me about..."
24
+ - "Walk me through..."
25
+ - "Describe..."
26
+ - "How do you..."
27
+ - "What happens when..."
28
+ - "Help me understand..."
29
+
30
+ **Examples:**
31
+ - "Tell me about the last time you had to track a vessel."
32
+ - "Walk me through how you handle [task] today."
33
+ - "Describe a time when this process went wrong."
34
+
35
+ ### Probing Questions (Follow-ups)
36
+
37
+ Use to dig deeper:
38
+ - "Tell me more about that..."
39
+ - "What do you mean by [their term]?"
40
+ - "Can you give me a specific example?"
41
+ - "What happened next?"
42
+ - "Why was that important?"
43
+ - "How did that affect you?"
44
+ - "What were you thinking at that moment?"
45
+
46
+ ### Clarifying Questions (When needed)
47
+
48
+ - "Just to make sure I understand — [restate]. Is that right?"
49
+ - "When you say [term], what do you mean?"
50
+ - "Can you help me understand [concept]?"
51
+
52
+ ---
53
+
54
+ ## Bias Types & How to Avoid Them
55
+
56
+ ### Leading Questions
57
+
58
+ **Problem:** Suggests the "right" answer
59
+
60
+ ❌ "Don't you find the current process frustrating?"
61
+ ✅ "How would you describe the current process?"
62
+
63
+ ❌ "How much do you love this feature?"
64
+ ✅ "What's your reaction to this feature?"
65
+
66
+ ❌ "That must be really difficult, right?"
67
+ ✅ "What's that experience like for you?"
68
+
69
+ **Fix:** Remove any words that suggest how they should feel.
70
+
71
+ ---
72
+
73
+ ### Loaded Questions
74
+
75
+ **Problem:** Contains assumptions
76
+
77
+ ❌ "Why is the current system so confusing?"
78
+ ✅ "How would you describe your experience with the current system?"
79
+
80
+ ❌ "How do you deal with the poor performance?"
81
+ ✅ "How would you describe the performance?"
82
+
83
+ **Fix:** Remove embedded judgments. Let them supply the adjectives.
84
+
85
+ ---
86
+
87
+ ### Double-Barreled Questions
88
+
89
+ **Problem:** Asks two things at once
90
+
91
+ ❌ "Do you find the interface easy to use and visually appealing?"
92
+ ✅ "How easy or difficult is the interface to use?"
93
+ ✅ (Then separately) "What do you think of the visual design?"
94
+
95
+ ❌ "How often do you search for vessels and view their cargo details?"
96
+ ✅ "How often do you search for vessels?"
97
+ ✅ "How often do you view cargo details?"
98
+
99
+ **Fix:** One question per question.
100
+
101
+ ---
102
+
103
+ ### Hypothetical Questions
104
+
105
+ **Problem:** Asks about imaginary future behavior
106
+
107
+ ❌ "Would you pay for this feature?"
108
+ ✅ "Tell me about a time you paid for a tool to help with this."
109
+
110
+ ❌ "If we added X, would you use it?"
111
+ ✅ "How do you currently handle [the problem X solves]?"
112
+
113
+ ❌ "Would this be useful for your team?"
114
+ ✅ "How does your team currently approach this?"
115
+
116
+ **Fix:** Ask about past behavior, not future intentions.
117
+
118
+ ---
119
+
120
+ ### Binary Questions
121
+
122
+ **Problem:** Limits responses to yes/no
123
+
124
+ ❌ "Do you like this design?"
125
+ ✅ "What's your reaction to this design?"
126
+
127
+ ❌ "Is this easy to understand?"
128
+ ✅ "Walk me through your understanding of what's happening here."
129
+
130
+ ❌ "Did you find that confusing?"
131
+ ✅ "What was that experience like?"
132
+
133
+ **Fix:** Reframe as open-ended.
134
+
135
+ ---
136
+
137
+ ### Jargon-Heavy Questions
138
+
139
+ **Problem:** Uses internal/technical terms users don't know
140
+
141
+ ❌ "How do you use the vessel ETA disambiguation feature?"
142
+ ✅ "When you see multiple arrival times for a vessel, what do you do?"
143
+
144
+ ❌ "Rate the discoverability of the cargo manifests."
145
+ ✅ "If you needed to find cargo information, where would you look?"
146
+
147
+ **Fix:** Use their language, not yours.
148
+
149
+ ---
150
+
151
+ ## Good Question Formulas
152
+
153
+ ### For Understanding Current Behavior
154
+
155
+ - "Tell me about the last time you [did X]..."
156
+ - "Walk me through how you typically [handle Y]..."
157
+ - "What's the first thing you do when [situation]?"
158
+ - "How did you learn to [do this task]?"
159
+
160
+ ### For Uncovering Pain Points
161
+
162
+ - "What's the most challenging part of [process]?"
163
+ - "When does [task] take longer than you'd like?"
164
+ - "Tell me about a time when [process] went wrong."
165
+ - "What workarounds have you developed?"
166
+
167
+ ### For Understanding Motivations
168
+
169
+ - "Why is [that] important?"
170
+ - "What are you ultimately trying to achieve when you [action]?"
171
+ - "What happens if [task] doesn't get done?"
172
+ - "What would success look like?"
173
+
174
+ ### For Getting Specifics
175
+
176
+ - "Can you give me a recent example?"
177
+ - "When was the last time that happened?"
178
+ - "Who else was involved?"
179
+ - "What did you do next?"
180
+
181
+ ### For Testing Comprehension (Usability)
182
+
183
+ - "What do you think this is?"
184
+ - "What would you expect to happen if you clicked that?"
185
+ - "How would you [accomplish goal] from here?"
186
+ - "Where would you look for [information]?"
187
+
188
+ ---
189
+
190
+ ## The 5-Second Silence Technique
191
+
192
+ After they answer:
193
+ 1. Count to 5 silently
194
+ 2. Resist the urge to fill the silence
195
+ 3. They'll often add the most valuable insight
196
+
197
+ ---
198
+
199
+ ## Question Review Checklist
200
+
201
+ Before using any question, verify:
202
+
203
+ - [ ] Is it open-ended? (not yes/no)
204
+ - [ ] Is it single-barreled? (one question only)
205
+ - [ ] Is it neutral? (no leading or loaded language)
206
+ - [ ] Is it about behavior? (not hypothetical)
207
+ - [ ] Is it in their language? (no jargon)
208
+ - [ ] Does it avoid assumptions?
209
+
210
+ ---
211
+
212
+ ## Before/After Examples
213
+
214
+ | Bad ❌ | Good ✅ | Why |
215
+ |--------|---------|-----|
216
+ | "Don't you hate when X happens?" | "How do you feel when X happens?" | Removes leading assumption |
217
+ | "Would you use this if we built it?" | "How do you handle [problem this solves] today?" | Behavior vs. hypothetical |
218
+ | "Is this easy to use?" | "Walk me through how you'd use this." | Open vs. binary |
219
+ | "How often do you use X and Y?" | "How often do you use X?" (then Y separately) | Single-barreled |
220
+ | "Why is the export broken?" | "Describe your experience with the export." | Removes loaded assumption |
221
+ | "Do you like the new dashboard?" | "What's your reaction to the new dashboard?" | Open vs. binary |
222
+
223
+ ---
224
+
225
+ ## Practice Exercise
226
+
227
+ Rewrite these biased questions:
228
+
229
+ 1. "Don't you think the navigation is confusing?"
230
+ 2. "Would you recommend this to a colleague?"
231
+ 3. "How frustrated are you with the slow loading times?"
232
+ 4. "Do you use the search feature and find it helpful?"
233
+ 5. "If we added filtering, would you use it?"
234
+
235
+ <details>
236
+ <summary>See improved versions</summary>
237
+
238
+ 1. "How would you describe the navigation?"
239
+ 2. "Tell me about a time you've recommended a tool to a colleague. What made you do that?"
240
+ 3. "How would you describe the loading times?"
241
+ 4. "How often do you use the search feature?" + "What's that experience like?"
242
+ 5. "When you're looking through [data type], how do you find specific items?"
243
+
244
+ </details>
@@ -0,0 +1,363 @@
1
+ # Research Report Template
2
+
3
+ Presenting findings so stakeholders actually act on them.
4
+
5
+ ---
6
+
7
+ ## Know Your Audience First
8
+
9
+ | Audience | They Care About | Give Them |
10
+ |----------|-----------------|-----------|
11
+ | **Executives** | Business impact, decisions, risks | 1-page summary, 3 key findings max |
12
+ | **Product Managers** | Priorities, roadmap, trade-offs | Findings + recommendations + effort |
13
+ | **Designers** | Details, user quotes, inspiration | Full report + video clips |
14
+ | **Engineers** | Feasibility, edge cases, specifics | Technical implications |
15
+ | **Stakeholders (mixed)** | "Did we learn what we needed?" | Clear answers to original questions |
16
+
17
+ **Pro tip:** Make one comprehensive report, then create audience-specific views.
18
+
19
+ ---
20
+
21
+ ## Report Structure
22
+
23
+ ### Executive Summary (1 page max)
24
+
25
+ This may be the only thing leadership reads. Make it count.
26
+
27
+ ```markdown
28
+ # [Project Name] Research Summary
29
+
30
+ ## What We Studied
31
+ [1 sentence: Topic and why it mattered]
32
+
33
+ ## How We Studied It
34
+ [Method] with [N participants] who [participant criteria]
35
+ [Dates conducted]
36
+
37
+ ## Top Findings
38
+
39
+ ### 1. [Finding title]
40
+ [2-3 sentences: What we learned and why it matters]
41
+
42
+ ### 2. [Finding title]
43
+ [2-3 sentences]
44
+
45
+ ### 3. [Finding title]
46
+ [2-3 sentences]
47
+
48
+ ## Recommended Actions
49
+ 1. [Action] — [Why] — [Priority]
50
+ 2. [Action] — [Why] — [Priority]
51
+ 3. [Action] — [Why] — [Priority]
52
+
53
+ ## What's Next
54
+ [Immediate next steps or decisions needed]
55
+ ```
56
+
57
+ ---
58
+
59
+ ### Full Report Structure
60
+
61
+ ```markdown
62
+ # [Project Name] Research Report
63
+
64
+ ## Executive Summary
65
+ [Copy from above]
66
+
67
+ ---
68
+
69
+ ## Background & Objectives
70
+
71
+ ### Business Context
72
+ Why did we conduct this research? What problem or opportunity prompted it?
73
+
74
+ ### Research Questions
75
+ 1. [Primary question we wanted to answer]
76
+ 2. [Secondary question]
77
+ 3. [Secondary question]
78
+
79
+ ### What This Research Is NOT
80
+ [Scope limitations, out-of-bounds topics]
81
+
82
+ ---
83
+
84
+ ## Methodology
85
+
86
+ ### Approach
87
+ [Method chosen] because [rationale for method selection]
88
+
89
+ ### Participants
90
+ - **Sample size:** N participants
91
+ - **Criteria:** [Who qualified]
92
+ - **Recruitment:** [How we found them]
93
+ - **Demographics/Segments:** [Relevant breakdowns]
94
+
95
+ | ID | Role | Experience | Relevant Traits |
96
+ |----|------|------------|-----------------|
97
+ | P1 | Senior Trader | 8 years | Heavy platform user |
98
+ | P2 | Analyst | 2 years | New to platform |
99
+ | ... | | | |
100
+
101
+ ### Materials
102
+ [What we tested, showed, or used]
103
+
104
+ ### Limitations & Caveats
105
+ - [Limitation 1] — How it might affect findings
106
+ - [Limitation 2]
107
+
108
+ ---
109
+
110
+ ## Key Findings
111
+
112
+ ### Finding 1: [Insight-Driven Title]
113
+
114
+ **Severity:** [Critical / High / Medium / Low]
115
+ **Frequency:** [X of Y participants]
116
+ **Confidence:** [High / Medium / Low]
117
+
118
+ #### What We Observed
119
+ [Specific, factual description of what happened]
120
+
121
+ #### Evidence
122
+ > "[Direct quote from participant]" — P3
123
+
124
+ > "[Another quote]" — P5
125
+
126
+ [Description of observed behavior]
127
+
128
+ #### What This Means
129
+ [Interpretation: Why this matters, what it implies]
130
+
131
+ #### Recommendation
132
+ [What to do about it]
133
+
134
+ ---
135
+
136
+ ### Finding 2: [Title]
137
+ [Same structure]
138
+
139
+ ---
140
+
141
+ ### Finding 3: [Title]
142
+ [Same structure]
143
+
144
+ ---
145
+
146
+ ## Additional Observations
147
+
148
+ [Smaller findings that didn't rise to "key finding" level but are worth noting]
149
+
150
+ - [Observation]: [Brief implication]
151
+ - [Observation]: [Brief implication]
152
+
153
+ ---
154
+
155
+ ## Answers to Research Questions
156
+
157
+ | Question | Answer | Confidence |
158
+ |----------|--------|------------|
159
+ | [Original question 1] | [Clear answer] | High/Med/Low |
160
+ | [Original question 2] | [Clear answer] | High/Med/Low |
161
+
162
+ ---
163
+
164
+ ## Recommendations
165
+
166
+ | Priority | Recommendation | Addresses | Effort | Impact |
167
+ |----------|----------------|-----------|--------|--------|
168
+ | 1 | [Action] | Finding #1, #3 | [S/M/L] | [High/Med/Low] |
169
+ | 2 | [Action] | Finding #2 | [S/M/L] | [High/Med/Low] |
170
+ | 3 | [Action] | Finding #4 | [S/M/L] | [High/Med/Low] |
171
+
172
+ ### Detailed Recommendation Descriptions
173
+
174
+ **Recommendation 1: [Title]**
175
+ [2-3 sentences expanding on what this means practically]
176
+
177
+ **Recommendation 2: [Title]**
178
+ [Expansion]
179
+
180
+ ---
181
+
182
+ ## Open Questions & Future Research
183
+
184
+ ### Unresolved Questions
185
+ - [Question]: [Why it matters, potential approach to answer]
186
+ - [Question]: [Why it matters]
187
+
188
+ ### Suggested Follow-Up Research
189
+ - [Research idea]: [What it would answer]
190
+
191
+ ---
192
+
193
+ ## Appendix
194
+
195
+ ### A. Discussion Guide / Test Script
196
+ [Include or link]
197
+
198
+ ### B. Participant Screener
199
+ [Criteria and questions used]
200
+
201
+ ### C. Raw Data
202
+ [Link to full notes, recordings, or synthesis artifacts]
203
+
204
+ ### D. Video Highlights
205
+ [Links to key clips with timestamps]
206
+ ```
207
+
208
+ ---
209
+
210
+ ## Presenting Research (Live)
211
+
212
+ ### Structure for a 30-min Readout
213
+
214
+ | Section | Time | Content |
215
+ |---------|------|---------|
216
+ | Context | 2 min | Why we did this, what we asked |
217
+ | Method | 3 min | Who, how, caveats |
218
+ | Findings | 15 min | Top 3-4 findings with evidence |
219
+ | Recommendations | 5 min | What to do, prioritized |
220
+ | Discussion | 5 min | Questions, debate, next steps |
221
+
222
+ ### Presentation Tips
223
+
224
+ **Lead with insights, not methodology**
225
+ - ❌ "We interviewed 6 users over 2 weeks using semi-structured interviews..."
226
+ - ✅ "Users can't find their cargo. Here's what we learned..."
227
+
228
+ **Use quotes and clips**
229
+ - A 30-second video clip is worth 10 minutes of explanation
230
+ - Prepare 2-3 highlight clips (moments of frustration, confusion, insight)
231
+ - Anonymize if needed ("A senior trader said...")
232
+
233
+ **Show, don't tell**
234
+ - Screenshots of where they got stuck
235
+ - Heatmaps or path visualizations if available
236
+ - Before/after mental model diagrams
237
+
238
+ **Separate findings from recommendations**
239
+ - Findings = What we learned (facts, evidence)
240
+ - Recommendations = What we suggest (opinions, options)
241
+ - Make the distinction clear
242
+
243
+ **Be honest about confidence**
244
+ - "We're highly confident about X"
245
+ - "Y is suggestive but based on limited data"
246
+ - "Z is a hypothesis that needs validation"
247
+
248
+ **Prepare for pushback**
249
+ - "How do we know this is representative?"
250
+ - "But our power users do it differently"
251
+ - "That's not feasible technically"
252
+
253
+ Have evidence ready. Be willing to say "we don't know" when you don't.
254
+
255
+ ---
256
+
257
+ ## Common Report Mistakes
258
+
259
+ | Mistake | Why It's Bad | Instead |
260
+ |---------|--------------|---------|
261
+ | Burying the insights | Executives won't find them | Executive summary first |
262
+ | Too much methodology | Nobody cares about your process | Keep it brief, detail in appendix |
263
+ | Observations without insights | Doesn't guide decisions | Always interpret "so what?" |
264
+ | Recommendations without findings | Opinions without evidence | Connect every rec to evidence |
265
+ | Wall of text | Won't be read | Use headers, bullets, visuals |
266
+ | No prioritization | Overwhelming, no action | Rank recommendations |
267
+ | Hiding caveats | Undermines trust | Be upfront about limitations |
268
+ | No next steps | Report dies in a doc | End with clear actions |
269
+
270
+ ---
271
+
272
+ ## One-Page Formats
273
+
274
+ ### For Slack/Email Updates
275
+
276
+ ```
277
+ 📊 [Project] Research Complete
278
+
279
+ We talked to [N] [participants] about [topic].
280
+
281
+ 🔑 Key findings:
282
+ • [Finding 1] — [Impact]
283
+ • [Finding 2] — [Impact]
284
+ • [Finding 3] — [Impact]
285
+
286
+ 💡 Top recommendation: [Action]
287
+
288
+ 📄 Full report: [link]
289
+
290
+ Questions? Let's discuss in [channel/meeting]
291
+ ```
292
+
293
+ ### For Quick Stakeholder Update
294
+
295
+ ```
296
+ RESEARCH: [Topic]
297
+ STATUS: Complete
298
+ PARTICIPANTS: N [type]
299
+
300
+ LEARNED:
301
+ 1. [Insight] → [Implication]
302
+ 2. [Insight] → [Implication]
303
+
304
+ RECOMMEND:
305
+ → [Primary action]
306
+
307
+ NEXT:
308
+ • [Immediate step]
309
+ ```
310
+
311
+ ---
312
+
313
+ ## Video Clip Guidelines
314
+
315
+ ### What Makes a Good Clip
316
+
317
+ - **Clear audio** — Can hear what they said
318
+ - **Visible reaction** — Shows emotion/frustration/confusion
319
+ - **Self-contained** — Makes sense without context
320
+ - **Brief** — 15-45 seconds ideal, never over 90
321
+
322
+ ### When to Use Clips
323
+
324
+ - To prove a point stakeholders might doubt
325
+ - To create empathy ("look how frustrated they are")
326
+ - To show a specific interaction failure
327
+ - When a quote is more powerful spoken
328
+
329
+ ### Preparing Clips
330
+
331
+ 1. Timestamp key moments during synthesis
332
+ 2. Trim to essential moment (don't make people wait)
333
+ 3. Add captions if audio quality is imperfect
334
+ 4. Anonymize if needed (blur face, change name)
335
+
336
+ ---
337
+
338
+ ## Report Templates by Research Type
339
+
340
+ ### User Interview Report
341
+ - Emphasize themes and patterns
342
+ - Heavy use of quotes
343
+ - Journey maps if applicable
344
+ - Persona implications
345
+
346
+ ### Usability Test Report
347
+ - Task success rates table
348
+ - Severity ratings
349
+ - Specific UI element callouts
350
+ - Video clips essential
351
+ - Annotated screenshots
352
+
353
+ ### Survey Report
354
+ - Charts and graphs
355
+ - Statistical significance notes
356
+ - Segment comparisons
357
+ - Verbatim responses for open-ended
358
+
359
+ ### Competitive Analysis
360
+ - Feature comparison matrix
361
+ - Screenshots from competitors
362
+ - Strengths/weaknesses
363
+ - Opportunities identified