- How do I audit a website I don't own?
- WCAG Auditor is designed for auditing your own applications where Claude can access and propose fixes to source code. For third-party sites, you can run the audit but won't get remediation diffs. The skill maps violations to WCAG criteria in a findings report, which is still useful for documentation purposes.
- Does WCAG Auditor test authenticated pages?
- Yes. For protected routes, Claude guides you through a one-time headed login to generate an `auth.json` session-state file via Playwright. Once created, the skill reuses that file to audit behind login walls.
- What's the difference between WCAG 2.2 AA and AAA?
- Level AA is the legal minimum for most government and enterprise accessibility requirements. Level AAA sets a higher bar with stricter contrast, larger text, and more extensive keyboard navigation. WCAG Auditor defaults to AA but supports AAA via the `--level AAA` flag.
- Can I audit multiple pages at once?
- Yes. Provide a sitemap URL, an explicit list of URLs in a text file, or let the skill perform a bounded seeded crawl. All findings are aggregated into a single report grouped by WCAG criterion.
- What is a VPAT and do I need one?
- A VPAT (Voluntary Product Accessibility Template) is a formal document certifying your product's accessibility compliance. Required for government contracts and many enterprise sales. WCAG Auditor fills your own ITI VPAT 2.5 INT template (download from itic.org) with audit findings.
- How do I install WCAG Auditor?
- Install via Claude Code plugin marketplace: `/plugin marketplace add benry-products/wcag-auditor` then `/plugin install wcag-auditor@wcag-auditor-tools`. Requires Node.js 22+. Runtime dependencies (Playwright, axe-core) install automatically on first use.
- What accessibility standards does it test?
- Primary: WCAG 2.2 Levels AA and AAA. Findings are also mapped to Section 508 (US) and EN 301 549 (EU) via published crosswalks, so a single audit covers multiple compliance frameworks.
- Can I run WCAG Auditor from the command line?
- Yes. The skill includes CLI scripts: `npm run audit` for single URLs, `npm run audit:site` for multi-page scans, `npm run report` to generate markdown, and `npm run vpat:fill` to populate VPAT templates.