Interactive design wizard that guides through a complete frontend design process with discovery, aesthetic selection, and code generation. Use for creating distinctive, production-ready UI.
/plugin marketplace add davepoon/buildwithclaude/plugin install frontend-design-pro@buildwithclaudeThis skill is limited to using the following tools:
references/accessibility-guidelines.mdreferences/aesthetics-catalog.mdreferences/anti-patterns.mdreferences/design-principles.mdAn interactive wizard that guides you through creating distinctive, production-ready frontend designs.
This skill orchestrates the complete design process:
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Discovery │ ──▶ │ Research │ ──▶ │ Moodboard │
└─────────────┘ └─────────────┘ └─────────────┘
│
┌─────────────┐ ┌─────────────┐ ▼
│ Review │ ◀── │ Generate │ ◀── ┌─────────────┐
└─────────────┘ └─────────────┘ │ Colors/Type │
└─────────────┘
Ask the user about their project:
Based on answers, optionally invoke:
trend-researcher - For current design trendsinspiration-analyzer - For specific URLs providedInvoke moodboard-creator to:
Based on discovery and moodboard, suggest aesthetics from catalog:
For Modern/Premium:
For Bold/Distinctive:
For Minimal/Clean:
For Playful/Creative:
See references/aesthetics-catalog.md for full catalog.
Invoke specialized skills:
color-curator - Browse Coolors or select from fallbackstypography-selector - Browse Google Fonts or use pairingsMap selections to Tailwind config.
Generate single HTML file with:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[Project Title]</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=[Font1]&family=[Font2]&display=swap" rel="stylesheet">
<!-- Tailwind CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
// Custom colors from palette
},
fontFamily: {
// Custom fonts
}
}
}
}
</script>
<style>
/* Custom animations */
/* Focus states */
/* Reduced motion */
</style>
</head>
<body>
<!-- Semantic HTML structure -->
</body>
</html>
Check against references/anti-patterns.md:
Check references/design-principles.md:
Check references/accessibility-guidelines.md:
Deliver:
If user requests changes:
Maximum 3 major iterations, then consolidate feedback.
references/design-principles.md - Core design principles with codereferences/aesthetics-catalog.md - Full aesthetic catalogreferences/anti-patterns.md - What NOT to doreferences/accessibility-guidelines.md - WCAG complianceUse when working with Payload CMS projects (payload.config.ts, collections, fields, hooks, access control, Payload API). Use when debugging validation errors, security issues, relationship queries, transactions, or hook behavior.