🎯

prd-to-ux

🎯Skill

from akornmeier/claude-config

VibeIndex|
What it does

Translates product requirements into comprehensive UX specifications by systematically analyzing user mental models, information architecture, and interaction design.

πŸ“¦

Part of

akornmeier/claude-config(24 items)

prd-to-ux

Installation

GoRun with Go
go install claudio.click/cmd/claudio@latest
πŸ“– Extracted from docs: akornmeier/claude-config
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Use when translating PRDs, feature specs, or product requirements into UX specifications for mockup tools like Google Stitch, Figma, or similar. Use before creating visual designs, wireframes, or component specs.

Overview

# PRD to UX Translation

Overview

Translate product requirements into UX foundations through 6 forced designer mindset passes. Each pass asks different questions that visual-first approaches skip.

Core principle: UX foundations come BEFORE visual specifications. Mental models, information architecture, and cognitive load analysis prevent "pretty but unusable" designs.

When to Use

  • Translating PRD/spec to mockup tool input (Google Stitch, Figma, etc.)
  • Creating UX specifications from feature requirements
  • Preparing design handoff documents
  • Before any visual design work

Output Location

Write the UX specification to a file in the same directory as the source PRD.

Naming convention:

  • If PRD is feature-x.md β†’ output feature-x-ux-spec.md
  • If PRD is PRD.md β†’ output UX-spec.md
  • If PRD is requirements.md β†’ output requirements-ux-spec.md

Pattern: {prd-basename}-ux-spec.md (or just UX-spec.md if PRD has generic name)

Do not output to conversation. Always write to file so the spec is persistent and can be passed to mockup tools.

The Iron Law

```

NO VISUAL SPECS UNTIL ALL 6 PASSES COMPLETE

```

Not negotiable:

  • Don't mention colors, typography, or spacing until Pass 6 is done
  • Don't describe screen layouts until information architecture is explicit
  • Don't design components until affordances are mapped

No exceptions for urgency:

  • "I'm in a hurry" β†’ Passes take 5 minutes; fixing bad UX takes days
  • "Just give me screens" β†’ Screens without foundations need rework
  • "Skip the analysis" β†’ Analysis IS the value; screens are just output
  • "I know what I want" β†’ Then passes will be fast; still do them

Skipping passes to "save time" produces specs that need redesign. The 6 passes ARE the shortcut.

The 6 Passes

Execute these IN ORDER. Each pass produces required outputs before the next begins.

```dot

digraph passes {

rankdir=TB;

node [shape=box];

p1 [label="Pass 1: Mental Model\n(What does user think?)"];

p2 [label="Pass 2: Information Architecture\n(What exists, how organized?)"];

p3 [label="Pass 3: Affordances\n(What's obvious without explanation?)"];

p4 [label="Pass 4: Cognitive Load\n(Where will user hesitate?)"];

p5 [label="Pass 5: State Design\n(How does system talk back?)"];

p6 [label="Pass 6: Flow Integrity\n(Does this feel inevitable?)"];

visual [label="THEN: Visual Specifications"];

p1 -> p2 -> p3 -> p4 -> p5 -> p6 -> visual;

}

```

---

Pass 1: User Intent & Mental Model Alignment

Designer mindset: "What does the user think is happening?"

Force these questions:

  • What does the user believe this system does?
  • What are they trying to accomplish in one sentence?
  • What wrong mental models are likely?

Required output:

```markdown

Pass 1: Mental Model

Primary user intent: [One sentence]

Likely misconceptions:

  • [Misconception 1]
  • [Misconception 2]

UX principle to reinforce/correct: [Specific principle]

```

---

Pass 2: Information Architecture

Designer mindset: "What exists, and how is it organized?"

Force these actions:

  1. Enumerate ALL concepts the user will encounter
  2. Group into logical buckets
  3. Classify each as: Primary / Secondary / Hidden (progressive)

Required output:

```markdown

Pass 2: Information Architecture

All user-visible concepts:

  • [Concept 1]
  • [Concept 2]
  • ...

Grouped structure:

[Group Name]

  • [Concept]: [Primary/Secondary/Hidden]
  • Rationale: [One sentence why this grouping]

[Group Name]

...

```

This is where most AI UX attempts fail. If you skip explicit IA, your visual specs will be disorganized.

---

Pass 3: Affordances & Action Clarity

Designer mindset: "What actions are obvious without explanation?"

Force explicit decisions:

  • What is clickable?
  • What looks editable?
  • What looks like output (read-only)?
  • What looks final vs in-progress?

Required output:

```markdown

Pass 3: Affordances

| Action | Visual/Interaction Signal |

| -------- | ------------------------- |

| [Action] | [What makes it obvious] |

Affordance rules:

  • If user sees X, they should assume Y
  • ...

```

No visuals requiredβ€”just clarity on what signals what.

---

Pass 4: Cognitive Load & Decision Minimization

Designer mindset: "Where will the user hesitate?"

Force identification of:

  • Moments of choice (decisions required)
  • Moments of uncertainty (unclear what to do)
  • Moments of waiting (system processing)

Then apply:

  • Collapse decisions (fewer choices)
  • Delay complexity (progressive disclosure)
  • Introduce defaults (reduce decision burden)

Required output:

```markdown

Pass 4: Cognitive Load

Friction points:

| Moment | Type | Simplification |

|--------|------|----------------|

| [Where] | Choice/Uncertainty/Waiting | [How to reduce] |

Defaults introduced:

  • [Default 1]: [Rationale]

```

---

Pass 5: State Design & Feedback

Designer mindset: "How does the system talk back?"

Force enumeration of states for EACH major element:

  • Empty
  • Loading
  • Success
  • Partial (incomplete data)
  • Error

For each state, answer:

  • What does the user see?
  • What do they understand?
  • What can they do next?

Required output:

```markdown

Pass 5: State Design

[Element/Screen]

| State | User Sees | User Understands | User Can Do |

| ------- | --------- | ---------------- | ----------- |

| Empty | | | |

| Loading | | | |

| Success | | | |

| Partial | | | |

| Error | | | |

```

This prevents "dead UX"β€”screens with no feedback.

---

Pass 6: Flow Integrity Check

Designer mindset: "Does this feel inevitable?"

Final sanity check:

  • Where could users get lost?
  • Where would a first-time user fail?
  • What must be visible vs can be implied?

Required output:

```markdown

Pass 6: Flow Integrity

Flow risks:

| Risk | Where | Mitigation |

|------|-------|------------|

| [Risk] | [Location] | [Guardrail/Nudge] |

Visibility decisions:

  • Must be visible: [List]
  • Can be implied: [List]

UX constraints: [Any hard rules for the visual phase]

```

---

THEN: Visual Specifications

Only after all 6 passes are complete, create:

  • Screen layouts
  • Component specifications
  • Design system (colors, typography, spacing)
  • Interaction specifications
  • Responsive breakpoints

The 6 passes inform every visual decision.

Red Flags - STOP and Restart

If you catch yourself doing any of these, STOP and return to the passes:

| Violation | What You're Skipping |

| ------------------------------------------ | --------------------------------------------------------- |

| Describing colors/fonts | All foundational passes |

| "The main screen shows..." | Pass 1-2 (mental model, IA) |

| Designing components before actions mapped | Pass 3 (affordances) |

| No friction point analysis | Pass 4 (cognitive load) |

| States only in component specs | Pass 5 (holistic state design) |

| No "where could they fail?" | Pass 6 (flow integrity) |

| "User is in a hurry" | ALL passes β€” urgency is a trap |

| "Just this once, skip to visuals" | ALL passes β€” exceptions become habits |

| "The PRD is simple enough" | ALL passes β€” simple PRDs still need mental model analysis |

Common Mistakes

Merging passes: "I'll cover mental model while doing IA" β†’ You won't. Separate passes force separate thinking.

Skipping to visuals: "The PRD is clear, I can design screens" β†’ Baseline testing shows agents skip 4+ passes when allowed.

Implicit affordances: "Buttons are obviously clickable" β†’ Map EVERY action explicitly. What's obvious to you isn't obvious to users.

Scattered state design: "I'll add states to each component" β†’ Holistic state table in Pass 5 catches gaps.

Output Template

```markdown

# UX Specification: [Product Name]

Pass 1: Mental Model

[Required content]

Pass 2: Information Architecture

[Required content]

Pass 3: Affordances

[Required content]

Pass 4: Cognitive Load

[Required content]

Pass 5: State Design

[Required content]

Pass 6: Flow Integrity

[Required content]

---

Visual Specifications

[Only after passes complete]

```

More from this repository10

🎯
shadcn-ui🎯Skill

Provides customizable, accessible React UI components using Tailwind CSS that can be directly copied and modified in your project.

🎯
postgresql-psql🎯Skill

Enables interactive PostgreSQL database management through psql, executing queries, scripting, and administering database operations from the command line.

🎯
skill-creator🎯Skill

Generates configurable AI skills with customizable parameters and templates for Claude-based applications.

🎯
better-auth🎯Skill

Securely implement authentication and authorization with a framework-agnostic TypeScript library supporting email/password, OAuth, 2FA, and advanced auth features.

🎯
mongodb🎯Skill

Enables comprehensive MongoDB database management, from schema design and querying to deployment, performance optimization, and secure integration across multiple platforms and languages.

🎯
turborepo🎯Skill

Accelerates monorepo development by enabling intelligent caching, parallel task execution, and efficient build performance across JavaScript and TypeScript projects.

🎯
cloudflare-r2🎯Skill

Enables seamless S3-compatible object storage on Cloudflare's global network with zero egress fees, supporting file uploads, downloads, and migrations.

🎯
nuxt-ui-tdd🎯Skill

Guides developers in building Vue 3 NuxtUI components using strict Test-Driven Development (TDD) methodology with atomic design principles and Storybook interaction tests.

🎯
cloudflare-workers🎯Skill

Enables building and deploying serverless edge functions across Cloudflare's global network using JavaScript, TypeScript, Python, and Rust.

🎯
openspec-dev🎯Skill

Automates OpenSpec change implementation by parsing tasks, filtering phases, and creating PRs using subagent-driven development.