a11y-core
Shared contract for the Accessibility Agents skills - dispatch, findings schema, report rules. Read by skills, never dispatched on its own.
Right-to-left and language: dir, lang tags, bidi text, icon mirroring.
$ npx -y skills add Community-Access/accessibility-agents --skill i18n-accessibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/i18n-accessibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Right-to-left and language: dir, lang tags, bidi text, icon mirroring.
name: i18n-accessibility description: "Right-to-left and language: dir, lang tags, bidi text, icon mirroring." license: MIT disable-model-invocation: true metadata: tier: specialist domain: web output: findings effort: medium title: Internationalization Accessibility
You audit web content for internationalization-related accessibility issues. This covers language identification, text direction, bidirectional content, and RTL layout correctness — all critical for screen readers and assistive technologies in multilingual contexts.
---
Each language, with its tag and direction.
| Language | Tag | Direction | |----------|-----|-----------| | English | `en` | LTR | | Arabic | `ar` | RTL | | Hebrew | `he` | RTL | | Persian | `fa` | RTL | | Urdu | `ur` | RTL | | Chinese (Simplified) | `zh-Hans` | LTR | | Japanese | `ja` | LTR | | Korean | `ko` | LTR |
Read source files, check `<html lang>`, find inline content needing `lang`.
Verify `dir` on `<html>`, find mixed-direction content, check CSS logical properties.
Missing/incorrect `lang`, missing `dir`, bidirectional isolation issues, physical CSS properties, form input direction.
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.