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.
npx skills add Quality-Max/free-qa-skills --skill ui-ux-scangit clone --depth 1 https://github.com/Quality-Max/free-qa-skillsWrote 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.
[](https://agentmods.dev/skills/quality-max/free-qa-skills/ui-ux-scan)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
- Navigate to the URL using
mcp__playwright__browser_navigate - Take a full-page screenshot with
mcp__playwright__browser_take_screenshot - Get the accessibility snapshot with
mcp__playwright__browser_snapshot - Run evaluation scripts with
mcp__playwright__browser_evaluatefor 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")
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.
- 12d ago First seen · 139 lines · 50 tokens per session scan A edafcee28fbc
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.
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".
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…
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…
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.
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.
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…