Back to list
howells

design

by howells

Claude Code plugin. From idea to working implementation—explore, validate, plan, and build in one flow.

7🍴 0📅 Jan 24, 2026

SKILL.md


name: design description: | Create distinctive, non-generic UI designs with aesthetic direction and ASCII wireframes. Use when asked to "design the UI", "create a layout", "wireframe this", or when building UI that should be memorable rather than generic. Avoids AI slop patterns. license: MIT metadata: author: howells website: order: 8 desc: Visual design direction summary: Establish the visual identity for your UI—colors, typography, spacing, tone. Comes with opinionated references to avoid generic AI aesthetics. what: | Design walks you through visual decisions: What's the tone? What makes this memorable? From there it produces a design direction document—color palette, typography scale, spacing system, and ASCII wireframes for key screens. It draws from built-in references on font pairing, component patterns, and animation. As you build, it can screenshot via Chrome to verify implementation matches intent. why: | AI-generated UI tends toward the same safe choices—the same gradients, the same card layouts, the same hero sections. Design fights this by forcing you to make distinctive choices upfront and documenting them. The references help you avoid common pitfalls and give the AI better taste. decisions: - Opinionated references built in. Font choices, spacing scales, animation patterns—not starting from scratch. - ASCII wireframes over mockups. Version-controllable, forces focus on structure. - Visual verification via screenshots. Catches when implementation drifts from intent.

Design Workflow

Create distinctive, non-generic UI. Avoids AI slop (purple gradients, cookie-cutter layouts).

Announce at start: "I'm using the design skill to create distinctive, non-generic UI."

<rules_context> Load interface rules for UI work:

Use Read tool: ${CLAUDE_PLUGIN_ROOT}/rules/interface/index.md

Then load relevant rules based on the task:

  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/design.md — Visual principles
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/colors.md — Color palettes
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/spacing.md — Spacing system
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/typography.md — Typography rules
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/layout.md — Layout patterns, z-index
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/animation.md — If motion is involved
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/forms.md — If designing forms
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/interactions.md — Touch, keyboard, hover patterns
  • ${CLAUDE_PLUGIN_ROOT}/rules/interface/marketing.md — If designing marketing pages

Also load references:

  • ${CLAUDE_PLUGIN_ROOT}/references/design-philosophy.md — Timeless principles
  • ${CLAUDE_PLUGIN_ROOT}/references/frontend-design.md — Fonts, checklist, anti-patterns
  • ${CLAUDE_PLUGIN_ROOT}/references/component-design.md — React component patterns </rules_context>

<progress_context> Use Read tool: docs/progress.md (first 50 lines)

Check for related prior design work and aesthetic decisions. </progress_context>

Prerequisites

  • Dev server running — Ensure the app is running locally so you can visually verify changes
  • Chrome MCP available — Use browser automation to screenshot and check layouts frequently

Process

Step 1: Understand Scope

"What are we designing?"

  1. New component/page from scratch
  2. Redesign existing UI
  3. Review and refine current implementation

Step 2: Gather Aesthetic Direction

Ask one at a time:

  1. "What tone fits this UI?"

    • Minimal, bold, playful, editorial, luxury, brutalist, retro, organic
  2. "What should be memorable about this?"

    • The animation? Typography? Layout? A specific interaction?
  3. "Any existing brand/style to match, or fresh start?"

  4. "Any reference designs or inspiration?"

    • Capture Figma links, screenshots, URLs immediately

Step 3: Capture Direction

## Aesthetic Direction
- **Tone**: [chosen]
- **Memorable element**: [what stands out]
- **Typography**: [display] + [body] (NOT Roboto/Arial/system-ui)
- **Color strategy**: [approach - NOT purple gradients]
- **Motion**: [where animation matters]

Step 4: ASCII Wireframe First

Before any code, create ASCII wireframe. See ${CLAUDE_PLUGIN_ROOT}/references/ascii-ui-patterns.md.

┌─────────────────────────────────┐
│  Header                         │
├─────────────────────────────────┤
│  ┌─────────┐  ┌─────────┐      │
│  │  Card   │  │  Card   │      │
│  └─────────┘  └─────────┘      │
└─────────────────────────────────┘

Ask: "Does this layout feel right?"

Step 5: Build or Hand Off

Use AskUserQuestion tool:

Question: "Design ready. What would you like to do with it?"
Header: "Next step"
Options:
  1. "Build now" (Recommended) — Jump to /arc:build or /arc:implement
  2. "Create implementation plan" — Run /arc:detail for detailed task breakdown
  3. "Save design only" — Save to docs/plans/ and stop here

If option 1: Route to /arc:build (quick) or /arc:implement (from plan) If option 2: Route to /arc:detail If option 3: Save design doc and end

Step 5b: Visual Verification (During Build)

Use Chrome MCP tools liberally to check how the layout actually looks as you build:

  1. After each significant change — Take a screenshot to verify:

    mcp__claude-in-chrome__computer action=screenshot
    
  2. Check responsive behavior — Resize and screenshot:

    mcp__claude-in-chrome__resize_window width=375 height=812  # Mobile
    mcp__claude-in-chrome__computer action=screenshot
    mcp__claude-in-chrome__resize_window width=1440 height=900 # Desktop
    
  3. Verify spacing, alignment, typography — Don't assume it looks right. See it.

  4. Check for visual conflicts — Look for:

    • Components overlapping or clipping each other
    • Elements clashing with existing UI (headers, footers, sidebars)
    • Z-index issues causing unexpected layering
    • Scroll containers behaving unexpectedly
    • Fixed/sticky elements interfering with content
  5. Iterate visually — If something looks off, fix it immediately before moving on.

When to screenshot:

  • After implementing a new component
  • After adding responsive styles
  • After adjusting spacing/layout
  • Before declaring a section "done"
  • When something feels uncertain

The goal: never commit UI code without visually verifying it looks correct.

Anti-Patterns to Avoid

See ${CLAUDE_PLUGIN_ROOT}/references/frontend-design.md for the full list of anti-patterns and the design review checklist.

Step 6: Optional UI Compliance Review

If the web-design-guidelines skill is available:

Skill web-design-guidelines: "Review the design against Web Interface Guidelines.
Focus on: [specific areas of concern]"

This provides external validation against established UI best practices.

<progress_append> After completing the design work, append to progress journal:

## YYYY-MM-DD HH:MM — /arc:design
**Task:** [UI/component designed]
**Outcome:** Complete
**Files:** [Design doc or component files]
**Decisions:**
- Tone: [aesthetic direction]
- Memorable: [key element]
**Next:** /arc:build or /arc:implement

---

</progress_append>

Interop

  • Can invoke /arc:build for quick implementation
  • Can invoke /arc:implement for planned implementation
  • Aesthetic direction feeds into implementation tasks
  • Can invoke web-design-guidelines skill for compliance review (if available)
  • Uses Chrome MCP (mcp__claude-in-chrome__*) for visual verification throughout

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon