BDB UI/UX Godmode
This skill is the single source of truth for all design decisions. It replaces: design-taste-frontend, frontend-design.
0. Brand Discovery (MANDATORY FIRST STEP)
Before ANY design work, gather project context. Never assume colors, fonts, or visual direction.
Discovery Checklist:
- Ask: "Do you have existing brand assets? (Logo, CI guideline, Styleguide, screenshots)"
- Ask: "What are your brand colors? (Hex, oklch, or description)"
- Ask: "Do you use specific fonts?"
- Ask: "Any websites/apps whose look you admire?"
- Ask: "Should it feel minimalist, playful, luxurious, or technical?"
Output: Project DESIGN.md
Generate a project-specific DESIGN.md containing:
- Primary/Secondary/Accent colors (oklch)
- Font stack
- Spacing preference
- Motion intensity (1-10)
- Visual density (1-10)
- Design variance (1-10)
- Brand constraints and things to avoid
Anti-Slop Context Logic:
- IF brand colors defined → Color bans (Lila Ban, etc.) = SUSPENDED
- IF brand fonts defined → Font bans (Inter Ban, etc.) = SUSPENDED
- Pattern-level Anti-Slop (no generic dashboards, no emojis, no card overuse) = ALWAYS ACTIVE
- IF no brand defined → Use defaults from design-tokens.json + all Anti-Slop bans ACTIVE
1. Anti-Slop Directive
These pattern rules are ALWAYS active regardless of brand:
- No default sidebar/header dashboard layouts unless explicitly requested
- No emoji icons — use Phosphor, Radix, or Lucide SVG only
- No arbitrary border-radius mixing (follow token scale)
- No flat design without hierarchy — use multi-layered diffuse shadows
- No centered hero sections when design variance > 4
- No 3-column equal card grids
- No generic names ("John Doe", "Acme") in mockups
- No filler words ("Elevate", "Seamless", "Next-Gen")
- No broken Unsplash links — use picsum.photos or SVG avatars
Color/Font bans (ONLY when no brand is defined):
- No AI Purple/Blue gradient aesthetic as default
- No Inter font — use Geist, Outfit, Cabinet Grotesk, or Satoshi
- No oversaturated accent colors (saturation < 80%)
Full ban reference: → references/anti-slop-rules.md
2. Design Tokens (Machine-Readable)
All design values MUST come from design-tokens.json (DTCG format).
- Color: oklch() for perceptual uniformity
- Spacing: 8pt grid (4, 8, 12, 16, 24, 32, 48, 64, 96)
- Typography: Modular scale (Major Third 1.25)
- Motion: Spring physics presets (subtle, default, bouncy)
- Radius: Nested mathematical scale (6, 12, 16, 24, 40)
Never guess spacing values. Never use arbitrary hex colors.
3. Motion & Physics
- Use spring physics (stiffness/damping/mass), not fixed-duration ease-in-out
- Animations must be interruptible (reverse from current state, don't snap)
- Elements expand from origin point (Shared Element Transitions)
- Use useMotionValue/useTransform for continuous tracking (NOT useState)
- Perpetual animations must be React.memo'd in isolated Client Components
- Stagger children for list/grid reveals
- Never animate top/left/width/height — only transform + opacity
- Grain/noise filters on fixed pointer-events-none layers only
Spring presets: → design-tokens.json > motion
Creative arsenal: → references/creative-arsenal.md
Bento paradigm: → references/bento-paradigm.md
4. Enterprise Density & Accessibility
- WCAG 2.1 AA: contrast ratio ≥ 4.5:1 for normal text
- Keyboard: all interactive elements reachable via Tab, executable via Enter/Space
- Focus: visible focus-visible:ring-2 ring-offset-2 states
- High-density B2B: tabular-nums, right-aligned numbers, compact padding
- Touch targets: minimum 44x44px
- prefers-reduced-motion: disable perpetual animations
- min-h-[100dvh] instead of h-screen (iOS Safari fix)
5. Verification Gate (Mandatory before Code Output)
Silently validate ALL code against this before presenting to user:
Brand
Anti-Slop
Motion
Accessibility
States
6. Harness Integration
- Cursor: injected via .cursor/rules/godmode-ui-ux.mdc
- Claude Code: reads via CLAUDE.md
- Antigravity: natively enforced
- MediaStorm: extends to TouchDesigner/Unreal operator panels via /bdbmediastorm
Overview
Master orchestration skill for UI/UX design, enforcing high-agency design taste and system consistency.
When to Use
- Triggered when acting as the primary design authority on a frontend project.
- Exclude when performing pure backend or DevOps tasks.
Core Process
- Analyze the requested UI against StyleSeed guidelines.
- Ensure all spacing and colors utilize DTCG design tokens.
- Implement explicit loading, error, and empty states.
- Apply fluid motion physics for interactions.
Common Rationalizations
| Rationalization |
Reality |
| I'll just add this one CSS override to make it fit. |
Violates design tokens and creates inconsistent UI; use the designated token. |
| We don't need a loading state here, it's fast. |
Network latency varies; missing feedback states cause perceived unresponsiveness. |
| I'll skip the dark mode check since the primary brand is light. |
Incomplete dark mode breaks the app for users relying on system preferences. |
Red Flags
- Hardcoded hex colors or arbitrary pixel values in new components.
- Absence of loading/error states in newly implemented features.
- Ignoring motion physics and using linear CSS transitions.
Verification
1---2name: godmode-ui-ux3description: Use when acting as the authoritative design lead for all frontend work, enforcing brand discovery, Anti-Slop rules, DTCG design tokens, fluid motion, and data-driven design generation.4---56# BDB UI/UX Godmode78This skill is the single source of truth for all design decisions. It replaces: design-taste-frontend, frontend-design.910## 0. Brand Discovery (MANDATORY FIRST STEP)1112Before ANY design work, gather project context. Never assume colors, fonts, or visual direction.1314### Discovery Checklist:151. Ask: "Do you have existing brand assets? (Logo, CI guideline, Styleguide, screenshots)"162. Ask: "What are your brand colors? (Hex, oklch, or description)"173. Ask: "Do you use specific fonts?"184. Ask: "Any websites/apps whose look you admire?"195. Ask: "Should it feel minimalist, playful, luxurious, or technical?"2021### Output: Project DESIGN.md22Generate a project-specific DESIGN.md containing:23- Primary/Secondary/Accent colors (oklch)24- Font stack25- Spacing preference26- Motion intensity (1-10)27- Visual density (1-10)28- Design variance (1-10)29- Brand constraints and things to avoid3031### Anti-Slop Context Logic:32- IF brand colors defined → Color bans (Lila Ban, etc.) = SUSPENDED33- IF brand fonts defined → Font bans (Inter Ban, etc.) = SUSPENDED 34- Pattern-level Anti-Slop (no generic dashboards, no emojis, no card overuse) = ALWAYS ACTIVE35- IF no brand defined → Use defaults from design-tokens.json + all Anti-Slop bans ACTIVE3637## 1. Anti-Slop Directive3839These pattern rules are ALWAYS active regardless of brand:40- No default sidebar/header dashboard layouts unless explicitly requested41- No emoji icons — use Phosphor, Radix, or Lucide SVG only42- No arbitrary border-radius mixing (follow token scale)43- No flat design without hierarchy — use multi-layered diffuse shadows44- No centered hero sections when design variance > 445- No 3-column equal card grids46- No generic names ("John Doe", "Acme") in mockups47- No filler words ("Elevate", "Seamless", "Next-Gen")48- No broken Unsplash links — use picsum.photos or SVG avatars4950Color/Font bans (ONLY when no brand is defined):51- No AI Purple/Blue gradient aesthetic as default52- No Inter font — use Geist, Outfit, Cabinet Grotesk, or Satoshi53- No oversaturated accent colors (saturation < 80%)5455Full ban reference: → references/anti-slop-rules.md5657## 2. Design Tokens (Machine-Readable)5859All design values MUST come from design-tokens.json (DTCG format).60- Color: oklch() for perceptual uniformity61- Spacing: 8pt grid (4, 8, 12, 16, 24, 32, 48, 64, 96)62- Typography: Modular scale (Major Third 1.25)63- Motion: Spring physics presets (subtle, default, bouncy)64- Radius: Nested mathematical scale (6, 12, 16, 24, 40)6566Never guess spacing values. Never use arbitrary hex colors.6768## 3. Motion & Physics6970- Use spring physics (stiffness/damping/mass), not fixed-duration ease-in-out71- Animations must be interruptible (reverse from current state, don't snap)72- Elements expand from origin point (Shared Element Transitions)73- Use useMotionValue/useTransform for continuous tracking (NOT useState)74- Perpetual animations must be React.memo'd in isolated Client Components75- Stagger children for list/grid reveals76- Never animate top/left/width/height — only transform + opacity77- Grain/noise filters on fixed pointer-events-none layers only7879Spring presets: → design-tokens.json > motion80Creative arsenal: → references/creative-arsenal.md81Bento paradigm: → references/bento-paradigm.md8283## 4. Enterprise Density & Accessibility8485- WCAG 2.1 AA: contrast ratio ≥ 4.5:1 for normal text86- Keyboard: all interactive elements reachable via Tab, executable via Enter/Space87- Focus: visible focus-visible:ring-2 ring-offset-2 states88- High-density B2B: tabular-nums, right-aligned numbers, compact padding89- Touch targets: minimum 44x44px90- prefers-reduced-motion: disable perpetual animations91- min-h-[100dvh] instead of h-screen (iOS Safari fix)9293## 5. Verification Gate (Mandatory before Code Output)9495Silently validate ALL code against this before presenting to user:9697### Brand98- [ ] Brand Discovery completed or user declined?99- [ ] Colors from DESIGN.md or design-tokens.json defaults?100- [ ] No hardcoded hex values outside token system?101102### Anti-Slop103- [ ] No forbidden pattern from §1?104- [ ] No emoji icons?105106### Motion107- [ ] Springs for interactive elements?108- [ ] Perpetual animations in isolated Client Components?109110### Accessibility111- [ ] Contrast ≥ 4.5:1?112- [ ] Keyboard navigable?113- [ ] Focus states visible?114- [ ] prefers-reduced-motion respected?115116### States117- [ ] Loading (skeleton, not spinner)?118- [ ] Empty (friendly + next action)?119- [ ] Error (recovery path)?120121## 6. Harness Integration122123- Cursor: injected via .cursor/rules/godmode-ui-ux.mdc124- Claude Code: reads via CLAUDE.md125- Antigravity: natively enforced126- MediaStorm: extends to TouchDesigner/Unreal operator panels via /bdbmediastorm127128129## Overview130Master orchestration skill for UI/UX design, enforcing high-agency design taste and system consistency.131132## When to Use133- Triggered when acting as the primary design authority on a frontend project.134- Exclude when performing pure backend or DevOps tasks.135136## Core Process1371. Analyze the requested UI against StyleSeed guidelines.1382. Ensure all spacing and colors utilize DTCG design tokens.1393. Implement explicit loading, error, and empty states.1404. Apply fluid motion physics for interactions.141142## Common Rationalizations143| Rationalization | Reality |144|---|---|145| I'll just add this one CSS override to make it fit. | Violates design tokens and creates inconsistent UI; use the designated token. |146| We don't need a loading state here, it's fast. | Network latency varies; missing feedback states cause perceived unresponsiveness. |147| I'll skip the dark mode check since the primary brand is light. | Incomplete dark mode breaks the app for users relying on system preferences. |148149## Red Flags150- Hardcoded hex colors or arbitrary pixel values in new components.151- Absence of loading/error states in newly implemented features.152- Ignoring motion physics and using linear CSS transitions.153154## Verification155- [ ] All spacing and colors use DTCG design tokens.156- [ ] Loading and error states are explicitly handled.157- [ ] Motion transitions follow the fluid motion physics guidelines.