aether_verify_fix
Verify WCAG fixes deterministically using a real browser engine. Re-scans live URLs or diffs HTML snippets to confirm resolved violations, regressions, and compliance delta.
Instructions
Deterministically verify a WCAG fix with the real Playwright + axe-core engine. URL mode re-scans a live page; snippet mode diffs original vs fixed HTML before deploy. Returns MEASURED facts: targetCleared, newViolations (regressions), resolvedViolations, and complianceDelta. This is the authoritative "did the fix work?" signal.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Live/deployed URL to re-scan (URL mode; preferred when a URL exists) | |
| ruleId | Yes | Axe-core rule ID the fix was meant to resolve (e.g. "button-name") | |
| baseline | No | URL mode: pre-fix violation set for a full new/resolved delta (max 5000 entries) | |
| fixedHtml | No | Fixed HTML to verify (snippet mode; requires originalHtml) | |
| originalHtml | No | Original failing HTML (snippet mode; requires fixedHtml) |