Automated UI/UX audit assistant that evaluates accessibility and heuristics, then generates GitHub issues.

Install

mkdir -p .claude/skills/ux-audit-riox432 && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14721" && unzip -o skill.zip -d .claude/skills/ux-audit-riox432 && rm skill.zip

Installs to .claude/skills/ux-audit-riox432

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Comprehensive UI/UX audit: heuristic evaluation, accessibility, visual analysis, platform guidelines, and improvement proposals — then create GitHub Issues
155 charsno explicit “when” trigger
Advanced

Key capabilities

  • Build a list of screens to audit in Web Visual mode
  • Capture screenshots and UI element hierarchy in Mobile Visual mode
  • Perform heuristic evaluation against Nielsen's 10 Usability Heuristics
  • Check WCAG 2.2 AA compliance for accessibility
  • Analyze visual and layout consistency across viewports
  • Propose incremental improvements and file GitHub Issues for findings

How it works

The skill performs a complete UI/UX audit by inventorying screens, running parallel analyses (heuristic, accessibility, visual, platform guidelines), and generating a report with actionable findings.

Inputs & outputs

You give it
URL, 'mobile', or specific screen/module to audit
You get back
UX Audit Report with findings, proposed fixes, and optionally created GitHub Issues

When to use ux-audit

  • Conducting heuristic UX audits
  • Accessibility testing for web/mobile
  • Filing tracking issues for UI bugs

About this skill

/ux-audit — UI/UX Comprehensive Audit

Analyze the app's UI/UX quality, detect issues, propose incremental improvements, and file GitHub Issues.

Target: $ARGUMENTS (URL for web, mobile for emulator/simulator visual audit, or specific module/screen)

This is a long-running skill. Use TaskCreate to track phases.

Analysis Mode Detection

Detect the analysis mode from $ARGUMENTS and available tools:

ConditionModeMethod
URL provided + Playwright MCP availableWeb VisualScreenshots + A11y tree + axe-core
URL provided + no PlaywrightWeb CodeHTML/JSX/TSX static analysis
mobile + mobile-mcp available + emulator/simulator runningMobile Visualmobile-mcp screenshots + UI element dump
Kotlin/Swift project + no mobile-mcpMobile CodeCompose/SwiftUI code static analysis
Specific module/screen specifiedScopedAnalyze only the specified area

Phase 1: Screen Inventory

Goal: Build a list of screens to audit.

Web Visual mode

  1. Read CLAUDE.md for dev server command and app structure
  2. If URL not provided, start dev server
  3. Use Playwright to discover pages (navigate sitemap, router config, or nav links)

Mobile Visual mode

  1. Use mobile_get_device_info to confirm emulator/simulator is connected
  2. Use mobile_take_screenshot to capture the current screen
  3. Use mobile_list_elements_on_screen to get UI element hierarchy
  4. Navigate through the app using mobile_click and mobile_press_button (Back)
  5. Build screen list by exploring the app's navigation structure
  6. For each screen: capture screenshot + dump UI elements

Web Code / Mobile Code mode

  1. Glob for UI files:
    • Web: **/*.tsx, **/*.jsx, **/*.vue, **/*.svelte
    • Android: **/*Screen.kt, **/*Activity.kt, **/*Fragment.kt, **/ui/**/*.kt
    • iOS: **/*View.swift, **/*Screen.swift, **/*ViewController.swift
  2. Group by feature/module

Output

Present screen list to user for confirmation:

Found N screens:
1. HomeScreen (src/ui/home/HomeScreen.kt)
2. SettingsScreen (src/ui/settings/SettingsScreen.kt)
...

→ AskUserQuestion: Confirm screen list. Add/remove screens?


Phase 2: Multi-Agent Analysis

Launch 4 agents in parallel (model: sonnet). Each agent analyzes all screens.

See ${CLAUDE_SKILL_DIR}/reference.md for detailed criteria per agent.

Agent A: Heuristic Evaluation

Evaluate the UI against Nielsen's 10 Usability Heuristics.

For Web Visual mode: analyze screenshots + accessibility tree.
For Mobile Visual mode: analyze screenshots + UI element dump from mobile-mcp.
For Code mode: analyze UI code structure and patterns.

For each screen, check all 10 heuristics (see reference.md for details).
Output: [screen] heuristic_number severity — finding — suggestion
Severity: Critical / Warning / Suggestion

Agent B: Accessibility Audit

Check WCAG 2.2 AA compliance.

For Web Visual mode:
  1. Use browser_evaluate to inject and run axe-core:
     const script = document.createElement('script');
     script.src = 'https://cdn.jsdelivr.net/npm/axe-core@4/axe.min.js';
     // If CDN blocked by CSP, note it and fall back to code analysis
  2. Run axe.run() and collect results
  3. Also check: touch target sizes, focus order, color contrast visually

For Mobile Visual mode (mobile-mcp):
  1. Use mobile_list_elements_on_screen to dump all UI elements
  2. Check each element for:
     - contentDescription / accessibilityLabel presence
     - Bounds size (width/height >= 48dp Android, 44pt iOS)
     - Focusable/clickable attributes
  3. Use mobile_take_screenshot + Claude Vision for visual contrast check
  4. Test screen reader traversal: navigate elements sequentially

For Code mode: (see reference.md for platform-specific checks)
  - Android: contentDescription, clickable size >= 48dp, semantic elements
  - iOS: accessibilityLabel, frame >= 44pt, Dynamic Type support
  - Web: alt text, ARIA roles, semantic HTML, form labels

Output: [screen] wcag_criterion severity — finding — fix

Agent C: Visual & Layout Check

Check for visual issues and layout consistency.

For Web Visual mode:
  1. Capture at 3 viewports: desktop(1280), tablet(768), mobile(375)
  2. Compare screenshots across viewports for responsive issues
  3. Check: element overflow, text truncation, image aspect ratio, spacing consistency

For Mobile Visual mode (mobile-mcp):
  1. Capture screenshot of each screen
  2. Analyze with Claude Vision for:
     - Element overlap or clipping
     - Text truncation without ellipsis
     - Image aspect ratio distortion
     - Inconsistent spacing/alignment
  3. Compare portrait vs landscape (rotate device if supported)

For Code mode:
  - Hardcoded dimensions (px instead of dp/sp/rem/%)
  - Missing responsive breakpoints or adaptive layouts
  - Inconsistent spacing/padding values
  - Missing dark mode support (if theme system exists)

Output: [screen] severity — finding — suggestion

Agent D: Platform Guidelines

Check compliance with platform design guidelines.

For Android (Compose):
  - Material Design 3 component usage (vs custom components)
  - Proper use of MaterialTheme (colorScheme, typography, shapes)
  - Navigation patterns (NavHost, TopAppBar, BottomNavigation)
  - Edge-to-edge display handling

For iOS (SwiftUI):
  - HIG compliance (navigation, tab bars, safe areas)
  - SF Symbols usage where appropriate
  - Dynamic Type support (.font(.body) not .font(.system(size:)))
  - SwiftUI lifecycle best practices

For Web:
  - Semantic HTML usage
  - Consistent design system/token usage
  - Standard interaction patterns (forms, navigation, modals)

Output: [screen] guideline severity — finding — suggestion

Phase 3: Improvement Proposals

Goal: Generate actionable, incremental improvement proposals from Phase 2 findings.

Rules

  1. Never propose a complete UI redesign — only incremental changes
  2. Preserve existing functionality — improvements must not break current behavior
  3. Each proposal specifies blast radius — which screens/components are affected
  4. Ranked by impact/effort ratio — quick wins first

For each proposal:

| # | Current State | Proposed Change | Impact | Blast Radius | Effort |
|---|--------------|-----------------|--------|-------------|--------|
| 1 | No loading state on HomeScreen | Add skeleton loading | High | HomeScreen only | S |
| 2 | Touch targets 32dp on SettingsScreen | Increase to 48dp min | High | SettingsScreen | S |

Phase 4: Report & Issue Filing

4a. Present Report

## UX Audit Report

**Target:** {app}
**Mode:** {Web Visual / Mobile Code / ...}
**Screens analyzed:** N
**Date:** YYYY-MM-DD

### Summary
| Category | Critical | Warning | Suggestion | Total |
|----------|----------|---------|------------|-------|
| Heuristic | N | N | N | N |
| Accessibility | N | N | N | N |
| Visual/Layout | N | N | N | N |
| Platform Guidelines | N | N | N | N |

### Critical (must fix)
| # | Category | Screen | Description | Proposed Fix |
|---|----------|--------|-------------|-------------|

### Warning (should fix)
...

### Suggestion (nice to have)
...

### Improvement Proposals (ranked)
| # | Current | Proposed | Impact | Scope | Effort |
|---|---------|----------|--------|-------|--------|

4b. AskUserQuestion

→ Which findings should become GitHub Issues?

  • All Critical + Warning (recommended)
  • All findings
  • Let me select
  • None (report only)

4c. Create GitHub Issues

For each selected finding:

gh issue create \
  --title "UX: {description}" \
  --body "$(cat <<'EOF'
## Problem
{description}

## Screen
{screen name and file path}

## Current State
{what it looks like now}

## Proposed Fix
{incremental improvement}

## Impact
{who is affected, severity}

## References
- WCAG 2.2: {criterion if applicable}
- {Platform guideline if applicable}
EOF
)" \
  --label "ux,{severity}"

Severity Classification

SeverityCriteria
CriticalAccessibility blocker (screen reader can't access), app unusable on certain devices, WCAG A violation
WarningPoor usability (confusing flow, missing feedback), WCAG AA violation, guideline deviation
SuggestionImprovement opportunity (better patterns exist), minor inconsistency, polish

Error Handling

SituationAction
Playwright MCP not availableSwitch to Code analysis mode, note in report
axe-core CDN blocked by CSPFall back to code-based a11y checks, note in report
Dev server won't startAsk user for URL or switch to Code mode
No UI files foundReport error, suggest checking $ARGUMENTS
gh issue create failsOutput issue content as text for manual creation

When not to use it

  • When only static code analysis is needed without visual inspection
  • When the target is not a UI/UX interface
  • When the user does not want GitHub Issues to be created

Limitations

  • Requires Playwright MCP for Web Visual mode or mobile-mcp for Mobile Visual mode
  • axe-core CDN might be blocked by CSP, requiring fallback to code analysis
  • Dev server must be running for Web Visual mode if URL is not provided

How it compares

This skill conducts a multi-faceted UI/UX audit using parallel agents for heuristic evaluation, accessibility, visual analysis, and platform guidelines, and can automatically create GitHub issues, which is more integrated than manual audits

Compared to similar skills

ux-audit side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
ux-audit (this skill)04moReviewAdvanced
web-design-guidelines326moNo flagsBeginner
ui-ux-designer414moNo flagsIntermediate
design-research94moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

web-design-guidelines

vercel

Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".

3290

ui-ux-designer

sickn33

Create interface designs, wireframes, and design systems. Masters user research, accessibility standards, and modern design tools. Specializes in design tokens, component libraries, and inclusive design. Use PROACTIVELY for design systems, user flows, or interface optimization.

4171

design-research

mevans2120

Conducts user experience research and analysis to inform design decisions. Reviews first-party and third-party user data, analyzes industry trends from UX and visual design perspectives, and plans user research studies. Creates personas, customer segments, design principles, design roadmaps, and research discussion guides.

981

accessibility-compliance-accessibility-audit

sickn33

You are an accessibility expert specializing in WCAG compliance, inclusive design, and assistive technology compatibility. Conduct audits, identify barriers, and provide remediation guidance.

420

axiom-ios-accessibility

CharlesWiltgen

Use when fixing or auditing ANY accessibility issue - VoiceOver, Dynamic Type, color contrast, touch targets, WCAG compliance, App Store accessibility review.

13

ui-visual-validator

sickn33

Rigorous visual validation expert specializing in UI testing, design system compliance, and accessibility verification. Masters screenshot analysis, visual regression testing, and component validation. Use PROACTIVELY to verify UI modifications have achieved their intended goals through comprehensive visual analysis.

10

Search skills

Search the agent skills registry