ui-ux-scan

ui-ux-scan is a skill for Claude Code, Codex from Quality-Max/free-qa-skills. It costs 50 tokens per session (1,099 once invoked), scanned A, original, Apache-2.0.

A quick browser-based review of a page’s interface and user experience. It checks controls, readability, spacing, contrast, empty and loading states, and common design problems.

In plain words
What is it for?
Use it to inspect touch-target sizes, font consistency, color contrast, spacing, empty states, loading indicators, and other common interface deficiencies.
Why use it?
It finds issues that can make a page hard to use, especially for people on touch devices or with accessibility needs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to inspect touch-target sizes, font consistency, color contrast, spacing, empty states, loading indicators, and other common interface deficiencies.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/quality-max/free-qa-skills/ui-ux-scan
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Quality-Max/free-qa-skills --skill ui-ux-scan
Clone the repo
git clone --depth 1 https://github.com/Quality-Max/free-qa-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ui-ux-scan

README.md
[![agentmods](https://agentmods.dev/badge/skills/quality-max/free-qa-skills/ui-ux-scan/github.svg)](https://agentmods.dev/skills/quality-max/free-qa-skills/ui-ux-scan)
Your own site
<a href="https://agentmods.dev/skills/quality-max/free-qa-skills/ui-ux-scan"><img src="https://agentmods.dev/badge/skills/quality-max/free-qa-skills/ui-ux-scan/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ui-ux-scan

Your own site · 80×15
<a href="https://agentmods.dev/skills/quality-max/free-qa-skills/ui-ux-scan"><img src="https://agentmods.dev/badge/skills/quality-max/free-qa-skills/ui-ux-scan.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,099 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.01099
Opus 5 $0.00025 $0.00549
Sonnet 5 $0.00010 $0.00220
Haiku 4.5 $0.00005 $0.00110

Measured 12d ago against content hash edafcee28fbc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

ui-ux-scan scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/ui-ux-scan/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

UI/UX Deficiency Scan

Find common UI/UX problems that hurt user experience. No signup required.

Prerequisites

  • Playwright MCP (comes with Claude Code)

Trigger

  • "Scan UX issues on https://..."
  • "Check UI quality of my site"
  • "Find design problems on this page"
  • "UX review this URL"

Workflow

  1. Navigate to the URL using mcp__playwright__browser_navigate
  2. Take a full-page screenshot with mcp__playwright__browser_take_screenshot
  3. Get the accessibility snapshot with mcp__playwright__browser_snapshot
  4. Run evaluation scripts with mcp__playwright__browser_evaluate for each category:

Checks

Touch & Click Targets

() => {
  const small = [];
  document.querySelectorAll('a, button, input, select, [role="button"]').forEach(el => {
    const rect = el.getBoundingClientRect();
    if (rect.width > 0 && rect.height > 0 && (rect.width < 44 || rect.height < 44)) {
      small.push({ tag: el.tagName, text: el.textContent.trim().substring(0, 30), width: Math.round(rect.width), height: Math.round(rect.height) });
    }
  });
  return small;
}

Flag any interactive element smaller than 44x44px.

Font Consistency

() => {
  const fonts = new Set();
  const sizes = new Set();
  document.querySelectorAll('body *').forEach(el => {
    const s = getComputedStyle(el);
    if (el.textContent.trim()) {
      fonts.add(s.fontFamily.split(',')[0].trim().replace(/"/g, ''));
      sizes.add(Math.round(parseFloat(s.fontSize)));
    }
  });
  return { fontFamilies: [...fonts], fontSizes: [...sizes].sort((a,b) => a-b) };
}

Flag if more than 3 font families or more than 8 distinct font sizes.

Spacing & Alignment

  • Check for inconsistent padding/margins on sibling elements
  • Flag text too close to edges (< 8px padding)
  • Flag elements overlapping or clipping

Empty States

  • Check if lists/grids have 0 items with no "empty" message
  • Check for blank sections with no content
  • Flag placeholder text still visible ("Lorem ipsum", "TODO", "placeholder")

Read the full file on GitHub · 139 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 139 lines · 50 tokens per session scan A edafcee28fbc

Subscribe to this mod's changes

ui-ux-scan is a skill published in the GitHub repository Quality-Max/free-qa-skills (10 stars, last pushed 18d ago), licensed Apache-2.0. It adds 50 tokens to every session and 1,099 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

accessibility

Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

addyosmani/web-quality-skills · 51 tokens

accessible-dev

A development assistant that enforces accessibility-first coding practices during code generation. Use this skill when writing new UI components, features, or interfaces to ensure WCAG 2.1 Level AA compliance from the start.\n\n \nContext: Developer is building a new user registration form for a web…

deepakkamboj/claude-marketplace · 408 tokens

contrast-checker

Color contrast analyzer for WCAG compliance. Use when analyzing color contrast in code files, when user mentions WCAG compliance, color accessibility, contrast ratios, or when discussing colors in UI components. Calculates contrast ratios, identifies violations, and suggests accessible color alternatives that preserve…

deepakkamboj/claude-marketplace · 59 tokens

use-of-color

Analyzes code for WCAG 1.4.1 Use of Color compliance. Identifies where color is used as the only means of conveying information and recommends additional visual indicators like text, icons, patterns, or ARIA attributes.

deepakkamboj/claude-marketplace · 51 tokens

refactor

Accessibility refactoring specialist. Automatically fixes accessibility issues across multiple files. Performs complex refactoring like extracting accessible components, restructuring markup, and implementing proper ARIA patterns.

deepakkamboj/claude-marketplace · 35 tokens

scroll-craft

Build premium scroll-driven landing pages for service, product, food, and drink brands. Plan the visitor journey, page grammar, emotional peak, and bespoke signature move. Create dimensional heroes with independent visual planes, restrained motion, and separate mobile composition. Use supplied photos and footage or…

nateherkai/scroll-craft · 177 tokens