npx claudepluginhub opensesh/design-ops --plugin design-opsThis skill uses the workspace's default tool permissions.
Ensure code meets design system standards for consistency, accessibility, and brand compliance.
Audits design system consistency including Tailwind color tokens, UI patterns, spacing scale, typography, accessibility, and best practices in frontend apps.
Reviews UI code for StyleSeed/Toss design-system compliance including design tokens, component conventions, accessibility, mobile UX, typography, and spacing consistency. Use for UI PRs and fidelity checks.
Audits frontend code for design consistency, accessibility (WCAG AA), responsive behavior, and UI/UX best practices before deployment or after design system changes.
Share bugs, ideas, or general feedback.
Ensure code meets design system standards for consistency, accessibility, and brand compliance.
This skill provides quality gates for UI code reviews, ensuring all frontend work adheres to established design system patterns, accessibility standards, and component conventions.
Use this skill when:
CORRECT WRONG
var(--bg-primary) bg-white
var(--fg-secondary) text-gray-500
var(--border-primary) border-slate-200
bg-bg-primary (Tailwind mapped) #191919 (hardcoded)
Verification Command:
# Find hardcoded colors (should return empty)
grep -rE "#[0-9A-Fa-f]{3,6}|rgb\(|rgba\(" --include="*.tsx" --include="*.css" | grep -v "var(--"
# Find forbidden Tailwind classes
grep -rE "bg-white|bg-black|text-white|text-black" --include="*.tsx"
| Category | Usage | Example |
|---|---|---|
| Background | Surface colors | var(--bg-primary), var(--bg-secondary) |
| Foreground | Text colors | var(--fg-primary), var(--fg-secondary) |
| Border | Line/divider colors | var(--border-primary), var(--border-secondary) |
| Brand | Accent/CTA colors | var(--brand-primary) |
All interactive elements should use accessible component libraries:
// CORRECT - Using accessible components
import { Button, Input, Select } from 'react-aria-components';
// Or: Radix UI, Headless UI, etc.
// WRONG - Missing accessibility
<button onClick={...}> // May miss keyboard/screen reader support
<input type="text" /> // May miss ARIA support
// Standard Card
<div className={cn(
"bg-bg-secondary",
"border border-border-secondary",
"rounded-xl",
"hover:bg-bg-secondary-hover",
"hover:border-border-primary",
"transition-colors duration-150"
)}>
// Wrong patterns
<div className="bg-white rounded-lg shadow"> // Hardcoded colors
<div className="bg-gray-100 border-2"> // Wrong tokens
// Primary (brand color)
className="bg-brand-primary text-white hover:bg-brand-primary-hover"
// Secondary (transparent)
className="bg-transparent border border-border-primary hover:bg-bg-secondary"
// Tertiary (text only)
className="text-fg-secondary hover:text-fg-primary hover:underline"
// Focus visible and styled
className="focus:outline-none focus:ring-2 focus:ring-brand focus:ring-offset-2"
// Skip link for keyboard users
<a href="#main-content" className="sr-only focus:not-sr-only">
Skip to content
</a>
Minimum Requirements:
- Normal text: 4.5:1 ratio (AA)
- Large text: 3:1 ratio (AA)
- UI components: 3:1 ratio
Best Practice:
- Aim for AAA (7:1 for normal text)
- Test with contrast checkers
// Descriptive labels
<button aria-label="Close dialog">
<XIcon aria-hidden="true" />
</button>
// Live regions for dynamic content
<div role="status" aria-live="polite">
{statusMessage}
</div>
/* Display/Headlines */
font-family: var(--font-display);
/* Body text */
font-family: var(--font-body);
/* Code/Monospace */
font-family: var(--font-mono);
/* Micro-interactions: 150ms */
transition-duration: 150ms;
/* UI transitions: 200-300ms */
transition-duration: 200ms;
/* Page transitions: 300-500ms */
transition-duration: 300ms;
/* GPU-accelerated (prefer these) */
transform: translate(), scale(), rotate();
opacity;
filter;
/* Layout-triggering (avoid animating) */
width, height, padding, margin;
top, left, right, bottom;
/* Never do this */
transition: all 0.3s; /* Animates everything */
Use this checklist for every code review:
## Design System Quality Review
### Token Compliance
- [ ] All colors use CSS variables or mapped classes
- [ ] No hardcoded hex/rgb values
- [ ] Borders use semantic tokens
- [ ] Brand colors used appropriately (CTAs only)
### Components
- [ ] Interactive elements use accessible components
- [ ] Card patterns match standard
- [ ] Button variants are correct
- [ ] Focus states visible and styled
### Accessibility
- [ ] Color contrast meets AA minimum
- [ ] Focus management implemented
- [ ] ARIA labels present where needed
- [ ] Keyboard navigation works
### Typography
- [ ] Correct font families used
- [ ] Font sizes from scale
- [ ] Line heights appropriate
### Animation
- [ ] GPU-friendly properties only
- [ ] Timing follows guidelines
- [ ] No jarring transitions
# Block hardcoded colors
if grep -rE "#[0-9A-Fa-f]{6}" --include="*.tsx" | grep -v "var(--"; then
echo "ERROR: Hardcoded colors found. Use design tokens."
exit 1
fi
design-system-check:
runs-on: ubuntu-latest
steps:
- name: Check Token Compliance
run: |
! grep -rE "#[0-9A-Fa-f]{3,6}" --include="*.tsx" | grep -v "var(--"
- name: Check Accessibility
run: npx axe-core --include "src/**/*.tsx"
DESIGN SYSTEM QUALITY QUICK CHECK
────────────────────────────────────────────────────────────
Colors: Use CSS variables or mapped classes
Borders: border-border-secondary (containers)
Brand: Brand color for CTAs/active ONLY
Components: Use accessible component libraries
Focus: Visible ring on all interactive elements
Contrast: Minimum 4.5:1 for text (AA)
────────────────────────────────────────────────────────────
NEVER: Hardcoded colors, missing focus states
ALWAYS: Design tokens, accessible components
Version: 1.0.0