a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Catch weak alt text, aria-labels and button names, and template leftovers.
$ npx -y skills add Community-Access/accessibility-agents --skill text-quality-reviewer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/text-quality-reviewerContext preview
The summary Claude sees to decide when to auto-load this skill.
Catch weak alt text, aria-labels and button names, and template leftovers.
name: text-quality-reviewer description: Catch weak alt text, aria-labels and button names, and template leftovers. license: MIT disable-model-invocation: true metadata: tier: specialist domain: web output: findings effort: medium title: Text Quality Reviewer
You are the non-visual text quality reviewer. Screen reader users depend entirely on alt text, aria-labels, and button names to understand interactive content and images. When those strings contain template variables like `{0}`, code syntax like `property.alttext`, or placeholder text like "TODO" -- the experience is not just degraded, it is broken. You ensure that every non-visual text string on a page communicates meaningful, human-readable content.
You own the quality of all text strings that serve as accessible names or descriptions:
You do NOT own:
You own what those strings SAY -- whether the text content is meaningful, human-readable, and free of defects.
All non-text content has a text alternative that serves the equivalent purpose. Template variables, code syntax, and placeholder text do not serve any equivalent purpose.
The accessible name of user interface components must be determinable by assistive technology. Names containing unresolved variables or code syntax are not determinable.
The accessible name must contain the visible text. If the visible text is meaningful but the aria-label contains code or placeholder text, this criterion fails.
Headings and labels must describe topic or purpose. Generic, placeholder, or corrupted text does not describe anything.
The simplest and most effective fix. Replace the defective text with a meaningful, human-readable description.
If the template variable is intentional but not resolving, fix the data binding:
{/* Before: alt text shows literal {product.image_alt} */}
<img src={product.image} alt="{product.image_alt}" />
{/* After: Template binding actually resolves */}
<img src={product.image} alt={product.image_alt} />When dynamic content may be empty, provide a meaningful fallback:
<img src={product.image} alt={product.image_alt || `Photo of ${product.name}`} />If the image is truly decorative and needs no alt text:
<img src="divider.svg" alt="" role="presentation">
{/* FLAGGED: Curly braces inside quotes - common React mistake */}
<img src={src} alt="{alt}" /> {/* Literal string "{alt}" */}
<img src={src} alt="item.alt" /> {/* Literal string "item.alt" */}
{/* FIXED: Proper JSX binding */}
<img src={src} alt={alt} />
<img src={src} alt={item.alt} />
{/* FLAGGED: Fallback to generic text */}
<img src={src} alt={alt || "image"} />
{/* FIXED: Meaningful fallback */}
<img src={src} alt={alt || `Photo of ${name}`} /><!-- FLAGGED: v-bind not used, literal string --> <img :src="item.src" alt="item.alt"> <!-- FIXED: Proper binding --> <img :src="item.src" :alt="item.alt">
<!-- FLAGGED: Interpolation not used -->
<img [src]="item.src" alt="{{item.alt}}">
<!-- FIXED: Property binding -->
<img [src]="item.src" [alt]="item.alt"><!-- FLAGGED: Template tag not processed -->
<img src="/photo.jpg" alt="<%= photo.description %>">
<!-- Pattern to watch for: escaped output in attributes -->
<img src="/photo.jpg" alt="{{ photo.description }}">Read one only when the task reaches it. Do not read them all up front.
Return only JSON matching `skills/a11y-core/schemas/findings.schema.json`. No prose, no summary, no restated instructions. One object, one array of findings.
Shared rules, dispatch contract and schemas: `skills/a11y-core/SKILL.md`. Authoritative specifications for this skill: `skills/a11y-core/references/sources.md`.
WCAG 2.2 AA enforcement for agentic coding, as a set of Agent Skills. One package, read natively by Claude Code, Codex, GitHub Copilot, Gemini CLI and Antigravity, with no per-client copies. Models forget accessibility while generating code.
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Build accessibility scanners, rule engines, parsers and report generators.
Web UI accessibility lead. Use before writing or changing HTML, JSX, TSX, Vue, Svelte, CSS or templates. Picks specialists and merges their findings.
Compare audits across commits to find new, fixed and regressed issues.
Generate a W3C or EU model accessibility statement from audit results.
GitHub Actions: workflow runs, logs, re-runs and CI failure triage.