academic-paper-reviewe…
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with…
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 -y skills add zebbern/claude-code-guide --skill design-system-builder --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/design-system-builderContext preview
The summary Claude sees to decide when to auto-load this skill.
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.
name: design-system-builder description: 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.
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`:
**Interact 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:**
**Result**: 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:
Template 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.
**User provides:**
**Execute workfl
Claude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks from beginner to power user!
Repo: zebbern/claude-code-guide
Simulates academic peer review, evaluating papers across Originality, Methodology, Results, and Writing to provide Major/Minor Revision recommendations with…
This skill should be used when the user asks to "attack Active Directory", "exploit AD", "Kerberoasting", "DCSync", "pass-the-hash", "BloodHound enumeration",…
This skill should be used when the user asks to "test API security", "fuzz APIs", "find IDOR vulnerabilities", "test REST API", "test GraphQL", "API…
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to design an API, explore interface…
Interactive system flow tracing across CODE, API, AUTH, DATA, NETWORK layers with SQLite persistence and Mermaid export. Use for security audits, compliance…
Authentication patterns: session vs JWT vs OAuth comparison, provider selection (NextAuth, Clerk, Supabase Auth), security checklist, and common mistakes. Use…