Takes UI screenshots you like and systematically extracts the design system (colors, typography, spacing, components) into documentation, then combines that with your product idea to generate implementation-ready prompts for building React UIs. The workflow is thorough: analyze images, generate a PRD if you don't have one, compose a final prompt with all the design constraints baked in, then scaffold multiple UI variations as actual components. Honestly most impressive for how it bridges the gap between "I like this design" and "here's working code that matches it." You'll need reference images and a project concept file to start, and it saves everything to a documents folder so you can iterate.
npx -y skills add daymade/claude-code-skills --skill ui-designer --agent claude-codeInstalls into .claude/skills of the current project.
This skill enables systematic extraction of design systems from reference UI images through a multi-step workflow: analyze visual patterns → generate design system documentation → create PRD → produce implementation-ready UI prompts.
Request from user:
Use Task tool with general-purpose subagent, providing:
Prompt template from assets/design-system.md:
Attach reference images to the subagent context.
Output: Complete design system markdown following the template format
Save to: documents/designs/{image_dir_name}_design_system.md
Use Task tool with general-purpose subagent, providing:
Prompt template from assets/app-overview-generator.md:
{项目背景} with content from project idea fileInteract with user to refine and clarify product requirements
Output: Structured PRD markdown
Save as variable for Step 4 (optionally save to documents/prd/)
Combine design system and PRD using assets/vibe-design-template.md:
Substitutions:
{项目设计指南} → Design system from Step 2{项目MVP PRD} → PRD from Step 3 or provided PRD fileResult: Complete, implementation-ready prompt containing:
Save to: documents/ux-design/{idea_file_name}_design_prompt_{timestamp}.md
Check for existing React project:
find . -name "package.json" -exec grep -l "react" {} \;
If none found, inform user:
npx create-react-app my-app
cd my-app
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
npm install lucide-react
Use the final composed prompt from Step 4 to implement UI in React project.
The prompt instructs to:
[solution-name]/pages/[page-name].jsxTemplate for extracting visual design patterns. Includes sections for:
Use this template when analyzing reference images to ensure comprehensive design system coverage.
Template for collaborative PRD generation. Guides through:
Designed for interactive refinement with user to clarify requirements.
Final implementation prompt template combining design system and PRD. Includes:
This template produces prompts ready for UI implementation without further modification.
documents/ directory for easy referenceUser provides:
reference-images/saas-dashboard/ (5 screenshots)ideas/project-management-app.md (project concept)Execute workflow:
reference-images/saas-dashboard/documents/designs/saas-dashboard_design_system.mddocuments/ux-design/project-management-app_design_prompt_20251025_153000.mdmindrally/skills
giuseppe-trisciuoglio/developer-kit
syncfusion/react-ui-components-skills
supercent-io/skills-template
binjuhor/shadcn-lar