Common Use Cases
1. Quick Page Audit
When: During development, need fast feedback on a page Prompt:- Runs
analyze-mixed(axe-core + Pa11y + Lighthouse in parallel) - Returns combined and deduplicated issues
- Groups results by WCAG criterion
- Includes enriched human context
- Issues grouped by severity
- WCAG criterion explanations
- Lighthouse score (0-100)
- Affected user groups identified
- Priority and remediation effort
2. Deep Analysis with a Specific Tool
When: Need tool-specific metadata or faster results Prompt:- Runs
analyze-with-axeonly - Returns axe-specific metadata (impact, target selectors)
- Faster than mixed analysis
3. Local or Development HTML Analysis
When: Testing HTML before it’s deployed, or testing components in isolation Prompt:- Analyzes the HTML snippet directly
- No need to deploy or run a local server
- Works with
analyze-mixedor any individual tool
- Missing
<label>associated with input (WCAG 1.3.1) - Button without explicit
type="submit" - No form validation or error handling
4. Tool Comparison
When: Validating false positives or understanding tool differences Prompt:- Runs
analyze-mixedwithindividualResultsfield - Shows unique issues found by each tool
- Shows overlapping issues (higher confidence)
- Validating false positives (if only one tool reports it)
- Understanding tool coverage differences
- Deciding which tool to use in CI/CD
- Finding edge cases
5. Color Contrast Analysis
When: Design QA, validating color palettes, or focusing on visual accessibility Prompt:- Runs
analyze-contrastwith WCAG 2.1 algorithm - Calculates exact contrast ratios
- Suggests compliant color alternatives
- Current ratio vs required ratio
- Color suggestions that pass WCAG
- Statistics by text type (normal/large)
- CSS fix suggestions
6. APCA Analysis (WCAG 3.0 Draft)
When: Preparing for WCAG 3.0, or want perceptually accurate contrast Prompt:- Runs
analyze-contrastwithcontrastAlgorithm: "APCA" - Uses perceptual contrast (Lightness contrast - Lc)
- Considers text polarity (dark-on-light vs light-on-dark)
- Lightness contrast (Lc) instead of ratios
- Thresholds: 75Lc (body text), 60Lc (large text), 45Lc (non-text)
- More accurate for modern displays
- Future-proof for WCAG 3.0
Recommended Workflows
Workflow 1: Pre-Deploy Check
Goal: Decide if a release is ready to deploy based on accessibilityFilter blocking issues
- Critical severity issues
- WCAG Level A violations
- Issues affecting core user flows
Make decision
If there are critical issues:
- Block deploy
- Create tasks to fix critical issues
- Re-run check after fixes
- Log issues in backlog
- Proceed with deploy
- Plan fixes for next sprint
Workflow 2: Quick Wins Sprint Planning
Goal: Identify high-impact, low-effort fixes for the next sprintCreate sprint tasks
For each issue, create tasks with:
- Issue description
- WCAG criterion
- Time estimate (from remediationEffort)
- Suggested fix from suggestedActions
- Affected user groups
Workflow 3: Periodic Audit
Goal: Track accessibility over time and catch regressionsCompare with baseline
- Total issue count trend
- Lighthouse score trend
- New issues (regressions)
- Fixed issues
Identify regressions
- What changed? (recent deployments)
- Which component introduced the issue?
- How to prevent similar regressions?
Workflow 4: Team Training
Goal: Educate team on accessibility through real examplesReview humanContext
For each issue type, review:
- The
humanContextfield (WCAG explanation) - Real-world impact examples
- Affected user groups
- Why it matters
- Semantic HTML and landmarks
- Keyboard navigation and focus management
- ARIA attributes (when and when not to use)
- Color contrast and visual design
- Form labels and error handling
- Alternative text for images
Workflow 5: Focused Contrast Review
Goal: Validate and fix color contrast for specific sections or componentsReview failing elements
Each result includes:
- Current colors (foreground/background)
- Current ratio
- Required ratio for WCAG level
- Suggested color fixes
For design systems, consider checking contrast for all color combinations upfront and documenting approved pairings.
Workflow 6: Lighthouse Score Improvement
Goal: Improve Lighthouse accessibility score to target thresholdImplement phase 1 fixes
Start with highest-impact issues:
- Color contrast (high weight)
- ARIA usage (medium weight)
- Form labels (high weight)
Workflow Decision Tree
Related
Effective Prompts
Tips for writing better accessibility prompts
Interpreting Results
How to prioritize and act on findings
Prompts Reference
Available MCP prompt templates
Tools Reference
Detailed tool documentation