-
Notifications
You must be signed in to change notification settings - Fork 6
Quick Web Check
github-actions[bot] edited this page Feb 23, 2026
·
1 revision
Fast accessibility triage — runs axe-core against a live URL and returns an inline pass/fail verdict with a score. No code review, no saved file. The fastest way to check a page.
- You want a quick sanity check before a demo or release
- You need a fast signal on whether a page has critical issues
- You are triaging a list of pages to know which ones need deeper review
- You want to check a page during development without the full audit overhead
In GitHub Copilot Chat:
/quick-web-check https://example.com
In Claude Code:
@quick-web-check https://myapp.com/login
The agent runs axe-core immediately — no setup questions, no configuration:
npx @axe-core/cli <pageUrl> --tags wcag2a,wcag2aa,wcag21a,wcag21aaResults appear inline in chat within seconds:
Quick Check: https://example.com/login
Score: 74 (C)
Violations: 5
Critical: 1
Serious: 2
Moderate: 1
Minor: 1
Top Issues:
1. color-contrast — Insufficient contrast on input placeholder text — Serious
2. label — Missing accessible name on password input — Critical
3. button-name — Icon button has no accessible name — Serious
Rules Passed: 38
Verdict: NEEDS WORK — 1 critical violation found
Verdict thresholds:
| Verdict | Condition |
|---|---|
| PASS | Zero critical and zero serious violations |
| NEEDS WORK | 1–3 serious violations, no critical |
| FAIL | Any critical violation, or 4+ serious |
If issues are found, the agent asks: "Want to run a full audit with code review and remediation steps?" — one word to launch audit-web-page on the same URL.
/quick-web-check https://myapp.com # Check the home page
/quick-web-check https://myapp.com/checkout/step-2 # Check a specific step
/quick-web-check https://staging.myapp.com # Check staging before push
| Agent | Role |
|---|---|
| web-accessibility-wizard | Executes the axe-core scan and formats the result |
- audit-web-page — full audit with code review and saved report
- audit-web-multi-page — run quick checks across multiple pages
- Accessibility Lead
- Web Accessibility Wizard
- Document Accessibility Wizard
- Alt Text and Headings
- ARIA Specialist
- Contrast Master
- Forms Specialist
- Keyboard Navigator
- Link Checker
- Live Region Controller
- Modal Specialist
- Tables Data Specialist
- Word Accessibility
- Excel Accessibility
- PowerPoint Accessibility
- PDF Accessibility
- Office Scan Config
- PDF Scan Config
- Testing Coach
- WCAG Guide