スキル一覧に戻る

review-ux-ui

pjt222
更新日 2 days ago
7 閲覧
17
2
17
GitHubで表示
デザインdesign

について

このスキルは、インターフェースをニールセンのヒューリスティクス、WCAG 2.1アクセシビリティ基準、ユーザーフローの効率性に対して評価することで、包括的なUX/UIレビューを実施します。リリース前のユーザビリティチェック、アクセシビリティ監査、フォーム/コンバージョン最適化を目的として設計されています。開発者はこれを使用して、認知的負荷、キーボード/スクリーンリーダーの互換性、全体的なインタラクションの有効性を分析できます。

クイックインストール

Claude Code

推奨
メイン
npx skills add pjt222/agent-almanac -a claude-code
プラグインコマンド代替
/plugin add https://github.com/pjt222/agent-almanac
Git クローン代替
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/review-ux-ui

このコマンドをClaude Codeにコピー&ペーストしてスキルをインストールします

ドキュメント

Review UX/UI

Eval UX/UI → usability|access|effectiveness.

Use When

  • Pre-release usability check
  • WCAG 2.1 AA|AAA audit
  • Flow eval → efficiency, err prevention
  • Form review → conversion
  • Heuristic eval existing UI
  • Cognitive load + info arch

In

  • Required: App (URL|prototype|src)
  • Required: Target user (role, skill, ctx)
  • Optional: User research (interview|survey|analytics)
  • Optional: WCAG target (A|AA|AAA)
  • Optional: Flows to eval
  • Optional: Assistive tech (screen reader|switch)

Do

Step 1: Heuristic Eval (Nielsen 10)

#HeuristicQRating
1Status visibilitySys informs user?
2Match real worldFamiliar lang/concepts?
3User control/freedomUndoredo
4ConsistencySimilar elements behave same?
5Err preventionPrevent before occur?
6Recognition > recallOptions visible?
7Flex/efficiencyShortcuts for experts?
8Aesthetic/minimalEvery element serves purpose?
9Err recoveryErrs clear, specific, constructive?
10Help/docsEasy find?

Severity:

SevDesc
0Not problem
1Cosmetic
2Minor
3Major
4Catastrophic — fix pre-release
## Heuristic Evaluation Findings
| # | Heuristic | Severity | Finding | Location |
|---|-----------|----------|---------|----------|
| 1 | System status | 3 | No loading indicator during data fetch — users click repeatedly | Dashboard page |
| 3 | User control | 2 | No undo for item deletion — only a confirmation dialog | Item list |
| 5 | Error prevention | 3 | Date field accepts invalid dates (Feb 30) | Booking form |
| 9 | Error recovery | 4 | Form submission error clears all fields | Registration |

→ All 10 evaluated w/ findings + severity.

If err: time-tight → focus 1, 3, 5, 9.

Step 2: Access Audit (WCAG 2.1)

Perceivable

  • 1.1.1 Non-text: Imgs have alt (decorative=alt="")
  • 1.3.1 Info/rels: Semantic HTML (headings, lists, tables, landmarks)
  • 1.3.2 Sequence: DOM order=visual order
  • 1.4.1 Color: Not sole means
  • 1.4.3 Contrast: ≥4.5:1 normal, ≥3:1 large
  • 1.4.4 Resize: 200% no loss
  • 1.4.11 Non-text contrast: UI ≥3:1
  • 1.4.12 Spacing: line 1.5x, letter 0.12em, word 0.16em

Operable

  • 2.1.1 Keyboard: All operable
  • 2.1.2 No trap: Focus never trapped
  • 2.4.1 Skip links: Avail
  • 2.4.3 Focus order: Logical
  • 2.4.7 Focus visible: Indicator clear
  • 2.4.11 Not obscured: Not behind sticky
  • 2.5.5 Target size: ≥24x24px (44x44 touch)

Understandable

  • 3.1.1 Lang: lang on <html>
  • 3.2.1 On focus: No surprise
  • 3.2.2 On input: No surprise w/o warn
  • 3.3.1 Err id: Clear text
  • 3.3.2 Labels: Visible
  • 3.3.3 Suggest: Fix hint

Robust

  • 4.1.1 Parsing: Valid HTML
  • 4.1.2 Name/role/val: Custom → ARIA
  • 4.1.3 Status msgs: Announced

→ WCAG 2.1 AA checked w/ pass/fail.

If err: auto-tools first (axe-core, Lighthouse) → manual for judgement.

Step 3: Keyboard + Screen Reader

Keyboard

Tab|Shift+Tab|Enter|Space|Arrow|Esc only:

## Keyboard Navigation Audit
| Task | Completable? | Issues |
|------|-------------|--------|
| Navigate to main content | Yes — skip link works | None |
| Open dropdown menu | Yes | Arrow keys don't work within menu |
| Submit a form | Yes | Tab order skips the submit button |
| Close a modal | No | Escape doesn't close, no visible close button in tab order |
| Use date picker | No | Custom date picker not keyboard accessible |

Screen Reader

NVDA|VoiceOver|TalkBack:

## Screen Reader Audit
| Element | Announced As | Expected | Issue |
|---------|-------------|----------|-------|
| Logo link | "link, image" | "Home, link" | Missing alt text on logo |
| Search input | "edit, search" | "Search products, edit" | Missing label association |
| Nav menu | "navigation, main" | Correct | None |
| Error message | (not announced) | "Error: email is required" | Missing live region |
| Loading spinner | (not announced) | "Loading, please wait" | Missing aria-live or role="status" |

→ Full flows tested keyboard + screen reader.

If err: no SR → inspect ARIA + semantic HTML as proxy.

Step 4: Flow Analysis

## User Flow: Complete a Purchase

### Steps
1. Browse products → 2. View product → 3. Add to cart → 4. View cart →
5. Enter shipping → 6. Enter payment → 7. Review order → 8. Confirm

### Assessment
| Step | Friction | Severity | Notes |
|------|---------|----------|-------|
| 1→2 | Low | - | Clear product cards |
| 2→3 | Medium | 2 | "Add to cart" button below the fold on mobile |
| 3→4 | Low | - | Cart icon updates with count |
| 4→5 | High | 3 | Must create account — no guest checkout |
| 5→6 | Low | - | Address autocomplete works well |
| 6→7 | Medium | 2 | Card number field doesn't auto-format |
| 7→8 | Low | - | Clear order summary |

### Flow Efficiency
- **Steps**: 8 (acceptable for e-commerce)
- **Required fields**: 14 (could reduce with address autocomplete + saved payment)
- **Decision points**: 2 (size selection, shipping method)
- **Potential drop-off points**: Step 4→5 (forced account creation)

→ Critical flows mapped, friction rated.

If err: no analytics → assess by step count + complexity.

Step 5: Cognitive Load

  • Density: Per-screen info appropriate?
  • Progressive disclosure: Complex revealed gradual?
  • Chunking: Related grouped (Gestalt)?
  • Recognition > recall: See vs remember?
  • Consistency: Similar tasks → similar patterns?
  • Decision fatigue: Too many choices? (Hick)
  • Working memory: Remember across steps?

→ Load assessed w/ overload|underload areas.

If err: hard objective → squint test (structure visible squinted?).

Step 6: Form Usability

  • Labels: Visible, associated
  • Placeholder: Examples only, not labels
  • Input types: Right (email|tel|number|date) for mobile
  • Validation timing: Blur|submit, not keystroke
  • Err msgs: Specific ("Email needs @") not generic
  • Required: Marked clear
  • Grouping: Related grouped
  • Autocomplete: autocomplete set
  • Tab order: Matches visual
  • Multi-step: Progress indicator
  • Persistence: Data preserved nav-away

→ Each form vs checklist + issues documented.

If err: many forms → prioritize high-traffic (registration|checkout|contact).

Step 7: Write Report

## UX/UI Review Report

### Executive Summary
[2-3 sentences: overall usability, most critical issues, strongest aspects]

### Heuristic Evaluation Summary
| Heuristic | Severity | Key Finding |
|-----------|----------|-------------|
[Summary table from Step 1]

### Accessibility Compliance
- **Target**: WCAG 2.1 AA
- **Status**: [X of Y criteria pass]
- **Critical failures**: [List]

### User Flow Analysis
[Key friction points with severity and recommendations]

### Top 5 Improvements (Prioritised)
1. **[Issue]** — Severity: [N] — [Specific recommendation]
2. ...

### What Works Well
1. [Specific positive observation]
2. ...

→ Prioritized, actionable recs w/ severity.

If err: too many issues → split "must fix" (3-4) vs "should fix" (1-2).

Check

  • All 10 Nielsen rated
  • WCAG checked (min: 1.1.1, 1.4.3, 2.1.1, 2.4.7, 3.3.1, 4.1.2)
  • Keyboard tested key flows
  • SR tested (or ARIA proxy)
  • ≥1 critical flow analyzed
  • Cognitive load assessed
  • Forms evaluated
  • Findings prioritized + actionable

Traps

  • UX vs visual: UX=how works, visual=how looks. Beautiful UI ≠ good UX.
  • Happy path only: Errs, empty, loading, edges = where bugs hide.
  • No real devices: DevTools = proxy. Real catches touch, perf, viewport.
  • Access afterthought: Late = expensive. Early + continuous.
  • Personal pref: "I prefer..." ≠ UX feedback. Cite heuristics|research|patterns.

  • review-web-design — visual review (layout, typo, color)
  • scaffold-nextjs-app — Next.js scaffold
  • setup-tailwind-typescript — Tailwind CSS

GitHub リポジトリ

pjt222/agent-almanac
パス: i18n/caveman-ultra/skills/review-ux-ui
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

関連スキル

executing-plans

デザイン

executing-plansスキルは、完全な実装計画があり、それを管理されたバッチでレビューチェックポイントを設けながら実行する場合に使用します。このスキルは計画を読み込んで批判的にレビューした後、小さなバッチ(デフォルトは3タスク)でタスクを実行し、各バッチの間に進捗状況を報告してアーキテクトのレビューを受けます。これにより、品質管理チェックポイントが組み込まれた体系的な実装が保証されます。

スキルを見る

requesting-code-review

デザイン

このスキルは、コードレビュアーサブエージェントを起動し、処理を進める前に要件に対してコード変更を分析します。タスク完了後、主要な機能の実装後、またはmainブランチへのマージ前などに使用すべきです。このレビューは、現在の実装と元の計画を比較することで、問題を早期に発見するのに役立ちます。

スキルを見る

connect-mcp-server

デザイン

このスキルは、開発者がHTTP、stdio、またはSSEトランスポートを使用してMCPサーバーをClaude Codeに接続するための包括的なガイドを提供します。GitHub、Notion、カスタムAPIなどの外部サービスを統合するためのインストール、設定、認証、セキュリティについて解説しています。MCP統合のセットアップ、外部ツールの設定、またはClaudeのModel Context Protocolを扱う際にご利用ください。

スキルを見る

web-cli-teleport

デザイン

このスキルは、タスク分析に基づいて開発者がClaude Code WebとCLIインターフェースの選択を支援し、これらの環境間でのシームレスなセッションテレポーテーションを可能にします。Web、CLI、モバイル環境を切り替える際のセッション状態とコンテキストを管理することで、ワークフローを最適化します。様々な段階で異なるツールを必要とする複雑なプロジェクトにご活用ください。

スキルを見る