ux-audit
This skill should be used when auditing live web-platform UI for decay. Screenshots bot routes, delegates to ux-design-lead audit mode, dedupes, files capped issues.
ux-audit
Recurring UX-review agent loop. Scheduled via .github/workflows/scheduled-ux-audit.yml on push to main under apps/web-platform/{app,components}/** and a monthly 0 9 1 * * cron. Can be run locally in dry-run mode for calibration.
Architecture: thin orchestrator (this skill) → delegates screenshot analysis to the ux-design-lead agent in audit mode. Mirrors the soleur:competitive-analysis / competitive-intelligence split.
Invocation
Primary: the scheduled workflow (.github/workflows/scheduled-ux-audit.yml) runs this skill via claude-code-action. That's the production path.
Local / dev: invoke from a Claude Code session (terminal, IDE, web) with Doppler secrets loaded into the environment. The skill is registered as soleur:ux-audit:
# Load credentials (one terminal session)
doppler run -c prd_scheduled -- \
doppler run -c prd --fallback-only -- \
claude
# Then inside Claude Code, invoke the skill via its slash form:
/soleur:ux-audit
# Or with a single-route override:
/soleur:ux-audit --route /dashboard
From another agent: use the Skill tool:
Skill(skill: "soleur:ux-audit")
Skill(skill: "soleur:ux-audit", args: "--route /dashboard")
Dry-run toggle: export UX_AUDIT_DRY_RUN=true before launching Claude Code. The skill reads the env var at runtime. In the scheduled workflow (.github/workflows/scheduled-ux-audit.yml) the env is hardcoded to 'true' per plan #2341 Phase 3 calibration outcome (#2378 MISS) — file mode must be re-enabled by editing the workflow directly, not via a workflow input.
Env vars required (loaded from Doppler prd_scheduled, falling back to prd):
SUPABASE_URL,SUPABASE_SERVICE_ROLE_KEY,NEXT_PUBLIC_SUPABASE_ANON_KEY,NEXT_PUBLIC_SITE_URL— fromprdUX_AUDIT_BOT_EMAIL,UX_AUDIT_BOT_PASSWORD— fromprd_scheduledUX_AUDIT_DRY_RUN—truewrites findings JSON to stdout + workflow artifact;falsefiles issuesGH_TOKEN— forgh issue create/gh issue list
Single dry-run knob: UX_AUDIT_DRY_RUN env. In the scheduled workflow it is hardcoded to 'true'; locally it is controlled by the exported env var. One plumbing path either way.
Constants (inline, not configurable)
CAP_OPEN_ISSUES = 20— global cap on openux-audit-labeled issues; skill refuses to file when reachedCAP_PER_RUN = 5— severity-ranked top-N findings filed per runCAP_PER_ROUTE = 2— no single route may contribute more than 2 findings to the top-N, so anonymous funnel pages (login/signup) cannot monopolize output and crowd out bot-authenticated dashboard findings. Ref #2378.FINDING_CATEGORIES = ["real-estate", "ia", "consistency", "responsive", "comprehension"]— dedup hash keys on this exact set
Workflow
1. Load route list + bot creds
Read route-list.yaml. Each route has {path, auth, fixture_prereqs, viewport}. If --route <path> is passed (dev affordance), filter to that single route.
2. Global-cap check
OPEN_COUNT=$(gh issue list --label ux-audit --state open --json number --jq 'length')
if [ "$OPEN_COUNT" -ge 20 ]; then
echo "::warning::Global ux-audit cap reached ($OPEN_COUNT open). Refusing to file new issues."
exit 0
fi
3. Per-route screenshot capture
For each route:
- If
auth: bot, invoke bot-signin.ts once per run (the storage-state file is reused across routes). Script writes the Supabase SSR auth cookie to${GITHUB_WORKSPACE}/tmp/ux-audit/storage-state.json(absolute path, per [hr-mcp-tools-playwright-etc-resolve-paths]). - Verify route
fixture_prereqsare satisfied. Ifkb_workspace_deferredappears infixture_prereqs, logroute skipped: missing prereq kb_workspace_deferred (tracked in #2351)and continue. The bot-fixture.tsseedsubcommand idempotently satisfiestcs_accepted,billing_active, andchat_conversations. - Launch Playwright MCP. Use
browser_navigate+browser_take_screenshotat the route'sviewportsize. Save PNG to${GITHUB_WORKSPACE}/tmp/ux-audit/<route-slug>.png(slug/dashboard/kb→dashboard-kb). - If navigation/screenshot fails for a single route, log
::warning::route capture failed: <path>and continue — one route failure does not abort the run.
4. Delegate to ux-design-lead (audit mode)
The skill emits no intermediate ::warning:: / ::error:: annotations for parser consumption; the final JSON summary in §7.5 is the machine-readable signal. Human-readable ::warning:: lines for individual route skips remain for CI log UX.
Invoke ux-design-lead via the Task tool with a prompt containing:
mode: audit
viewport: {w: 1440, h: 900}
targets:
- {path: "/dashboard", auth: "bot", fixture_prereqs: [tcs_accepted, billing_active], screenshot_path: "/absolute/path/to/dashboard.png"}
- ...
If Step 3 skipped a route (capture failure), that route is absent from targets — never passed as a null or placeholder. The zipped form makes screenshot↔route skew structurally impossible.
Parse the agent's output as JSON. If parsing fails: log ::error::malformed agent output for target index <i> (route <path>) and skip that target's findings. Do NOT retry — the parse-guard isolates a bad run instead of looping.
5. Dedup (single-layer hash search)
For each finding, compute the hash via dedup-hash.ts: sha256(utf8("{route}|{selector}|{category}")). Empty selector coarsens to *.
Check against existing issues (open OR closed) in a single search:
EXISTS=$(gh issue list --label ux-audit --state all --search "ux-audit-hash: $HASH" --json number --jq 'length')
if [ "$EXISTS" -gt 0 ]; then
echo "dedup-suppressed: $HASH"
continue
fi
Closed issues count. If the founder wants to resurface a closed finding, they reopen it. No time-based expiry.
6. Severity-rank + cap
Sort surviving findings by severity (critical > high > medium > low) then stable by route. Then apply CAP_PER_ROUTE = 2: walk the sorted list and drop any finding that would be the 3rd+ entry for a route already seen. Finally, take the top CAP_PER_RUN = 5 of what remains.
The per-route cap runs before CAP_PER_RUN so dropped anonymous-route findings free up slots for dashboard findings rather than the reverse. (CAP_OPEN_ISSUES is a separate check at Step 2; it does not participate in this ordering.) If fewer than 5 findings survive both caps, file what remains — the output is intentionally under-filled rather than padded with dropped-route duplicates.
7. File issues (or dry-run to stdout)
Dry run (UX_AUDIT_DRY_RUN=true): write the capped findings array as JSON to stdout AND to ${GITHUB_WORKSPACE}/tmp/ux-audit/findings.json (workflow uploads as an artifact). Do not call gh issue create.
File mode (UX_AUDIT_DRY_RUN=false): for each finding, write a body file under ${GITHUB_WORKSPACE}/tmp/ux-audit/body-<hash>.md containing:
**Route:** `<route>`
**Category:** `<category>`
**Severity:** `<severity>`
<description>
**Fix hint:** <fix_hint>
**Screenshot:** attached below.
<!-- ux-audit-hash: <64-hex> -->
Then (via env: vars, never inline per [hr-in-github-actions-run-blocks-never-use]):
gh issue create \
--title "ux: $TITLE" \
--body-file "$BODY_FILE" \
--label ux-audit,agent:ux-design-lead,domain/product \
--milestone "Post-MVP / Later"
Attach the screenshot to the issue via gh api /repos/:owner/:repo/issues/:number -f body=... after creation (GitHub's issue-attachment upload requires a multipart POST against the issue ID, not available on gh issue create).
7.5 Stdout summary
Before Step 8 cleanup, emit a single-line JSON object to stdout so parent agents can tail -n 1 | jq . the run outcome:
{"filed":N,"suppressed":M,"skipped":K,"hashes":["<hex>", ...]}
Fields (all four required, in this order):
filed— number ofgh issue createcalls that succeeded this run (0 in dry-run mode; the dry-run findings array length does NOT count asfiled— dry-run surfaces the full array infindings.jsoninstead)suppressed— number of findings dropped by the dedup hash search (Step 5)skipped— number of findings dropped byCAP_PER_ROUTEorCAP_PER_RUN(Step 6)hashes— sortedstring[]of hex hashes that were either filed (file mode) or would have been filed (dry-run). Stable ordering so parent agents diffing runs see byte-stable output.
Also write the same JSON to ${GITHUB_WORKSPACE}/tmp/ux-audit/summary.json so the workflow can upload it as an artifact sibling to findings.json.
Early-exit shape (CAP_OPEN_ISSUES reached at Step 2): emit {"filed":0,"suppressed":0,"skipped":0,"hashes":[]} so parent agents always see a parseable line.
Do not include absolute paths, timestamps, or widen the shape without a schema version field — byte-stability across runs matters for downstream diffs.
8. Cleanup
Call browser_close to release the Playwright session (per [cq-after-completing-a-playwright-task-call]). Leave storage-state.json in place — it's gitignored and the workflow runner is ephemeral.
Bot fixture spec
Managed by bot-fixture.ts (DB-only v1). Seeds idempotently via conversations.session_id markers.
Satisfies (sets on public.users):
tc_accepted_version = '1.0.0'(matches currentTC_VERSION),tc_accepted_at = NOW()onboarding_completed_at = NOW()subscription_status = 'active', syntheticstripe_customer_id='cus_ux_audit_fixture',stripe_subscription_id='sub_ux_audit_fixture',current_period_end = NOW() + 365d
Creates:
- 2
conversationsrows withsession_idkeysux-audit-fixture-conv-1|2(CMO + CTO domain leaders) - 3 + 4
messagesrows across the 2 conversations
Does NOT create:
- KB files — deferred to #2351 (files live in GitHub workspace, not Supabase).
/dashboard/kbaudits empty state; fixture_prereqs markerkb_workspace_deferredskips the route. - Team members — no team-members table exists in Phase 1 schema
- Service integrations — no services table exists
Fixture invariants (audited during every seed):
- Only
[email protected]appears as a real email.@example.comand placeholder Stripe IDs are the only synthetic strings. - No real API keys, no real payment info, no strings matching
sk_live_,cus_[A-Za-z0-9]{14,}, or GitHubghp_/ghs_patterns.
References
- route-list.yaml — route manifest (path, auth, fixture_prereqs, viewport)
- bot-fixture.ts — seed/reset bot DB state
- bot-signin.ts — sign in, write Playwright storageState
- dedup-hash.ts — canonical finding-hash computation
- Agent:
plugins/soleur/agents/product/design/ux-design-lead.md(## UX Audit (Screenshots)section)