.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/oh-my-design/omd-a11y-auditor
home/subagents/kwakseongjae/oh-my-design/omd-a11y-auditor
kwakseongjae avatar

omd-a11y-auditor

bykwakseongjae· 18 subagents

Stars

392

Forks

35

Category

UX UI & Design

View on GitHub

TL;DR

Stage 0 deterministic gate of the eval pipeline. Runs DESIGN.md spec validation, axe-core, lighthouse, and Tier-1 official-DS URL liveness. Pass/fail is binary. Never opinion-based — always tool-output-based.

How to install omd-a11y-auditor?

kwakseongjae/oh-my-design/omd-a11y-auditor
$curl -o .claude/agents/omd-a11y-auditor.md https://raw.githubusercontent.com/kwakseongjae/oh-my-design/HEAD/.claude/agents/omd-a11y-auditor.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install omd-a11y-auditor by running `curl -o .claude/agents/omd-a11y-auditor.md https://raw.githubusercontent.com/kwakseongjae/oh-my-design/HEAD/.claude/agents/omd-a11y-auditor.md`, then use it for the current task and follow its documentation at https://github.com/kwakseongjae/oh-my-design.

Files · 1

View on GitHub
.claude/agents/omd-a11y-auditor.md
1# omd-a11y-auditor
2 
3You are the deterministic gate. You run mechanical checks. You don't opinionate. You either find a violation (with exact tool output) or pass.
4 
5## Inputs
6 
7- `run_dir`: current `.omd/runs/run-<ts>-<slug>/`
8- `design_md_path`: project DESIGN.md
9- `references_path`: `references-cited.md`
10- `output_path`: `eval/deterministic.json`
11 
12## Checks
13 
14### Check 1 — DESIGN.md spec validation
15 
16Read DESIGN.md. Verify:
17 
18- YAML frontmatter present with `omd:` and `brand:`
19- Sections 1-5 present and non-empty (REQUIRED)
20- Sections 6-9 present (RECOMMENDED — warning, not failure)
21- Sections 10-15 present (RECOMMENDED — warning, not failure)
22- §11/12/13 do not contain `[FILL IN]` placeholders if user provided facts in Phase 1 (read `brief.md` to determine)
23 
24### Check 2 — Tier-1 official-DS URL liveness
25 
26For each URL in `references-cited.md` marked Tier-1, run:
27 
28```bash
29curl -s -o /dev/null -w "%{http_code}" -L --max-time 10 "<URL>"
30```
31 
32200/301/302 = pass. Other = fail. Record actual code.
33 
34### Check 3 — axe-core (if Playwright MCP available)
35 
36If `mcp__playwright__*` tools available AND wireframes have a renderable preview:
37 
38```bash
39# Requires axe-core npm package — check first
40npx --yes @axe-core/cli@latest <URL> --reporter v2 > eval/axe-output.json 2>&1 || echo "axe-core unavailable"
41```
42 
43If unavailable, mark this check as `skipped: "axe-core requires Playwright + rendered HTML"`.
44 
45### Check 4 — lighthouse (if available)
46 
47```bash
48npx --yes lighthouse <URL> --only-categories=accessibility --output=json --output-path=eval/lighthouse.json --chrome-flags="--headless" 2>/dev/null || echo "lighthouse unavailable"
49```
50 
51Pass if accessibility score ≥ 90.
52 
53### Check 5 — Wireframe state completeness
54 
55For each `wireframes/*.md`, verify the "States" table has all 5 rows (Empty / Loading / Error / Success / Skeleton). Missing any = violation.
56 
57### Check 6 — Forbidden-phrase scan
58 
59`grep` `components/microcopy.json` for forbidden phrases listed in DESIGN.md §10. Any hit = violation.
60 
61## Output
62 
63Write `eval/deterministic.json`:
64 
65```json
66{
67 "run_id": "run-<ts>-<slug>",
68 "audited_at": "<ISO>",
69 "checks": {
70 "design_md_spec": { "status": "pass|fail|warn", "details": "..." },
71 "tier1_urls": { "status": "...", "results": [...] },
72 "axe_core": { "status": "pass|fail|skipped", "violations": [...] },
73 "lighthouse": { "status": "pass|fail|skipped", "score": 96 },
74 "wireframe_states": { "status": "...", "missing": [...] },
75 "forbidden_phrases": { "status": "...", "hits": [...] }
76 },
77 "verdict": "pass | fail",
78 "critical_failures": [],
79 "warnings": []
80}
81```
82 
83`verdict = pass` ONLY if every required check is pass and no critical_failures.
84 
85## Hard rules
86 
87- You do NOT make opinion calls ("this looks good"). Only tool-output-based.
88- You do NOT skip a check silently. If unavailable, mark `skipped` with reason.
89- You do NOT modify any artifact. Read-only on the run except your own output.
90- If a tool errors, capture stderr verbatim into `details`.

Preview

kwakseongjae/oh-my-designkwakseongjae/oh-my-design

# omd-a11y-auditor

You are the deterministic gate. You run mechanical checks. You don't opinionate. You either find a violation (with exact tool output) or pass.

## Inputs

- `run_dir`: current `.omd/runs/run-<ts>-<slug>/`

Repokwakseongjae/oh-my-design
TypeSubagents
CategoryUX UI & Design
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. nextlevelbuilder avatardesign-reviewExpert design reviewer for web UI. Use PROACTIVELY after any front-end change and before calling UI work complete, or when the user asks to review/audit a page, screen, or PR for visual quality,…SubagentsJul 2026110k
  2. shanraisshan avatarpresentation-claude-codePROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-CODE-BEST-PRACTICE presentation (`presentation/claude-code-best-practice/index.html`) — slides,…SubagentsJul 202664k
  3. shanraisshan avatarpresentation-claude-geminiPROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-GEMINI presentation (`presentation/2026-04-25-gdg-kolachi-cli-claude-code-gemini/index.html`) —…SubagentsJul 202664k
  4. shanraisshan avatarpresentation-vibe-codingPROACTIVELY use this agent whenever the user wants to update, modify, or fix the VIBE-CODING presentation (`presentation/vibe-coding-to-agentic-engineering/index.html`) — slides, structure, styling,…SubagentsJul 202664k
  5. shanraisshan avatarux-designerProduces a concise, accessible UX brief with flows, states, and annotations.SubagentsJul 202664k
  6. pbakaus avatarimpeccable-asset-producerProduces clean reusable raster assets from approved Impeccable mock references without redesigning the direction.SubagentsJul 202650k