Ui-ux-suite design-audit
Full project design audit that orchestrates all agents, scores across 12 dimensions, generates prioritized action plan
install
source · Clone the upstream repo
git clone https://github.com/Aboudjem/ui-ux-suite
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Aboudjem/ui-ux-suite "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/design-audit" ~/.claude/skills/aboudjem-ui-ux-suite-design-audit && rm -rf "$T"
manifest:
skills/design-audit/SKILL.mdsource content
/design-audit: Full Project Design Audit
Run a comprehensive design audit on the current project or a specified path.
Usage
/design-audit # Audit current project /design-audit /path/to/project # Audit specific project
Flow
- Load knowledge base - Read the knowledge index and all 19 knowledge files:
- Use
withuiux_knowledge_query
to get the full inventorylistFiles: true - Every agent reads its assigned knowledge files (see
for the mapping)knowledge/INDEX.md - The evidence base, principles, anti-patterns, and trends files are required reading for ALL agents
- Use
- Scan project - Use
to detect framework, styling, component library, theme systemuiux_scan_project - Display profile - Show the user what was detected, ask for confirmation
- Dispatch agents - Launch all relevant specialist agents in parallel (each reads its knowledge files first):
- Color system diagnosiscolor-analyst
- Typography system diagnosistypography-analyst
- Layout, spacing, grid analysislayout-analyst
- Component quality and consistencycomponent-reviewer
- WCAG compliance checkaccessibility-auditor
- Motion, transitions, feedbackinteraction-analyst
- Cognitive load, hierarchy, trustpsychology-analyst
- Style direction evaluationvisual-style-advisor
- Platform convention adherenceplatform-advisor
- Navigation and user flowsux-flow-analyst
- Loading and perceived speedperformance-ux-analyst
- Aggregate scores - Use
to calculate weighted totaluiux_score_overall - Generate report - Full markdown report with:
- Project design profile
- Score card (12 dimensions)
- Top 20 findings ranked by impact
- Detailed per-dimension reports
- Prioritized action plan (quick wins / medium / major)
Agent dispatch strategy
Launch agents in parallel waves:
Wave 1 (always): color-analyst, typography-analyst, layout-analyst, accessibility-auditor, component-reviewer Wave 2 (always): interaction-analyst, psychology-analyst, visual-style-advisor Wave 3 (if applicable): platform-advisor (if mobile/cross-platform), ux-flow-analyst (if has routing), performance-ux-analyst (if has data fetching/images)
Output
Full audit report saved to
design-audit-report.md in the project root.
Score card displayed inline for quick overview.
Each finding may cite one or more UX laws inline (for example,
[!] psychology: 12-item nav menu - violates Hick's Law, Choice Overload). When any finding carries laws, the report ends with a ## Laws of UX Coverage markdown table summarizing violation counts and worst offenders per law. Agents look up law display names and primary-source citations from knowledge/laws-of-ux.md and the uiux_laws_query MCP tool.