bmad-method 6.7.1-next.2 → 6.7.1-next.4

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.
@@ -0,0 +1,100 @@
1
+ # UX Validation Rubric
2
+
3
+ Walk the spine pair (DESIGN.md + EXPERIENCE.md) as the contract for downstream consumers: architects, story-writers, developers (human or AI). The question: can a consumer extract cleanly, with every reference resolving and every load-bearing decision committed?
4
+
5
+ Two passes. Pass 1 is mechanical coverage; Pass 2 is judgment. Severity tracks downstream impact, not fix difficulty.
6
+
7
+ ## Pass 1: Mechanical coverage
8
+
9
+ Per category: extract, then list misses with location citations. No misses earns **strong**.
10
+
11
+ ### 1. Flow coverage (EXPERIENCE.md)
12
+
13
+ Extract every user journey, requirement, or use case named in the user's sources (or surfaced in Discovery). Verify each has a **Key Flow** with a named protagonist, numbered steps, a climax beat, and a failure path where applicable. Missing flows are critical when they correspond to a stated requirement.
14
+
15
+ ### 2. Token completeness (DESIGN.md)
16
+
17
+ Extract every token in the YAML frontmatter and every `{path.to.token}` reference in the body prose and EXPERIENCE.md. Verify each is defined per the spec types (Appendix A in SKILL.md).
18
+
19
+ - **Color tokens missing hex (or light/dark pairs where applicable) are critical.** Downstream code mirrors the spine.
20
+ - Platform conventions (native dynamic type, 8pt grid) may stay semantic (`note:` field).
21
+ - Contrast targets stated for load-bearing color combinations.
22
+
23
+ ### 3. Component coverage (both spines)
24
+
25
+ Extract every component name referenced anywhere (EXPERIENCE.md flows, EXPERIENCE.md Component Patterns, DESIGN.md frontmatter `components`, DESIGN.md.Components body). Verify each has:
26
+
27
+ - A row in **DESIGN.md.Components** with real visual spec (anatomy, color usage, sizing, state appearance). Not a one-word description.
28
+ - A row in **EXPERIENCE.md.Component Patterns** with real behavioral spec.
29
+
30
+ Name drift across files is a high finding.
31
+
32
+ ### 4. State coverage (EXPERIENCE.md)
33
+
34
+ Walk every surface in the information architecture. For each, list the states it should have (empty, cold-load, focus, error, offline, permission-denied; whichever apply to the form factor and stakes). Verify each is covered in **State Patterns** or in the surface's Key Flow.
35
+
36
+ ### 5. Visual reference coverage
37
+
38
+ List every visual artifact captured in Canvas or referenced (Stitch outputs, Mermaid diagrams, HTML tables, imports). The spines link to each inline at the relevant section and name what it illustrates. State spines-win-on-conflict once. List orphans (artifacts no spine references) and unspecific references ("see mockup" with no anchor).
39
+
40
+ ## Pass 2: Judgment
41
+
42
+ Verdict per category (*strong / adequate / thin / broken*); findings only where they add information.
43
+
44
+ ### 6. Bloat and overspecification
45
+
46
+ - Pixel specs where tokens cover it.
47
+ - Source restatement (personas, requirements, scope copy-pasted from upstream).
48
+ - Prose where a table or Mermaid would land harder.
49
+ - Sections no downstream consumer would read.
50
+ - Decorative narrative untied to a decision.
51
+ - DESIGN.md prose may carry editorial voice; EXPERIENCE.md prose should not.
52
+
53
+ ### 7. Inheritance discipline
54
+
55
+ - UI system references resolve (shadcn version named, MUI version named, etc).
56
+ - User journey / requirement names appear verbatim from sources.
57
+ - Glossary identical across spines and sources.
58
+ - Component names identical across all sections in both files.
59
+ - EXPERIENCE.md `{path.to.token}` references resolve to actual DESIGN.md tokens by name.
60
+
61
+ ### 8. Shape fit
62
+
63
+ - DESIGN.md sections in canonical order (Brand & Style → Colors → Typography → Layout & Spacing → Elevation & Depth → Shapes → Components → Do's and Don'ts). Omittable but order-locked when present.
64
+ - EXPERIENCE.md required defaults present (Foundation, Information Architecture, Voice and Tone, Component Patterns, State Patterns, Interaction Primitives, Accessibility Floor, Key Flows). Dropped defaults defensible.
65
+ - Required-when-applicable present where triggered (Inspiration when sources or Decisions show reference products or rejects; Responsive when multi-surface or breakpoints).
66
+ - Invented sections earn their place.
67
+
68
+ ## Report shape
69
+
70
+ Render findings inline in Canvas under a **Validation Report** heading. Group by severity, not by category.
71
+
72
+ ```markdown
73
+ ## Validation Report
74
+
75
+ **Overall verdict:** [2-3 sentences. What's strong, what's load-bearing-broken.]
76
+
77
+ **Category verdicts:**
78
+ - Flow coverage: [verdict]
79
+ - Token completeness: [verdict]
80
+ - Component coverage: [verdict]
81
+ - State coverage: [verdict]
82
+ - Visual reference coverage: [verdict]
83
+ - Bloat & overspecification: [verdict]
84
+ - Inheritance discipline: [verdict]
85
+ - Shape fit: [verdict]
86
+
87
+ ### Critical (n)
88
+ - **[Category]**: [finding] (location). *Fix:* [suggestion].
89
+
90
+ ### High (n)
91
+ ...
92
+
93
+ ### Medium (n)
94
+ ...
95
+
96
+ ### Low (n)
97
+ ...
98
+ ```
99
+
100
+ After presenting, offer to roll critical and high findings into an Update pass that revises the spines in Canvas.