Description
This prompt performs a deployment-focused accessibility check using all three analysis tools, providing a clear GO/NO-GO decision based on both critical issues and the Lighthouse accessibility score. It includes a minimum score threshold gate, identifies blocking vs non-blocking issues, and provides a risk assessment for deployment. Best for: Deployment gates, release checklists, and compliance verification.Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
url | string | ✅ | - | URL of the staging/pre-production page |
minScore | number | 90 | Minimum Lighthouse accessibility score to pass (0-100) |
Example Usage
Basic Usage
With Custom Score Threshold
Natural Language
Output Includes
The prompt generates a deployment-focused report with:1. GO/NO-GO Decision
Clear deployment recommendation based on both Lighthouse score and issues: | Decision | Meaning | |----------|---------|| | ✅ GO | Lighthouse score >= threshold AND no critical/serious issues | | ⚠️ GO WITH CAUTION | Score >= threshold with minor issues, OR score slightly below threshold with no critical issues | | ❌ NO-GO | Score well below threshold OR critical/serious issues found |2. Lighthouse Score Gate
- Current score vs threshold
- PASS/FAIL result
- Key failing audits
3. Blocking Issues
Critical problems from all three tools that must be fixed before deployment4. Non-Blocking Issues
Issues to track in backlog but don’t block deployment5. Compliance Summary
- Lighthouse score
- WCAG 2.1 Level AA conformance status
- Issues grouped by WCAG principle
6. Risk Assessment
Deployment risk level with recommendations7. Recommended Actions
- For NO-GO: Score-improvement suggestions
- For GO: Post-deployment fixes to track
Example Output Structure
Decision Logic
✅ GO Decision
✅ GO Decision
Criteria:
- Lighthouse score >= minimum threshold
- No critical issues from any tool
- No serious issues, OR only minor serious issues in non-critical areas
⚠️ GO WITH CAUTION Decision
⚠️ GO WITH CAUTION Decision
Criteria:
- Score meets threshold but has some serious issues
- OR score slightly below threshold (1-3 points) with no critical issues
❌ NO-GO Decision
❌ NO-GO Decision
Criteria:
- Score well below threshold (>3 points)
- OR any critical issues detected
- OR multiple serious issues affecting core functionality
When to Use
| Scenario | Recommended |
|---|---|
| Before production deployment | ✅ Yes |
| Release gate check | ✅ Yes |
| Staging environment review | ✅ Yes |
| During development | Use quick-accessibility-check instead |
| Comprehensive audit | Use full-accessibility-audit instead |
Workflow Integration
CI/CD Pipeline Example
Release Checklist
Technical Details
This prompt internally executes:Customizing Thresholds
| Threshold | Meaning | Recommended For |
|---|---|---|
| 85 | Minimum acceptable | Internal tools, early-stage products |
| 90 | Industry standard | Public-facing websites, SaaS products |
| 95 | High compliance | Government, healthcare, finance, education |
| 98 | Excellence | Accessibility-focused products |
Related Prompts
Quick Accessibility Check
Faster check for development
Full Accessibility Audit
Comprehensive audit with remediation
Lighthouse Score Improvement
Plan to reach a target score
Quick Wins Report
Identify easy fixes
Related Tools
- analyze-mixed - Direct access to axe-core + Pa11y
- analyze-with-lighthouse - Direct Lighthouse access