Design system and anti-patterns for professional UI. Ensures apps don't look "AI generated". Defines color palettes, typography, spacing, animations, and common anti-patterns to avoid. Used by Design Reviewer sub-agent to polish UI. Triggers: design review, polish UI, improve aesthetics, looks like AI made it, design system, style guide, make it beautiful.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
npx agent-skills-cli listSkill Instructions
name: design-excellence description: > Design system and anti-patterns for professional UI. Ensures apps don't look "AI generated". Defines color palettes, typography, spacing, animations, and common anti-patterns to avoid. Used by Design Reviewer sub-agent to polish UI. Triggers: design review, polish UI, improve aesthetics, looks like AI made it, design system, style guide, make it beautiful.
Design Excellence
Make AI-built apps look human-crafted. No generic templates. No obvious patterns.
<core_principle>
The Craft Standard
If someone can tell it was AI-generated, we failed.
Good design is invisible. Users should feel the app is professional, not notice it follows a template. </core_principle>
<color_system>
Color Philosophy
The Problem with AI Color Choices
AI tends to pick:
- Purple gradients on white (Lovable default look)
- Overly saturated accent colors
- Too many colors in one interface
- Gradients where solid colors work better
Our Approach: Restraint
Base Palette (Default)
/* Use Tailwind's slate scale for neutrals */
--background: slate-50 /* Page background */
--surface: white /* Cards, modals */
--border: slate-200 /* Dividers, borders */
--text-primary: slate-900 /* Headlines */
--text-secondary: slate-600 /* Body text */
--text-muted: slate-400 /* Placeholders, hints */
Accent Colors (Pick ONE per app)
/* Default: Blue (professional, trustworthy) */
--accent: blue-600
--accent-hover: blue-700
--accent-light: blue-50
/* Alternative by app type: */
/* Finance/Banking → Green (money) */
/* Health/Wellness → Teal (calm) */
/* Food/Restaurant → Orange (appetite) */
/* Creative/Design → Purple (creativity) */
/* Urgent/Alert → Red (attention) */
Rules
- ONE accent color per app, no exceptions
- Use accent sparingly - buttons, links, highlights only
- Never gradient on primary buttons
- Background is white or near-white, not colored
- Dark mode: invert properly, don't just make it gray </color_system>
<typography_system>
Typography Rules
The Font Stack
/* Don't specify Inter everywhere - use system fonts */
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
/* This looks native on every platform */
Type Scale (Tailwind classes)
Page Title: text-2xl font-semibold (24px)
Section Title: text-lg font-medium (18px)
Card Title: text-base font-medium (16px)
Body: text-sm (14px)
Small/Caption: text-xs text-slate-500 (12px)
Anti-Patterns
❌ Don't use font-bold on everything
❌ Don't mix too many font sizes in one card
❌ Don't use ALL CAPS for long text
❌ Don't center-align body paragraphs
❌ Don't use pure black (#000) - use slate-900
Good Patterns
✅ Headlines: semibold or medium, never regular ✅ Body: regular weight, good line-height (1.5-1.6) ✅ Keep hierarchy: max 3 sizes per component ✅ Left-align most text (except headings in centered layouts) </typography_system>
<spacing_system>
Spacing & Layout
Spacing Scale
Use Tailwind's default scale consistently:
4 (1rem/16px) - Small gaps, inline elements
6 (1.5rem/24px) - Medium gaps, between components
8 (2rem/32px) - Large gaps, between sections
12 (3rem/48px) - XL gaps, page sections
Page Layout
// Standard page container
<div className="p-4 md:p-6 lg:p-8">
{/* Page title */}
<h1 className="text-2xl font-semibold mb-6">Dashboard</h1>
{/* Content sections with consistent spacing */}
<section className="mb-8">
{/* Section content */}
</section>
</div>
Card Internal Spacing
<Card>
<CardHeader className="pb-4"> {/* Reduce default padding */}
<CardTitle>Title</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
{/* Content with vertical gaps */}
</CardContent>
</Card>
Anti-Patterns
❌ Inconsistent padding (p-3 here, p-5 there) ❌ Too little whitespace (cramped feel) ❌ Too much whitespace (disconnected feel) ❌ Different gap sizes for same-level elements </spacing_system>
<animation_system>
Motion & Animation
Philosophy
Animation should:
- Feel natural, not flashy
- Provide feedback, not distraction
- Be fast (150-300ms), not slow
- Be subtle, not dramatic
Standard Transitions
// Hover states - use transition-colors or transition-all
<div className="transition-colors hover:bg-slate-50">
// Card hover - subtle lift
<Card className="transition-shadow hover:shadow-md">
// Button hover - built into shadcn, don't override
<Button>Already animated</Button>
Framer Motion Patterns
// Page transitions
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.3 }}
>
// List stagger
<motion.div
variants={{
hidden: { opacity: 0 },
show: {
opacity: 1,
transition: { staggerChildren: 0.1 }
}
}}
initial="hidden"
animate="show"
>
{items.map(item => (
<motion.div
key={item.id}
variants={{
hidden: { opacity: 0, y: 20 },
show: { opacity: 1, y: 0 }
}}
>
{item.content}
</motion.div>
))}
</motion.div>
// Micro-interaction - button tap
<motion.button whileTap={{ scale: 0.98 }}>
Click me
</motion.button>
Animation Timing
- Hover effects: 150ms
- Small transitions: 200ms
- Page transitions: 300ms
- Complex animations: 400-500ms max
Anti-Patterns
❌ Bounce effects (feels cheap) ❌ Slow animations (>500ms feels sluggish) ❌ Animation on every element (overwhelming) ❌ Spinning loaders everywhere (use skeleton instead) ❌ Dramatic entrance animations </animation_system>
<component_patterns>
Component Design Patterns
Cards
// Clean card - no excessive decoration
<Card className="bg-white border shadow-sm">
<CardContent className="p-4">
{/* Content */}
</CardContent>
</Card>
// DO NOT: rounded-3xl, heavy shadows, gradient borders
Buttons
// Primary action
<Button>Save</Button>
// Secondary action
<Button variant="outline">Cancel</Button>
// Destructive action
<Button variant="destructive">Delete</Button>
// Icon button
<Button variant="ghost" size="icon">
<Settings className="h-4 w-4" />
</Button>
// DO NOT: gradient buttons, 3D effects, icons in primary buttons (usually)
Forms
// Clean form layout
<div className="space-y-4">
<div className="space-y-2">
<Label>Name</Label>
<Input placeholder="Enter name" />
</div>
<div className="space-y-2">
<Label>Email</Label>
<Input type="email" placeholder="email@example.com" />
</div>
</div>
// DO NOT: inline labels, floating labels (unless requested), icons inside inputs
Tables
// Clean table
<Table>
<TableHeader>
<TableRow className="bg-slate-50">
<TableHead>Name</TableHead>
<TableHead>Status</TableHead>
<TableHead className="text-right">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
<TableRow className="hover:bg-slate-50">
<TableCell>John Smith</TableCell>
<TableCell><Badge>Active</Badge></TableCell>
<TableCell className="text-right">
<Button variant="ghost" size="sm">Edit</Button>
</TableCell>
</TableRow>
</TableBody>
</Table>
// DO NOT: zebra stripes (outdated), heavy borders, centered content
</component_patterns>
<anti_patterns_detail>
AI-Generated Red Flags
The "Lovable Look" (Avoid)
- Purple/violet as primary color
- Gradient backgrounds on white cards
- Rounded-3xl on everything
- Emoji in headers
- "Welcome back, User! 👋"
- Generic stock-photo-style illustrations
The "Bootstrap Look" (Avoid)
- Heavy drop shadows
- Rounded pill buttons
- Blue links on everything
- Card decks with equal heights
- Jumbotron-style headers
The "Material Look" (Avoid, unless requested)
- Floating action buttons
- Raised cards everywhere
- Ripple effects on everything
- Hamburger menu on desktop
What Makes It Look "Human-Made"
- Restraint - Not every feature is highlighted
- Hierarchy - Clear primary, secondary, tertiary
- Whitespace - Room to breathe
- Consistency - Same patterns repeated
- Subtle details - Tiny touches that don't scream
- Real content - No placeholder text visible </anti_patterns_detail>
<review_checklist>
Design Review Checklist
Color Check
- Only ONE accent color used
- No gradients on white backgrounds
- No pure black text
- Sufficient contrast for accessibility
Typography Check
- Max 3 font sizes per component
- Proper hierarchy (semibold titles, regular body)
- No ALL CAPS paragraphs
- Line height is readable (1.5+)
Spacing Check
- Consistent padding throughout
- Enough whitespace between sections
- Content doesn't feel cramped
- Mobile spacing is proportional
Animation Check
- Transitions are subtle (150-300ms)
- No bounce/spring effects
- Loading uses skeleton, not spinner
- Hover states provide feedback
Component Check
- Cards don't have excessive decoration
- Buttons follow hierarchy (primary/secondary)
- Forms are cleanly laid out
- Tables are readable and interactive
Final Check
- Would a user know this is AI-made? (Should be NO)
- Does it look like a real product? (Should be YES)
- Is it consistent with modern SaaS apps? (Should be YES) </review_checklist>
More by wasintoh
View allPlatform-specific integration expert for LINE Mini App (LIFF), Expo (React Native), and Tauri (Desktop). Handles platform APIs, native features, and deployment. Called when app needs platform-specific features beyond standard web. Triggers: "LINE Mini App", "LIFF", "LINE OA", "mobile app", "Expo", "React Native", "desktop app", "Tauri", platform integration, native features.
Master workflow controller for Lovable-style development. Creates working UI immediately from ANY prompt - no questions asked, no choices given. Routes to specialist sub-agents (ui-builder, dev-builder, design-reviewer, backend-connector, platform-adapter). Triggers: create, build, make, want, new project requests, app ideas, MVP, prototype, or any development request. This skill MUST be read first for any development task.
Adds logic, state management, TypeScript types, and CRUD operations to UI. Works AFTER ui-first-builder creates the interface. Implements Zustand stores, form handling with React Hook Form + Zod, and prepares for backend connection. Triggers: add logic, add functionality, make it work, state management, form validation, data operations, TypeScript types.
World-class design system with extensible business type registry. Automatically selects appropriate design patterns based on business context. Anti-AI detection, trend-aware, production-ready design decisions. CRITICAL: Must be read before any UI creation task.
