This commit is contained in:
Josh at WLTechBlog
2025-10-16 11:26:23 -05:00
parent 4d55acca95
commit 1b01b1e857
6 changed files with 1302 additions and 21 deletions

View File

@@ -37,31 +37,33 @@ Browser runs in container. File transfers are automatic:
## Testing Sequences
### Multi-page (10+ pages): Use token-efficient tools
### Multi-page (10+ pages): Token-efficient
```
Per page: web_page_accessibility_report_cremotemcp (~4k tokens)
Total 10 pages: ~40k tokens
```
### Single page deep dive: Use detailed tools
### Single page deep dive
```
1. web_inject_axe_cremotemcp
2. web_run_axe_cremotemcp
3. web_contrast_check_cremotemcp
4. web_keyboard_test_cremotemcp
5. web_zoom_test_cremotemcp
6. web_reflow_test_cremotemcp
1. web_run_axe_cremotemcp
2. web_contrast_check_cremotemcp
3. web_keyboard_test_cremotemcp
4. web_zoom_test_cremotemcp
5. web_reflow_test_cremotemcp
```
**NOTE**: Axe-core auto-injects when needed. Manual `web_inject_axe_cremotemcp` calls are optional.
## Usage Examples
### Full page audit (~4k tokens)
```
web_page_accessibility_report_cremotemcp:
tests: ["all"]
standard: "WCAG21AA"
timeout: 30
Returns: compliance_status, overall_score, legal_risk, issues by severity, remediation_hours
1. web_inject_axe_cremotemcp (required first)
2. web_page_accessibility_report_cremotemcp:
tests: ["all"]
standard: "WCAG21AA"
timeout: 30
Returns: compliance_status, overall_score, legal_risk, issues by severity, remediation_hours
```
### Contrast audit (~4k tokens)