Design-Deepthink Skill
Loaded by /deepthink --design or /think --design for structured design exploration.
1. AI Slop Anti-Patterns (7 Patterns)
Detect and flag these in design analysis:
| Pattern |
Detection Criteria |
| Generic dashboards |
Centered hero + 2-3 gradient cards + charts with no identity |
| Copy-paste template feel |
Obvious clone of library defaults without customization |
| Color soup |
3+ accents, uncoordinated hues, no semantic meaning |
| Flattened hierarchy |
Same weight/size throughout, sections only separated by whitespace |
| Over-animated UI |
Every hover zooms/bounces, 300ms+ transitions |
| Generic AI aesthetics |
Overused fonts (Inter, Roboto), cliched purple gradients |
| Same design across projects |
Output could belong to any project (lacks identity) |
2. Design QA Criteria
Visual Hierarchy Scoring
- Pass: Clear heading/body/meta distinctions, 3+ type weights in use
- Fail: Flat hierarchy, no clear entry point, competing focal points
Spacing/Alignment Checklist
- 4px or 8px base grid adherence
- Consistent vertical rhythm between sections
- Optical vs mathematical alignment considered
- No arbitrary pixel values outside spacing scale
Color/Contrast Requirements
- Token compliance: No raw hex when tokens exist
- WCAG AA minimum (4.5:1 body, 3:1 large text)
- Semantic usage: Accent means something, not decoration
Responsive Breakpoints
- 375px (mobile), 768px (tablet), 1440px (desktop), 1920px (wide)
- Touch targets: 44px minimum
- Layout reflow without horizontal scroll
3. Design-DNA Priority Rules
When multiple design sources exist:
| Priority |
Source |
Notes |
| 1 (highest) |
JSON |
.claude/design-dna/*.json, design-dna.json |
| 2 |
Markdown |
design-system.md, .claude/design-dna/README.md |
| 3 |
CSS comments |
Files with @design-token: or @design-rule: |
Enforcement:
- Where tokens exist, ad-hoc values are FORBIDDEN
- Token naming:
--color-<role>, --space-<scale>, --font-<role>
- JSON rules are machine-parseable law; Markdown is advisory
4. Context Instructions
Project Design Files (Auto-Read in DESIGN Mode)
design-dna.json (project root)
.claude/design-dna/ directory (all files)
design-system.md (project root)
css/design-system-tokens.css (if exists)
Interpreting design-dna.json
colors: Semantic roles (primary, secondary, accent, surface)
typography: Scale and roles (display, heading, body, caption)
spacing: Base grid and named values (section, component, gap)
patterns: Named layouts (hero, card-grid, dashboard-shell)
When No Design-DNA Exists
- Note absence as a constraint
- Use
frontend-aesthetics skill principles
- Recommend design-dna creation as a next step
- Document choices made for future codification
Related: design-qa-skill, design-dna-skill, frontend-aesthetics
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: design-deepthink3description: Distilled design wisdom for /deepthink --design exploration Use when this capability is needed.4---56# Design-Deepthink Skill78Loaded by `/deepthink --design` or `/think --design` for structured design exploration.910## 1. AI Slop Anti-Patterns (7 Patterns)1112Detect and flag these in design analysis:1314| Pattern | Detection Criteria |15|---------|-------------------|16| Generic dashboards | Centered hero + 2-3 gradient cards + charts with no identity |17| Copy-paste template feel | Obvious clone of library defaults without customization |18| Color soup | 3+ accents, uncoordinated hues, no semantic meaning |19| Flattened hierarchy | Same weight/size throughout, sections only separated by whitespace |20| Over-animated UI | Every hover zooms/bounces, 300ms+ transitions |21| Generic AI aesthetics | Overused fonts (Inter, Roboto), cliched purple gradients |22| Same design across projects | Output could belong to any project (lacks identity) |2324## 2. Design QA Criteria2526### Visual Hierarchy Scoring27- **Pass**: Clear heading/body/meta distinctions, 3+ type weights in use28- **Fail**: Flat hierarchy, no clear entry point, competing focal points2930### Spacing/Alignment Checklist31- 4px or 8px base grid adherence32- Consistent vertical rhythm between sections33- Optical vs mathematical alignment considered34- No arbitrary pixel values outside spacing scale3536### Color/Contrast Requirements37- Token compliance: No raw hex when tokens exist38- WCAG AA minimum (4.5:1 body, 3:1 large text)39- Semantic usage: Accent means something, not decoration4041### Responsive Breakpoints42- 375px (mobile), 768px (tablet), 1440px (desktop), 1920px (wide)43- Touch targets: 44px minimum44- Layout reflow without horizontal scroll4546## 3. Design-DNA Priority Rules4748When multiple design sources exist:4950| Priority | Source | Notes |51|----------|--------|-------|52| 1 (highest) | JSON | `.claude/design-dna/*.json`, `design-dna.json` |53| 2 | Markdown | `design-system.md`, `.claude/design-dna/README.md` |54| 3 | CSS comments | Files with `@design-token:` or `@design-rule:` |5556**Enforcement**:57- Where tokens exist, ad-hoc values are FORBIDDEN58- Token naming: `--color-<role>`, `--space-<scale>`, `--font-<role>`59- JSON rules are machine-parseable law; Markdown is advisory6061## 4. Context Instructions6263### Project Design Files (Auto-Read in DESIGN Mode)641. `design-dna.json` (project root)652. `.claude/design-dna/` directory (all files)663. `design-system.md` (project root)674. `css/design-system-tokens.css` (if exists)6869### Interpreting design-dna.json70- `colors`: Semantic roles (primary, secondary, accent, surface)71- `typography`: Scale and roles (display, heading, body, caption)72- `spacing`: Base grid and named values (section, component, gap)73- `patterns`: Named layouts (hero, card-grid, dashboard-shell)7475### When No Design-DNA Exists761. Note absence as a constraint772. Use `frontend-aesthetics` skill principles783. Recommend design-dna creation as a next step794. Document choices made for future codification8081---8283_Related: `design-qa-skill`, `design-dna-skill`, `frontend-aesthetics`_8485---86> Converted and distributed by [TomeVault](https://tomevault.io/claim/adilkalam) — claim your Tome and manage your conversions.87<!-- tomevault:4.0:skill_md:2026-04-13 -->