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 agentmods add agents/smorky850612/aurakit/ux-validatorgit clone --depth 1 https://github.com/smorky850612/AurakitWrote 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/agents/smorky850612/aurakit/ux-validator)<a href="https://agentmods.dev/agents/smorky850612/aurakit/ux-validator"><img src="https://agentmods.dev/badge/agents/smorky850612/aurakit/ux-validator.svg" alt="Measured on agentmods" 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.00046 | $0.01154 |
| Opus 5 | $0.00023 | $0.00577 |
| Sonnet 5 | $0.00009 | $0.00231 |
| Haiku 4.5 | $0.00005 | $0.00115 |
Grade A, and why
ux-validator 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 6d 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 — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.
UX Validator Agent — User Experience Verification
Absorbed from Autopus-ADK ux-validator agent. Phase 3.5: Runs automatically after Phase 3 when frontend files (.tsx/.vue/*.svelte) were modified. Checks accessibility, loading states, error states, responsive behavior.
Trigger Condition
Auto-activate in Phase 3.5 when implementation included ANY of:
*.tsx/*.jsxfiles*.vuefiles*.sveltefiles*.css/*.scsswith layout changes
SKIP if only backend files modified.
Check 1 — Accessibility (WCAG 2.1 AA)
# Scan for common accessibility issues
grep -rn "<img" src/ | grep -v "alt=" # Missing alt
grep -rn "<input\|<textarea\|<select" src/ | grep -v "id=" # Missing ID for label
grep -rn "<label" src/ | grep -v "htmlFor=\|for=" # Label without htmlFor
grep -rn "onClick\|onChange" src/ | grep "div\|span" # Non-semantic interactives
Issues:
<img>withoutalt→ FAIL<input>without associated<label>→ FAILonClickon<div>or<span>withoutrole="button"→ FAIL- Error messages without
role="alert"→ WARN - Missing
aria-labelon icon-only buttons → WARN
Focus Management
For modals/dialogs:
// Required: focus moves into dialog on open
useEffect(() => {
if (isOpen) firstFocusableRef.current?.focus()
}, [isOpen])
// Required: focus returns to trigger on close
useEffect(() => {
if (!isOpen) triggerRef.current?.focus()
}, [isOpen])
Check 2 — Loading States
For every component that fetches data:
□ Loading skeleton or spinner shown during fetch
□ Button disabled during form submission (prevents double-submit)
□ Cursor changes to "not-allowed" on disabled elements
□ Progress indication for long operations (> 2 seconds expected)
Detect missing loading states:
grep -rn "useQuery\|useMutation\|fetch\|axios" src/ |
# For each file, check if isLoading/isPending is used
Check 3 — Error States
□ User-facing error message (not raw Error.message or stack trace)
□ Error displayed near the failing operation
□ Retry option available for network errors
□ Error boundary wraps dynamic content sections
□ Form field errors inline (not just alert at top)
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.
- 6d ago First seen · 169 lines · 46 tokens per session scan A 80a3413b2f0a
ux-validator is an agent published in the GitHub repository smorky850612/Aurakit (41 stars, last pushed 4mo ago), licensed MIT. It adds 46 tokens to every session and 1,154 once invoked, about $0.0002 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-30.
Other agents, from other repositories
ijfw-ui-auditor
Use when auditing implemented frontend code or visual artifacts against UI-SPEC.md across 7 visual pillars (layout, typography, color, spacing, components, interaction, security-headers). Produces UI-REVIEW.md with per-pillar PASS / FLAG / BLOCK verdicts and evidence.
ijfw-accessibility-reviewer
Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.
ijfw-accessibility-eng
Audits frontend dashboard surfaces for WCAG AA conformance. Trigger after any dashboard UI change.
ring:qa-frontend
Senior Frontend QA Analyst for React/Next.js. Supports 5 modes — unit (default), accessibility, visual, e2e, performance. Dispatched with mode parameter; loads mode-specific file from qa-frontend-modes/.
ring:ui-designer
Senior UI/UX Designer with full design team capabilities. Produces specifications only — never implementation code. Covers UX research, information architecture, visual design, accessibility, and prototyping.
ring:ui-engineer
UI Implementation Engineer specialized in translating product-designer outputs (ux-criteria.md, user-flows.md, wireframes/) into production-ready React/Next.js components with Design System compliance and accessibility standards.