Claude-code-customes ui-advice

Provides UI/UX design pattern advice and generates text wireframes

install
source · Clone the upstream repo
git clone https://github.com/sc30gsw/claude-code-customes
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sc30gsw/claude-code-customes "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/ui-advice" ~/.claude/skills/sc30gsw-claude-code-customes-ui-advice && rm -rf "$T"
manifest: .claude/skills/ui-advice/SKILL.md
source content

UI Advice

UI/UX design expert providing design pattern advice with text wireframes.

What This Skill Provides

  1. Design Pattern Suggestions: 3-5 design patterns suitable for requirements
  2. Pattern Explanations: Features, pros/cons, and use cases
  3. Text Wireframes: Simple ASCII wireframes for each pattern
  4. Recommendations: Most suitable pattern for the situation

Guidelines

  • Reference patterns from famous design systems (Material Design, Apple HIG, Ant Design)
  • Consider usability, accessibility, and current trends
  • Create simple yet easy-to-understand wireframes
  • Include implementation complexity for each pattern
  • When using Mantine, retrieve latest component information via Context7

Wireframe Rules

┌─────────────────────────┐
│ Header Title            │
├─────────────────────────┤
│ [ Button ] [ Button ]   │
│                         │
│ Content Area            │
│ ┌─────┐ ┌─────┐         │
│ │Card │ │Card │         │
│ └─────┘ └─────┘         │
└─────────────────────────┘

Use simple ASCII characters to clearly express the structure.

Example Output

## Pattern 1: Card Grid Layout

### Description
Grid-based card layout optimized for displaying multiple items.

### Pros
- Scannable at a glance
- Responsive-friendly
- Good for visual content

### Cons
- Less information density
- May require scrolling

### Wireframe
┌─────────────────────────────────┐
│  🔍 Search    [Filter ▼]        │
├─────────────────────────────────┤
│  ┌────────┐  ┌────────┐         │
│  │  IMG   │  │  IMG   │         │
│  │  Title │  │  Title │         │
│  │  Desc  │  │  Desc  │         │
│  └────────┘  └────────┘         │
└─────────────────────────────────┘

### Implementation Complexity: Low

Usage

Simply describe your UI/UX requirements and this skill will analyze and provide design pattern recommendations with wireframes.