start-vibing 4.2.0 → 4.3.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.
@@ -0,0 +1,102 @@
1
+ # Design Skills Catalog
2
+
3
+ > Map of installed design skills and when to recommend each. Used by
4
+ > sd-audit (Category 16 design-system-coherence findings) and sd-fix
5
+ > (when proposing aesthetic realignment above template scope).
6
+
7
+ ## Installed typeui-* skills
8
+
9
+ All from https://www.typeui.sh/design-skills — already present in
10
+ `.claude/skills/`. Claude auto-invokes them when their description matches
11
+ the task. sd-audit MUST reference them by name in findings; sd-fix MUST
12
+ mention them as optional realignment paths when design-system-coherence
13
+ score ≤ 4.
14
+
15
+ | Skill | Best for | Visual signature | When to recommend |
16
+ |---|---|---|---|
17
+ | **typeui-dashboard** | Admin panels, data apps, SaaS | Dark theme, cloud-platform density (AWS/GCP feel), data-first | DIS C16 fail on admin/dashboard routes |
18
+ | **typeui-application** | Developer tools, productivity | Vercel/GitHub-inspired, clean neutrals, high information density | SaaS products without strong identity |
19
+ | **typeui-enterprise** | B2B workflows, compliance, finance | Clean, high-contrast, conservative | Procurement-facing, corporate |
20
+ | **typeui-ant** | Form-heavy enterprise | Structured, predictable, Ant Design-adjacent | CRM, admin with many forms |
21
+ | **typeui-clean** | Marketing sites, simple products | Minimalist, generous whitespace | Pre-launch landing pages |
22
+ | **typeui-bento** | Feature grids, portfolios | Modular grid blocks | Homepage feature sections |
23
+ | **typeui-bold** | Consumer brands, challenger products | Strong typography, vivid color, confidence | Startups differentiating vs incumbents |
24
+ | **typeui-artistic** | Creative tools, design products | Expressive type, unusual layouts | Non-enterprise, vibe-forward |
25
+ | **typeui-dramatic** | Portfolios, agencies, brand sites | High-contrast, theatrical | Hero-heavy marketing |
26
+ | **typeui-neobrutalism** | Gen-Z, indie brands | Raw borders, hard shadows, bold | Statement brands |
27
+ | **typeui-paper** | Content, editorial, reading | Paper-textured, print-like | Blogs, publications |
28
+ | **typeui-doodle** | Learning, kids, playful | Hand-drawn, sketch feel | Education, creative tools |
29
+
30
+ ## How each skill gets applied
31
+
32
+ Each typeui-* skill contains:
33
+ - **Design tokens** (colors, spacing, radius, shadows) as CSS variables
34
+ - **Component variants** adapted to shadcn/ui structure
35
+ - **Layout patterns** demonstrated
36
+ - **Do/Don't examples**
37
+
38
+ When Claude invokes a skill (via matching description or explicit mention),
39
+ it follows the skill's specific tokens + patterns instead of defaults.
40
+
41
+ ## Other design-related skills installed
42
+
43
+ | Skill | Purpose | Cross-ref |
44
+ |---|---|---|
45
+ | **mobile-app-patterns** | Duolingo/Linear/Arc mobile patterns | Mandatory for mobile DIS scoring |
46
+ | **web-design-guidelines** | 100+ WCAG + UX rules (Vercel Labs) | Feeds Nielsen + WCAG manual pass |
47
+ | **composition-patterns** | React compound/composition patterns | C17 vibecode detection |
48
+ | **react-best-practices** | Vercel-Labs performance patterns | P-templates |
49
+ | **shadcn-ui** | shadcn component usage | V-templates (variants) |
50
+ | **tailwind-patterns** | Tailwind scale adherence | C3/C4/C5 consistency checks |
51
+ | **frontend-design** (plugin) | Full UI design loop with competitor research | Deep aesthetic reset |
52
+
53
+ ## Selection matrix (used by sd-fix / sd-audit recommendations)
54
+
55
+ | Current state | Target vibe | Recommend |
56
+ |---|---|---|
57
+ | Vibecoded admin with shadcn defaults | Professional dashboard | `typeui-dashboard` or `typeui-application` |
58
+ | Admin with too many forms | Structured enterprise | `typeui-ant` or `typeui-enterprise` |
59
+ | Landing with no identity | Consumer bold | `typeui-bold` or `typeui-dramatic` |
60
+ | Creative-app landing | Expressive | `typeui-artistic` or `typeui-doodle` |
61
+ | B2B-serious | Conservative | `typeui-enterprise` |
62
+ | Editorial / blog | Readable long-form | `typeui-paper` |
63
+ | Feature-grid homepage | Modular showcase | `typeui-bento` |
64
+
65
+ ## Recommending a skill in a finding
66
+
67
+ When `design-intelligence.categories.design_system_coherence.score ≤ 4`,
68
+ sd-audit MUST add a non-blocking advisory finding:
69
+
70
+ ```json
71
+ {
72
+ "id": "F-NNNN",
73
+ "rule": "design-system-coherence",
74
+ "severity": 2,
75
+ "risk_for_fix": "HIGH",
76
+ "finding": "UI uses pure shadcn defaults with no identity. Recommend applying a design skill to establish visual language.",
77
+ "template_id": "DSC-1",
78
+ "advisory_only": true,
79
+ "recommended_skills": ["typeui-dashboard", "typeui-application"],
80
+ "why": "Admin/dashboard context; dark theme already present; data density matches cloud-platform skills.",
81
+ "application": "User runs /simplify or a frontend-design session with the chosen skill active — this is not auto-fixable, needs human design decision."
82
+ }
83
+ ```
84
+
85
+ Do NOT auto-apply design skills via sd-fix — aesthetic changes are always
86
+ HIGH risk and require human sign-off. The finding is informational:
87
+ sd-fix emits it into fix-report.md as "Proposed aesthetic direction" with
88
+ a preview capability (sd-research already has screenshots of competitors
89
+ in similar aesthetics to show reference).
90
+
91
+ ## Integration with frontend-design plugin
92
+
93
+ If the user runs `/frontend-design` after super-design, the plugin can
94
+ read `design-intelligence.json` and pre-load the `recommended_skills`
95
+ automatically as seed context.
96
+
97
+ ## References
98
+
99
+ - typeui.sh catalog — https://www.typeui.sh/design-skills
100
+ - shadcn/ui — https://ui.shadcn.com
101
+ - Karri Saarinen, Quality — https://linear.app/now/why-is-quality-so-rare
102
+ - Vercel Design Engineering — https://vercel.com/blog/design-engineering-at-vercel