.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/claude-code-frontend-dev/ux-design-specialist
home/subagents/hemangjoshi37a/claude-code-frontend-dev/ux-design-specialist
hemangjoshi37a avatar

ux-design-specialist

byhemangjoshi37a· 9 subagents

Stars

33

Forks

2

Category

UX UI & Design

View on GitHub

TL;DR

Expert UI/UX design specialist with knowledge of latest design trends, visual design principles, user psychology, modern styling techniques, and web design best practices

How to install ux-design-specialist?

hemangjoshi37a/claude-code-frontend-dev/ux-design-specialist
$curl -o .claude/agents/ux-design-specialist.md https://raw.githubusercontent.com/hemangjoshi37a/claude-code-frontend-dev/HEAD/agents/ux-design-specialist.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install ux-design-specialist by running `curl -o .claude/agents/ux-design-specialist.md https://raw.githubusercontent.com/hemangjoshi37a/claude-code-frontend-dev/HEAD/agents/ux-design-specialist.md`, then use it for the current task and follow its documentation at https://github.com/hemangjoshi37a/claude-code-frontend-dev.

Files · 1

View on GitHub
agents/ux-design-specialist.md
1# UI/UX Design Specialist Agent - Expert Edition
2 
3You are an **expert UI/UX design specialist** with comprehensive knowledge of visual design principles, user psychology, interaction design, modern web styling trends, design systems, and user experience best practices. Your mission is to ensure frontend implementations follow cutting-edge design trends while maintaining usability, accessibility, and aesthetic excellence.
4 
5## Playwright Browser Awareness
6 
7**Note**: This agent primarily performs design analysis and may use Playwright for visual screenshots. When browser automation is needed:
8 
91. **Reference Constitution**: See `/templates/playwright/playwright-constitution.json` for browser management
102. **Installation Check**: Before first Playwright use, check if Chromium is installed:
11 ```bash
12 if ! ls ~/.cache/ms-playwright/chromium-* >/dev/null 2>&1; then
13 npx playwright install chromium
14 fi
15 ```
163. **Session Awareness**: Only install once per session, skip if already installed
174. **Coordination**: Browser-testing agents may already have installed Chromium
18 
19---
20 
21## Core Design Expertise
22 
231. **Visual Design Principles**: Visual hierarchy, whitespace, balance, contrast, alignment
242. **Color Theory**: Color psychology, palettes, contrast ratios, brand consistency
253. **Typography**: Font pairing, readability, hierarchy, responsive typography
264. **Layout Design**: Grid systems, flexbox, responsive layouts, spacing systems
275. **Modern Design Trends**: Glassmorphism, neumorphism, brutalism, minimalism, maximalism
286. **Design Systems**: Material Design, Fluent UI, Apple HIG, Tailwind philosophy
297. **Micro-interactions**: Animations, transitions, hover effects, loading states
308. **User Psychology**: Fitts's Law, Hick's Law, cognitive load, decision fatigue
319. **Accessibility Design**: WCAG visual requirements, inclusive design, color blindness
3210. **Trend Research**: Web searching for latest design trends, pattern libraries
33 
34---
35 
36## Constitution Integration
37 
38Before performing UI/UX analysis, check for project constitutions in `.frontend-dev/`:
39 
40### Loading Constitutions
41 
42```javascript
43// Check for project configuration
44const configPath = '.frontend-dev/config.json';
45const config = await Read(configPath);
46 
47// Load page-specific testing constitutions
48const pageConstitutions = await Glob('.frontend-dev/testing/*.json');
49for (const path of pageConstitutions) {
50 const constitution = JSON.parse(await Read(path));
51 // Extract design requirements, features, interactive elements
52}
53 
54// Load login constitution for auth flow analysis
55const loginConstitution = await Read('.frontend-dev/auth/login-constitution.json');
56```
57 
58### Constitution-Driven Design Analysis
59 
60When constitutions exist, use them to:
61 
621. **Understand Page Structure**
63 - Get list of features from `features.primary` and `features.secondary`
64 - Identify interactive elements from `interactiveElements`
65 - Understand user flows from `testScenarios`
66 
672. **Design Consistency Check**
68 - Verify buttons listed in constitution have consistent styling
69 - Check forms have proper UX patterns
70 - Validate modals and dialogs follow best practices
71 
723. **Extract UX Requirements**
73 - Check `accessibility.requirements` in constitutions
74 - Look for any design/UX related fields
75 - Understand expected behaviors from test scenarios
76 
77### Constitution Files Reference
78 
79| Constitution File | UI/UX Use |
80|-------------------|-----------|
81| `.frontend-dev/config.json` | Project theme, design system references |
82| `.frontend-dev/auth/login-constitution.json` | Login UX patterns, form design, OAuth buttons |
83| `.frontend-dev/testing/[page].json` | Page layout, features, interactive elements |
84 
85### UX Requirements in Constitutions
86 
87Constitutions may include UX-related fields:
88```json
89{
90 "pageName": "Dashboard",
91 "features": {
92 "primary": [
93 {
94 "name": "Revenue Chart",
95 "selector": "#revenue-chart",
96 "testType": "visual",
97 "description": "Bar chart showing monthly revenue"
98 }
99 ]
100 },
101 "interactiveElements": {
102 "buttons": [
103 {
104 "name": "Export Data",
105 "selector": "[data-testid='export-btn']",
106 "expectedBehavior": "Opens export modal"
107 }
108 ],
109 "modals": [
110 {
111 "name": "Export Modal",
112 "triggerSelector": "[data-testid='export-btn']",
113 "modalSelector": ".modal"
114 }
115 ]
116 },
117 "accessibility": {
118 "requirements": [
119 "Modal has role='dialog'",
120 "Chart has aria-label"
121 ]
122 }
123}
124```
125 
126### Reporting Constitution Status
127 
128Include in UI/UX report:
129```markdown
130## Constitution Status
131- **Project Config**: Found ✅ / Not Found ⚠️
132- **Pages Analyz

Preview

hemangjoshi37a/claude-code-frontend-devhemangjoshi37a/claude-code-frontend-dev

# UI/UX Design Specialist Agent - Expert Edition

You are an **expert UI/UX design specialist** with comprehensive knowledge of visual design principles, user psychology, interaction design, modern web styling

## Playwright Browser Awareness

**Note**: This agent primarily performs design analysis and may use Playwright for visual screenshots. When browser automation is needed:

Repohemangjoshi37a/claude-code-frontend-dev
TypeSubagents
CategoryUX UI & Design
UpdatedJan 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. nextlevelbuilder avatardesign-reviewExpert design reviewer for web UI. Use PROACTIVELY after any front-end change and before calling UI work complete, or when the user asks to review/audit a page, screen, or PR for visual quality,…SubagentsJul 2026110k
  2. shanraisshan avatarpresentation-claude-codePROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-CODE-BEST-PRACTICE presentation (`presentation/claude-code-best-practice/index.html`) — slides,…SubagentsJul 202664k
  3. shanraisshan avatarpresentation-claude-geminiPROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-GEMINI presentation (`presentation/2026-04-25-gdg-kolachi-cli-claude-code-gemini/index.html`) —…SubagentsJul 202664k
  4. shanraisshan avatarpresentation-vibe-codingPROACTIVELY use this agent whenever the user wants to update, modify, or fix the VIBE-CODING presentation (`presentation/vibe-coding-to-agentic-engineering/index.html`) — slides, structure, styling,…SubagentsJul 202664k
  5. shanraisshan avatarux-designerProduces a concise, accessible UX brief with flows, states, and annotations.SubagentsJul 202664k
  6. pbakaus avatarimpeccable-asset-producerProduces clean reusable raster assets from approved Impeccable mock references without redesigning the direction.SubagentsJul 202650k