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?"
- •New component/page from scratch
- •Redesign existing UI
- •Review and refine current implementation
Step 2: Gather Aesthetic Direction
Ask one at a time:
- •
"What tone fits this UI?"
- •Minimal, bold, playful, editorial, luxury, brutalist, retro, organic
- •
"What should be memorable about this?"
- •The animation? Typography? Layout? A specific interaction?
- •
"Any existing brand/style to match, or fresh start?"
- •
"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
IMPORTANT: Do NOT automatically invoke skills. Save the design, then STOP.
If option 1: Save design doc, then tell the user: "Run /arc:build to start building."
If option 2: Save design doc, then tell the user: "Run /arc:detail to create a detailed implementation plan."
If option 3: Save design doc and tell the user they can return later.
Do NOT invoke /arc:build, /arc:implement, or /arc:detail yourself — wait for the user to do so.
Step 5b: Visual Verification (During Build)
Use Chrome MCP tools liberally to check how the layout actually looks as you build:
- •
After each significant change — Take a screenshot to verify:
codemcp__claude-in-chrome__computer action=screenshot
- •
Check responsive behavior — Resize and screenshot:
codemcp__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
- •
Verify spacing, alignment, typography — Don't assume it looks right. See it.
- •
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
- •
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.
🚫 Never use sparkles/stars to denote AI or ML features. This visual cliché has become the "clip art" of AI interfaces—overused, meaningless, and instantly dated. Find distinctive ways to communicate intelligence: motion, progressive disclosure, conversational patterns, or simply letting the capability speak for itself without decorative badges.
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>
<success_criteria> Design is complete when:
- • Aesthetic direction established (tone, memorable element, typography, color)
- • ASCII wireframes created and approved
- • Design direction document saved
- • Implementation started or handed off to /arc:build or /arc:implement
- • Progress journal updated </success_criteria>
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