skills$openclaw/a11y-auditor
lxgicstudios6.4k

by lxgicstudios

a11y-auditor – OpenClaw Skill

a11y-auditor is an OpenClaw Skills integration for coding workflows. Scan HTML and JSX for accessibility issues and get fix suggestions. Use when you need to catch WCAG violations before they hit production.

6.4k stars8.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namea11y-auditor
descriptionScan HTML and JSX for accessibility issues and get fix suggestions. Use when you need to catch WCAG violations before they hit production. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/a11y-auditor
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/a11y-auditor
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains a11y-auditor in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
291 B
README.md
497 B
SKILL.md
2.5 KB
SKILL.md

name: a11y-auditor description: Scan HTML and JSX for accessibility issues and get fix suggestions. Use when you need to catch WCAG violations before they hit production.

Accessibility Auditor

Accessibility isn't optional but checking for it manually is painful. This tool scans your HTML and JSX files for WCAG violations and tells you exactly what's wrong and how to fix it. No more guessing if your alt text is right or your heading hierarchy makes sense.

One command. Zero config. Just works.

Quick Start

npx ai-a11y src/

What It Does

  • Scans HTML and JSX files for WCAG 2.1 AA violations
  • Catches missing alt text, broken heading hierarchy, and color contrast issues
  • Generates specific fix suggestions with code examples
  • Supports glob patterns so you can target specific directories
  • Reports severity levels so you know what to fix first

Usage Examples

# Scan your entire src directory
npx ai-a11y src/

# Scan specific component files
npx ai-a11y src/components/Button.tsx

# Scan all JSX files
npx ai-a11y "src/**/*.jsx"

Best Practices

  • Run it before every PR - Catch a11y issues before code review, not after
  • Start with your most visited pages - Fix the high traffic stuff first
  • Don't ignore warnings - Warnings today become lawsuits tomorrow
  • Pair with manual testing - Automated checks catch about 30% of real a11y issues. Use a screen reader for the rest.

When to Use This

  • You're building a public facing web app and need WCAG compliance
  • Your team doesn't have a dedicated a11y reviewer
  • You inherited a codebase with zero accessibility consideration
  • You want to catch obvious violations before a manual audit

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended.

npx ai-a11y --help

How It Works

The tool reads your HTML or JSX files and extracts the DOM structure. It checks against WCAG 2.1 guidelines for common violations like missing labels, poor contrast ratios, and incorrect ARIA usage. Then it sends the issues to an AI model that generates specific, actionable fix suggestions with code.

License

MIT. Free forever. Use it however you want.

README.md

Accessibility Auditor

Scan HTML and JSX for accessibility issues with fix suggestions.

Quick Start

npx ai-a11y src/

What It Does

  • Scans for WCAG 2.1 AA violations
  • Catches missing alt text, heading issues, contrast problems
  • Generates fix suggestions with code examples

Part of the LXGIC Dev Toolkit

110+ free developer tools. No paywalls.

MIT License.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Accessibility isn't optional but checking for it manually is painful. This tool scans your HTML and JSX files for WCAG violations and tells you exactly what's wrong and how to fix it. No more guessing if your alt text is right or your heading hierarchy makes sense. **One command. Zero config. Just works.** ## Quick Start ```bash npx ai-a11y src/ ``` ## What It Does - Scans HTML and JSX files for WCAG 2.1 AA violations - Catches missing alt text, broken heading hierarchy, and color contrast issues - Generates specific fix suggestions with code examples - Supports glob patterns so you can target specific directories - Reports severity levels so you know what to fix first ## Usage Examples ```bash

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. ```bash npx ai-a11y --help ```

FAQ

How do I install a11y-auditor?

Run openclaw add @lxgicstudios/a11y-auditor in your terminal. This installs a11y-auditor into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/a11y-auditor. Review commits and README documentation before installing.