Description
This prompt performs a rapid accessibility scan of a web page, focusing on the most important issues. It provides a concise summary with quick fixes and next steps, ideal for development workflows. Best for: Quick sanity checks during development or CI/CD pipelines.Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
url | string | ✅ | - | URL of the page to analyze |
Example Usage
Basic Usage
Natural Language
Output Includes
The prompt generates a concise report with:1. Summary by Severity
Quick count of issues by severity level:- Critical issues requiring immediate attention
- Serious issues that should be fixed soon
- Moderate issues for backlog tracking
2. Critical & Serious Issues
List with quick fix suggestions for each issue:- Issue description
- Affected element/location
- Quick fix recommendation
3. Next Steps
Recommendations for further analysis if neededExample Output Structure
When to Use
| Scenario | Recommended |
|---|---|
| During development | ✅ Yes |
| Pull request review | ✅ Yes |
| Quick sanity check | ✅ Yes |
| Compliance documentation | Use full-accessibility-audit instead |
| Pre-deployment gate | Use pre-deploy-check instead |
Speed vs Coverage
| Aspect | quick-accessibility-check | full-accessibility-audit |
|---|---|---|
| Tools | axe-core only | axe-core + Pa11y + Lighthouse |
| Speed | Fast (~5-10 seconds) | Slower (~30-60 seconds) |
| Coverage | Core WCAG issues | Comprehensive |
| Output | Concise summary | Detailed report |
| Best for | Development, PR reviews | Releases, compliance |
What Gets Checked
Critical Issues
Critical Issues
- Missing alt text on images
- Form inputs without labels
- Insufficient color contrast
- Invalid ARIA attributes
- Keyboard accessibility problems
Serious Issues
Serious Issues
- Missing document language
- Heading hierarchy problems
- Link purpose issues
- Missing skip links
- Form validation errors
Moderate Issues
Moderate Issues
- Redundant ARIA
- Minor contrast issues
- Non-critical semantic problems
Technical Details
This prompt internally executes:Only automated issues are detected. Manual testing is still required for complete accessibility compliance.
Integration Examples
GitHub Actions
Pre-commit Hook
Related Prompts
Full Accessibility Audit
More comprehensive analysis with all three tools
Pre-Deploy Check
Deployment-focused with GO/NO-GO decision
Quick Wins Report
Focus on easy fixes across all tools
Lighthouse Audit
Score-focused analysis
Related Tools
- axe-core - Direct axe-core tool access