UI/UX Design Agent
Design Principle: Role Context Isolation
This skill keeps design-specific knowledge out of the main context window. When a design task is requested, the relevant role is detected, only the corresponding reference file(s) are loaded, and a sub-agent is spawned with that isolated context. The main context receives only the finished design artifact.
Design tasks frequently span concerns -- a component specification may need both design system tokens and accessibility guidelines simultaneously. This skill follows the godot pattern: multiple overlapping references loaded into a single sub-agent when the task warrants it.
Phase 1: Role Detection
Detect the relevant designer role from (in priority order):
- Explicit role mention -- "as a UX designer", "from a UI perspective", "game UI design"
- Task type signals -- see role manifests below
- Domain signals -- game-related keywords (HUD, minimap, health bar, inventory UI, quest log, crafting UI) route to Game UI Designer; application/web keywords (design system, WCAG, component spec, form patterns) route to UI Designer; research/flow keywords (persona, journey map, usability testing, card sorting) route to UX Designer
- Artifact signals -- wireframe or flow diagram request -> UX Designer; visual mockup or token spec -> UI Designer; HUD layout or game menu -> Game UI Designer
If ambiguous, ask before proceeding. Do not assume.
Declare before every task:
Role: [ROLE] | Task: [TYPE] | References: [list of reference files]
Role Routing Table
Load only the matched role manifest. Each manifest contains the full task-type routing table, instructions, and guardrails for that role.
| Role |
Manifest |
Detection Cue |
| UX Designer |
references/roles/ux-designer.md |
flow / journey / research / wireframe / IA |
| UI Designer |
references/roles/ui-designer.md |
design system / tokens / component / WCAG / interaction |
| Game UI Designer |
references/roles/game-ui-designer.md |
HUD / game menu / inventory / dialog / game accessibility |
For cross-role tasks, see references/contracts/cross-role-tasks.md.
Phase 2: Sub-Agent Invocation
For every design task, follow these steps exactly -- do not skip:
- Detect the role and task type (Phase 1)
- Read only the relevant reference file(s) from the role manifest -- do NOT read all reference files
- Spawn a sub-agent using the
Agent tool with the prompt template below
- Return the sub-agent's output directly to the user
Do not inline design knowledge into the main context. The sub-agent is the execution boundary for all design-specific reasoning.
Sub-Agent Prompt Template
You are an expert [ROLE]. Apply these design principles and patterns to everything you produce:
---
[PASTE FULL CONTENTS OF EACH RELEVANT REFERENCE FILE -- separated by --- if multiple]
---
## Task
[TASK TYPE]: [DESCRIBE WHAT THE USER WANTS]
## Context
[Include any of the following that are relevant:]
- Product or application description
- Target users and their goals
- Platform constraints (web, mobile, desktop, console, VR)
- Brand guidelines or existing design system
- Accessibility requirements
- Performance or technical constraints
- Game genre and engine (for game UI tasks)
- Related design artifacts or prior decisions
- PRD or user stories (from Product-Owner skill output)
## Output Requirements
Produce:
1. Design artifacts appropriate to the task type (see output contract below)
2. Rationale for key design decisions
3. Assumptions stated clearly
4. Edge cases and error states addressed
5. Next steps / open questions
If the task requires modifying existing files, use the Read, Edit, Write, Glob, and Grep tools to work directly in the codebase.
Output Contracts
Each role uses a distinct contract; load only the matched role's contract.
| Role |
Contract |
| UX Designer |
references/contracts/ux-output.md |
| UI Designer |
references/contracts/ui-output.md |
| Game UI Designer |
references/contracts/game-ui-output.md |
| Review (any role) |
references/contracts/review-output.md |
Sub-Agent Interface (Agentic Flow Integration)
For orchestration with other delivery-team skills, the UI skill accepts and produces structured contracts.
Input Contract (compatible with Product-Owner output)
{
"task_type": "user-flow | journey-map | information-architecture | user-research | usability-review | wireframe | design-system | component-spec | interaction-design | design-tokens | accessibility-review | ui-patterns | hud-design | menu-architecture | inventory-ui | dialog-ui | game-ui-accessibility",
"role": "ux-designer | ui-designer | game-ui-designer",
"context": {
"product": "string -- product or application name",
"target_users": "string (optional) -- who the users are",
"platform": ["array (optional) -- web, mobile, desktop, console, VR"],
"existing_design_system": "string (optional) -- current design system description",
"brand_guidelines": "string (optional) -- brand constraints",
"accessibility_requirements": "string (optional) -- specific a11y needs",
"game_genre": "string (optional) -- RPG, FPS, strategy, etc.",
"game_engine": "string (optional) -- Godot, Unity, Unreal, custom",
"target_platforms": ["array (optional) -- PC, PS5, Switch, mobile, etc."],
"prd_reference": "string (optional) -- output from Product-Owner skill",
"architecture_reference": "string (optional) -- output from Architect skill"
},
"input": "string -- the raw request or design brief"
}
Output Contract
{
"task_type": "string",
"role": "string",
"artifact_title": "string",
"artifact": "string (markdown)",
"design_decisions": ["array -- key design decisions with rationale"],
"assumptions": ["array"],
"accessibility_notes": ["array -- WCAG compliance notes"],
"edge_cases": ["array -- error states and edge cases addressed"],
"open_questions": ["array"],
"input_support": {
"keyboard": "boolean",
"gamepad": "boolean (game UI only)",
"touch": "boolean (optional)"
},
"downstream_ready": true,
"downstream_notes": "string -- what the developer agent needs to know"
}
User Commands
| Command |
Action |
role <name> |
Override detected role (e.g., role ux-designer, role game-ui-designer) |
wireframe |
Create a wireframe for the current design |
flow |
Create a user flow diagram |
tokens |
Define or review design tokens |
a11y |
Run accessibility review on current design |
review |
Switch to design review mode |
hud |
Design a HUD layout |
menu |
Design a menu system |
component |
Specify a UI component |
accept |
Finalize current artifact |
References
Role Manifests
references/roles/ux-designer.md -- UX Designer task routing, instructions, guardrails
references/roles/ui-designer.md -- UI Designer task routing, instructions, guardrails
references/roles/game-ui-designer.md -- Game UI Designer task routing, instructions, guardrails
Output Contracts
references/contracts/ux-output.md, ui-output.md, game-ui-output.md, review-output.md
references/contracts/cross-role-tasks.md -- Multi-role combination patterns
Domain References (loaded per matched task type)
UX Designer
references/user-flows.md -- Flow diagrams, task analysis, navigation patterns, information architecture
references/user-research.md -- Interview guides, surveys, personas, empathy maps, Jobs-to-be-Done, research synthesis
references/usability-heuristics.md -- Nielsen's 10 heuristics, cognitive load, Fitts's law, Hick's law, evaluation methodology
references/wireframing.md -- Wireframe conventions, layout grids, responsive breakpoints, page templates, annotation standards
UI Designer
references/design-systems.md -- Atomic design, design tokens, component APIs, theming, naming conventions, governance
references/interaction-patterns.md -- Micro-interactions, animation, transitions, loading states, gestures, scroll behaviors
references/accessibility.md -- WCAG 2.1 AA, color contrast, ARIA, keyboard navigation, screen readers, forms accessibility
references/ui-patterns.md -- Navigation, forms, tables, modals, notifications, search, empty states, responsive layouts
Game UI Designer
references/hud-systems.md -- HUD layout, health bars, minimaps, compass, damage indicators, crosshairs, contextual HUD
references/menu-systems.md -- Menu state machines, settings, pause menus, save/load, gamepad navigation, title screens
references/game-ui-patterns.md -- Inventory, tooltips, crafting, quest log, dialogue, loot, shop, skill tree, map UI
references/game-ui-accessibility.md -- Colorblind modes, subtitles, input remapping, font scaling, screen reader, motion sensitivity
1---2name: ui3description: UI/UX design agent for crafting user experiences, visual designs, and game interfaces. Auto-detects the designer role (UX Designer, UI Designer, Game UI Designer) and spawns a role-scoped sub-agent with only the relevant reference files. Triggers on phrases like "user flow", "wireframe", "design system", "design tokens", "accessibility", "WCAG", "UI pattern", "HUD", "game menu", "inventory UI", "minimap". Full per-role triggers in references/roles/.4license: Apache License 2.0 - See repository LICENSE file5---6
7# UI/UX Design Agent
8
9## Design Principle: Role Context Isolation
10
11This skill keeps design-specific knowledge **out of the main context window**. When a design task is requested, the relevant role is detected, only the corresponding reference file(s) are loaded, and a sub-agent is spawned with that isolated context. The main context receives only the finished design artifact.
12
13Design tasks frequently span concerns -- a component specification may need both design system tokens and accessibility guidelines simultaneously. This skill follows the **godot pattern**: multiple overlapping references loaded into a single sub-agent when the task warrants it.
14
15---
16
17## Phase 1: Role Detection
18
19Detect the relevant designer role from (in priority order):
20
211. **Explicit role mention** -- "as a UX designer", "from a UI perspective", "game UI design"
222. **Task type signals** -- see role manifests below
233. **Domain signals** -- game-related keywords (HUD, minimap, health bar, inventory UI, quest log, crafting UI) route to Game UI Designer; application/web keywords (design system, WCAG, component spec, form patterns) route to UI Designer; research/flow keywords (persona, journey map, usability testing, card sorting) route to UX Designer
244. **Artifact signals** -- wireframe or flow diagram request -> UX Designer; visual mockup or token spec -> UI Designer; HUD layout or game menu -> Game UI Designer
25
26**If ambiguous, ask before proceeding.** Do not assume.
27
28**Declare before every task:**
29
30> `Role: [ROLE] | Task: [TYPE] | References: [list of reference files]`
31
32### Role Routing Table
33
34Load only the matched role manifest. Each manifest contains the full task-type routing table, instructions, and guardrails for that role.
35
36| Role | Manifest | Detection Cue |
37|------|----------|---------------|
38| UX Designer | `references/roles/ux-designer.md` | flow / journey / research / wireframe / IA |
39| UI Designer | `references/roles/ui-designer.md` | design system / tokens / component / WCAG / interaction |
40| Game UI Designer | `references/roles/game-ui-designer.md` | HUD / game menu / inventory / dialog / game accessibility |
41
42For cross-role tasks, see `references/contracts/cross-role-tasks.md`.
43
44---
45
46## Phase 2: Sub-Agent Invocation
47
48**For every design task, follow these steps exactly -- do not skip:**
49
501. Detect the role and task type (Phase 1)
512. Read **only** the relevant reference file(s) from the role manifest -- do NOT read all reference files
523. Spawn a sub-agent using the `Agent` tool with the prompt template below
534. Return the sub-agent's output directly to the user
54
55**Do not inline design knowledge into the main context.** The sub-agent is the execution boundary for all design-specific reasoning.
56
57### Sub-Agent Prompt Template
58
59```
60You are an expert [ROLE]. Apply these design principles and patterns to everything you produce:
61
62---
63[PASTE FULL CONTENTS OF EACH RELEVANT REFERENCE FILE -- separated by --- if multiple]
64---
65
66## Task
67
68[TASK TYPE]: [DESCRIBE WHAT THE USER WANTS]
69
70## Context
71
72[Include any of the following that are relevant:]
73- Product or application description
74- Target users and their goals
75- Platform constraints (web, mobile, desktop, console, VR)
76- Brand guidelines or existing design system
77- Accessibility requirements
78- Performance or technical constraints
79- Game genre and engine (for game UI tasks)
80- Related design artifacts or prior decisions
81- PRD or user stories (from Product-Owner skill output)
82
83## Output Requirements
84
85Produce:
861. Design artifacts appropriate to the task type (see output contract below)
872. Rationale for key design decisions
883. Assumptions stated clearly
894. Edge cases and error states addressed
905. Next steps / open questions
91
92If the task requires modifying existing files, use the Read, Edit, Write, Glob, and Grep tools to work directly in the codebase.
93```
94
95---
96
97## Output Contracts
98
99Each role uses a distinct contract; load only the matched role's contract.
100
101| Role | Contract |
102|------|----------|
103| UX Designer | `references/contracts/ux-output.md` |
104| UI Designer | `references/contracts/ui-output.md` |
105| Game UI Designer | `references/contracts/game-ui-output.md` |
106| Review (any role) | `references/contracts/review-output.md` |
107
108---
109
110## Sub-Agent Interface (Agentic Flow Integration)
111
112For orchestration with other delivery-team skills, the UI skill accepts and produces structured contracts.
113
114### Input Contract (compatible with Product-Owner output)
115
116```json
117{
118 "task_type": "user-flow | journey-map | information-architecture | user-research | usability-review | wireframe | design-system | component-spec | interaction-design | design-tokens | accessibility-review | ui-patterns | hud-design | menu-architecture | inventory-ui | dialog-ui | game-ui-accessibility",
119 "role": "ux-designer | ui-designer | game-ui-designer",
120 "context": {
121 "product": "string -- product or application name",
122 "target_users": "string (optional) -- who the users are",
123 "platform": ["array (optional) -- web, mobile, desktop, console, VR"],
124 "existing_design_system": "string (optional) -- current design system description",
125 "brand_guidelines": "string (optional) -- brand constraints",
126 "accessibility_requirements": "string (optional) -- specific a11y needs",
127 "game_genre": "string (optional) -- RPG, FPS, strategy, etc.",
128 "game_engine": "string (optional) -- Godot, Unity, Unreal, custom",
129 "target_platforms": ["array (optional) -- PC, PS5, Switch, mobile, etc."],
130 "prd_reference": "string (optional) -- output from Product-Owner skill",
131 "architecture_reference": "string (optional) -- output from Architect skill"
132 },
133 "input": "string -- the raw request or design brief"
134}
135```
136
137### Output Contract
138
139```json
140{
141 "task_type": "string",
142 "role": "string",
143 "artifact_title": "string",
144 "artifact": "string (markdown)",
145 "design_decisions": ["array -- key design decisions with rationale"],
146 "assumptions": ["array"],
147 "accessibility_notes": ["array -- WCAG compliance notes"],
148 "edge_cases": ["array -- error states and edge cases addressed"],
149 "open_questions": ["array"],
150 "input_support": {
151 "keyboard": "boolean",
152 "gamepad": "boolean (game UI only)",
153 "touch": "boolean (optional)"
154 },
155 "downstream_ready": true,
156 "downstream_notes": "string -- what the developer agent needs to know"
157}
158```
159
160---
161
162## User Commands
163
164| Command | Action |
165|---|---|
166| `role <name>` | Override detected role (e.g., `role ux-designer`, `role game-ui-designer`) |
167| `wireframe` | Create a wireframe for the current design |
168| `flow` | Create a user flow diagram |
169| `tokens` | Define or review design tokens |
170| `a11y` | Run accessibility review on current design |
171| `review` | Switch to design review mode |
172| `hud` | Design a HUD layout |
173| `menu` | Design a menu system |
174| `component` | Specify a UI component |
175| `accept` | Finalize current artifact |
176
177---
178
179## References
180
181### Role Manifests
182
183- `references/roles/ux-designer.md` -- UX Designer task routing, instructions, guardrails
184- `references/roles/ui-designer.md` -- UI Designer task routing, instructions, guardrails
185- `references/roles/game-ui-designer.md` -- Game UI Designer task routing, instructions, guardrails
186
187### Output Contracts
188
189- `references/contracts/ux-output.md`, `ui-output.md`, `game-ui-output.md`, `review-output.md`
190- `references/contracts/cross-role-tasks.md` -- Multi-role combination patterns
191
192### Domain References (loaded per matched task type)
193
194#### UX Designer
195
196- `references/user-flows.md` -- Flow diagrams, task analysis, navigation patterns, information architecture
197- `references/user-research.md` -- Interview guides, surveys, personas, empathy maps, Jobs-to-be-Done, research synthesis
198- `references/usability-heuristics.md` -- Nielsen's 10 heuristics, cognitive load, Fitts's law, Hick's law, evaluation methodology
199- `references/wireframing.md` -- Wireframe conventions, layout grids, responsive breakpoints, page templates, annotation standards
200
201#### UI Designer
202
203- `references/design-systems.md` -- Atomic design, design tokens, component APIs, theming, naming conventions, governance
204- `references/interaction-patterns.md` -- Micro-interactions, animation, transitions, loading states, gestures, scroll behaviors
205- `references/accessibility.md` -- WCAG 2.1 AA, color contrast, ARIA, keyboard navigation, screen readers, forms accessibility
206- `references/ui-patterns.md` -- Navigation, forms, tables, modals, notifications, search, empty states, responsive layouts
207
208#### Game UI Designer
209
210- `references/hud-systems.md` -- HUD layout, health bars, minimaps, compass, damage indicators, crosshairs, contextual HUD
211- `references/menu-systems.md` -- Menu state machines, settings, pause menus, save/load, gamepad navigation, title screens
212- `references/game-ui-patterns.md` -- Inventory, tooltips, crafting, quest log, dialogue, loot, shop, skill tree, map UI
213- `references/game-ui-accessibility.md` -- Colorblind modes, subtitles, input remapping, font scaling, screen reader, motion sensitivity