Extract design systems from reference UI images and generate implementation-ready UI design prompts. Use when users provide UI screenshots/mockups and want to create consistent designs, generate design systems, or build MVP UIs matching reference aesthetics.
npx skills add https://github.com/zebbern/claude-code-guide --skill design-system-builder
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.mdToolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
Set up Tailwind CSS v4 in Expo with react-native-css and NativeWind v5 for universal styling
Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.
Take zebbern/design-system-builder from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm, npx.
Without those the skill loads but fails at the first command.