Accessibility Audit
Comprehensive WCAG 2.1 accessibility audit for Webflow pages with detailed issue detection and actionable fixes.
Important Note
ALWAYS use Webflow MCP tools for all operations:
- Use Webflow MCP's
webflow_guide_tool to get best practices before starting
- Use Webflow MCP's
data_sites_tool with action list_sites to identify available sites
- Use Webflow MCP's
data_sites_tool with action get_site to retrieve site details
- Use Webflow MCP's
data_pages_tool with action list_pages to get all pages
- Use Webflow MCP's
element_tool with action get_all_elements to get detailed element information (requires Designer)
- Use Webflow MCP's
element_tool with action add_or_update_attribute to fix accessibility issues (requires Designer)
- Use Webflow MCP's
element_snapshot_tool to get visual previews of elements
- DO NOT use any other tools or methods for Webflow operations
- All tool calls must include the required
context parameter (15-25 words, third-person perspective)
- Designer connection required - This skill needs Designer to access element attributes and styles
Instructions
Phase 1: Site & Page Selection
- Get site information: Use Webflow MCP's
data_sites_tool with action list_sites to identify target site
- Ask for page selection:
- If user provides page ID, use it directly
- Otherwise, use
data_pages_tool with action list_pages to show available pages
- Let user select which page(s) to audit
- Confirm audit scope: Ask user what to check:
- Full audit (all accessibility checks)
- Critical issues only (WCAG Level A)
- Specific categories (forms, buttons, navigation, etc.)
Phase 2: Element Extraction & Analysis
- Ensure Designer is connected: Before proceeding, verify Webflow Designer is open and connected
- If not connected, instruct user to open Designer and connect
- This is required to access element attributes and styles
- Switch to target page: Use
de_page_tool with action switch_page to navigate to the page being audited
- Extract all elements: Use
element_tool with action get_all_elements for detailed analysis
- Set
include_style_properties: true to check focus styles
- Set
include_all_breakpoint_styles: false to minimize data
- Parse element data: Identify interactive and content elements:
- Buttons (Button, LinkBlock with button role)
- Links (TextLink, Link, LinkBlock)
- Form inputs (Input, Select, Textarea)
- Headings (Heading elements with levels)
- Interactive divs/spans (check for onClick or interactive roles)
- Images (Image elements) - SKIP for this audit
- Extract attributes for each element:
- ARIA attributes (aria-label, aria-describedby, role, tabIndex)
- DOM attributes (id, domId, href, type, placeholder)
- Text content
- Style properties (outline, border for focus states)
- Element metadata (canHaveAttributes, tag name)
Phase 3: Accessibility Checks
Critical Issues (Must Fix - WCAG Level A)
Icon-only buttons without labels (WCAG 4.1.2)
- Find: Button elements with no text content
- Check: Missing
aria-label or aria-labelledby
- Impact: Screen readers cannot identify button purpose
- Fix: Add
aria-label attribute with descriptive text
Form inputs without labels (WCAG 1.3.1)
- Find: Input, Select, Textarea elements
- Check: Missing associated label or
aria-label
- Impact: Users don't know what input is for
- Fix: Add
aria-label or associate with <label> using id
Non-semantic click handlers (WCAG 2.1.1)
- Find: Div or Span elements (identified by element type)
- Check: Interactive behavior without proper role/keyboard support
- Impact: Not keyboard accessible, screen readers miss interactivity
- Fix: Add
role="button", tabIndex="0", suggest using real <button>
Links without destination (WCAG 2.1.1)
- Find: Link elements with no
href attribute
- Check: Links that only use onClick without href
- Impact: Not keyboard accessible, breaks browser features
- Fix: Add proper
href or convert to button
Serious Issues (Should Fix - WCAG Level AA)
Focus outline removed without replacement (WCAG 2.4.7)
- Find: Elements with
outline: none style
- Check: No visible alternative focus indicator
- Impact: Keyboard users can't see focus
- Fix: Add visible focus style (border, box-shadow, background change)
Missing keyboard handlers (WCAG 2.1.1)
- Find: Elements with onClick handlers
- Check: Missing onKeyDown for Enter/Space keys
- Impact: Not usable with keyboard alone
- Fix: Add keyboard event handlers
Touch target too small (WCAG 2.5.5)
- Find: Clickable elements (buttons, links)
- Check: Width or height < 44px
- Impact: Hard to tap on mobile devices
- Fix: Increase padding or min-width/min-height to 44px
Moderate Issues (Consider Fixing)
Heading hierarchy problems (WCAG 1.3.1)
- Find: Heading elements (h1-h6)
- Check: Skipped levels (h1 → h3, skipping h2)
- Impact: Confusing document structure
- Fix: Use proper sequential heading levels
Positive tabIndex (WCAG 2.4.3)
- Find: Elements with tabIndex > 0
- Check: Disrupts natural tab order
- Impact: Confusing keyboard navigation
- Fix: Use tabIndex="0" or "-1" only, let natural DOM order work
Role without required attributes (WCAG 4.1.2)
- Find: Elements with ARIA roles
- Check: Missing required ARIA attributes (e.g., role="button" without tabIndex)
- Impact: Incomplete accessibility semantics
- Fix: Add required attributes for role
Phase 4: Issue Categorization & Scoring
Categorize all findings:
- Critical: Must fix (blocks access)
- Serious: Should fix (significantly impacts usability)
- Moderate: Consider fixing (improves experience)
Calculate accessibility score (0-100):
- Start at 100
- Critical issue: -10 points each
- Serious issue: -5 points each
- Moderate issue: -2 points each
- Minimum score: 0
Generate severity summary:
- Total issues found
- Breakdown by severity
- Most common issue types
- Pages/sections most affected
Phase 5: Report Generation
Create detailed report with specific format:
═══════════════════════════════════════════════════
ACCESSIBILITY AUDIT: [Page Name]
═══════════════════════════════════════════════════
CRITICAL (X issues)
───────────────────
[A11Y] Element: Button "Submit"
Issue: Button missing accessible name
Location: Form section, element ID: {component: "abc", element: "xyz"}
Current: <button><CloseIcon /></button>
Fix: Add aria-label="Close"
WCAG: 4.1.2 Name, Role, Value
[A11Y] Element: Input field
Issue: Form input without label
Location: Contact form, element ID: {component: "def", element: "uvw"}
Current: <input type="email" />
Fix: Add aria-label="Email address" or associate with <label>
WCAG: 1.3.1 Info and Relationships
SERIOUS (X issues)
──────────────────
[A11Y] Element: Link "Read more"
Issue: Focus outline removed without visible alternative
Location: Blog section
Current: outline: none
Fix: Add visible focus style (e.g., border: 2px solid blue)
WCAG: 2.4.7 Focus Visible
MODERATE (X issues)
───────────────────
[A11Y] Element: Heading
Issue: Heading hierarchy skipped (h1 → h3)
Location: Article section
Current: <h3>Subsection</h3> after <h1>Title</h1>
Fix: Change to <h2> or add intermediate h2
WCAG: 1.3.1 Info and Relationships
═══════════════════════════════════════════════════
SUMMARY
───────────────────────────────────────────────────
Total Issues: X
- Critical: X issues
- Serious: X issues
- Moderate: X issues
Accessibility Score: XX/100
Most Common Issues:
1. [Issue type] - X occurrences
2. [Issue type] - X occurrences
3. [Issue type] - X occurrences
═══════════════════════════════════════════════════
Provide actionable insights:
- Prioritized fix list (critical first)
- Quick wins (easy fixes with big impact)
- Design pattern recommendations
- Resources for learning more
Phase 6: Fix Suggestions & Approval (Optional)
Offer to fix issues automatically: Designer is already connected, so offer auto-fixes
Show preview of fixes:
Which issues would you like to fix?
[1] ✓ Add aria-label to Submit button
Element: Button in contact form
Fix: Add aria-label="Submit contact form"
Safe: Yes (adding attribute only)
[2] ✓ Add aria-label to email input
Element: Input in contact form
Fix: Add aria-label="Email address"
Safe: Yes
[3] ⚠️ Fix heading hierarchy
Element: h3 in article section
Fix: Change heading level from h3 to h2
Safe: May affect visual styling
Type numbers to skip (e.g., "3"), "all" for all, "none" to cancel
Apply approved fixes: Use element_tool with action add_or_update_attribute
- Process in batches
- Show progress for large fix sets
- Report success/failure for each
Generate post-fix report:
- Issues fixed: X
- Issues remaining: Y
- New accessibility score: XX/100 (improved from YY/100)
Phase 7: Export & Resources (Optional)
Offer export formats:
- Markdown (readable documentation)
- JSON (machine-readable for tracking)
- CSV (spreadsheet for team review)
Provide resources:
- WCAG 2.1 quick reference links
- Webflow accessibility best practices
- Recommended testing tools (browser extensions, screen readers)
Important Considerations
What This Skill Checks
✅ Button accessibility (labels, roles)
✅ Form input labels and associations
✅ Link semantics and keyboard access
✅ Focus visibility and keyboard navigation
✅ Heading hierarchy and structure
✅ ARIA roles and attributes
✅ Touch target sizes
✅ Interactive element semantics
What This Skill Does NOT Check
❌ Image alt text (use asset-audit skill instead)
❌ Color contrast ratios (requires visual analysis)
❌ Animation/motion preferences
❌ Screen reader testing (needs manual verification)
❌ Content readability (language level, clarity)
Limitations
- Cannot detect visual-only issues (color contrast, small text)
- Cannot test actual screen reader behavior
- Cannot validate content quality or clarity
- Relies on element attributes and structure only
Examples
Example 1: Full Page Audit
User prompt:
Run an accessibility audit on my homepage
Step 1: Site & Page Selection
🔍 Accessibility Audit: Page Selection
I'll help you audit your homepage for accessibility issues.
First, let me get your site information...
Available sites:
1. Company Website
2. Portfolio Site
Which site? (1/2)
User response: 1
Step 2: Page Selection
Available pages in Company Website:
1. Home (/)
2. About (/about)
3. Contact (/contact)
4. Blog (/blog)
Which page would you like to audit? (1 for Home)
User response: 1
Step 3: Audit Scope
What level of audit would you like?
1. Full audit (all WCAG checks) - Recommended
2. Critical issues only (Level A compliance)
3. Specific categories (buttons, forms, navigation)
Your choice: (1/2/3)
User response: 1
Step 4: Audit Progress
🔄 Running Accessibility Audit...
Progress:
✅ Extracted page content (45 elements)
✅ Analyzing buttons and interactive elements
✅ Checking form inputs and labels
✅ Validating heading hierarchy
✅ Checking keyboard navigation
🔄 Analyzing focus states...
Analysis complete!
Step 5: Report
═══════════════════════════════════════════════════
ACCESSIBILITY AUDIT: Home
═══════════════════════════════════════════════════
CRITICAL (3 issues)
───────────────────
[A11Y] Element: Button (navigation toggle)
Issue: Icon-only button missing accessible name
Location: Header navigation
Element ID: {component: "nav-01", element: "btn-menu"}
Current: <button><MenuIcon /></button>
Fix: Add aria-label="Open navigation menu"
WCAG: 4.1.2 Name, Role, Value
[A11Y] Element: Input (email subscription)
Issue: Form input without label
Location: Footer, newsletter signup
Element ID: {component: "footer-01", element: "email-input"}
Current: <input type="email" placeholder="Enter email" />
Fix: Add aria-label="Email address for newsletter"
WCAG: 1.3.1 Info and Relationships
[A11Y] Element: Div (clickable card)
Issue: Non-semantic interactive element
Location: Services section, card 2
Element ID: {component: "services-01", element: "card-02"}
Current: <div card</div>
Fix: Convert to <button> or add role="button" + tabIndex="0"
WCAG: 2.1.1 Keyboard
SERIOUS (5 issues)
──────────────────
[A11Y] Element: Link "Learn more"
Issue: Focus outline removed without visible alternative
Location: Hero section
Element ID: {component: "hero-01", element: "cta-link"}
Current: outline: none
Fix: Add focus style - border: 2px solid #0066cc or box-shadow
WCAG: 2.4.7 Focus Visible
[A11Y] Element: Button "Subscribe"
Issue: Touch target too small (30px × 36px)
Location: Footer newsletter form
Element ID: {component: "footer-01", element: "submit-btn"}
Current: Small button
Fix: Increase padding or set min-height: 44px
WCAG: 2.5.5 Target Size
[continues with 3 more serious issues...]
MODERATE (4 issues)
───────────────────
[A11Y] Element: Heading "Our Services"
Issue: Heading hierarchy skipped (h1 → h3)
Location: Services section
Element ID: {component: "services-01", element: "heading"}
Current: <h3>Our Services</h3> follows <h1>Welcome</h1>
Fix: Change to <h2> to maintain proper hierarchy
WCAG: 1.3.1 Info and Relationships
[continues with 3 more moderate issues...]
═══════════════════════════════════════════════════
SUMMARY
───────────────────────────────────────────────────
Total Issues: 12
- Critical: 3 issues (must fix)
- Serious: 5 issues (should fix)
- Moderate: 4 issues (consider fixing)
Accessibility Score: 64/100
Most Common Issues:
1. Missing button labels - 2 occurrences
2. Focus styles removed - 3 occurrences
3. Heading hierarchy problems - 2 occurrences
Quick Wins (Easy + High Impact):
✨ Add aria-label to icon buttons (2 min, +20 score points)
✨ Add input labels (5 min, +10 score points)
✨ Add focus styles (10 min, +15 score points)
═══════════════════════════════════════════════════
💡 Next Steps:
1. Fix critical issues first (blocks access for some users)
2. Add visible focus styles for keyboard users
3. Test with keyboard navigation (Tab, Enter, Space keys)
4. Consider testing with screen reader (NVDA/JAWS/VoiceOver)
Would you like me to help fix these issues? (requires Designer connection)
Example 2: Multi-Page Audit
User prompt:
Audit accessibility across my entire site
Agent response:
🔍 Multi-Page Accessibility Audit
I'll audit all pages on your site for accessibility issues.
Found 8 pages:
1. Home
2. About
3. Services
4. Team
5. Blog
6. Blog Post Template (CMS)
7. Contact
8. Privacy Policy
This will take approximately 2-3 minutes.
Proceed with full site audit? (yes/no)
User: yes
Progress:
🔄 Auditing Site Accessibility...
Progress: ████████████░░░░░░░░ 60% (5/8 pages)
✅ Home - Score: 64/100 (12 issues)
✅ About - Score: 78/100 (6 issues)
✅ Services - Score: 71/100 (9 issues)
✅ Team - Score: 85/100 (4 issues)
✅ Blog - Score: 82/100 (5 issues)
🔄 Analyzing Blog Post Template...
Final Report:
═══════════════════════════════════════════════════
SITE-WIDE ACCESSIBILITY AUDIT
═══════════════════════════════════════════════════
OVERALL SCORE: 73/100
Pages Audited: 8
Total Issues: 48
- Critical: 11 issues
- Serious: 21 issues
- Moderate: 16 issues
═══════════════════════════════════════════════════
ISSUES BY PAGE
═══════════════════════════════════════════════════
🔴 Lowest Scores (Need Attention):
1. Home - 64/100 (12 issues: 3 critical, 5 serious, 4 moderate)
2. Services - 71/100 (9 issues: 2 critical, 5 serious, 2 moderate)
3. About - 78/100 (6 issues: 1 critical, 3 serious, 2 moderate)
🟢 Highest Scores:
1. Team - 85/100 (4 issues: 0 critical, 2 serious, 2 moderate)
2. Blog - 82/100 (5 issues: 1 critical, 2 serious, 2 moderate)
═══════════════════════════════════════════════════
SITE-WIDE PATTERNS
═══════════════════════════════════════════════════
Most Common Issues Across Site:
1. Missing button labels (icon buttons) - 8 occurrences
Pages affected: Home, Services, Blog, Contact
2. Focus outline removed - 12 occurrences
Pages affected: All pages (site-wide CSS issue)
3. Form inputs without labels - 5 occurrences
Pages affected: Home, Contact
4. Small touch targets (<44px) - 9 occurrences
Pages affected: Home, About, Services, Contact
═══════════════════════════════════════════════════
RECOMMENDATIONS
═══════════════════════════════════════════════════
🎯 Site-Wide Fixes (Fix Once, Helps Everywhere):
1. Add focus styles to global CSS (affects 12 issues across all pages)
2. Update button component to require aria-label (affects 8 issues)
3. Increase minimum touch target size in design system (affects 9 issues)
📋 Page-Specific Priorities:
1. Home page: Fix navigation menu button and newsletter form
2. Services page: Add labels to service card interactions
3. Contact page: Add proper labels to all form inputs
💡 Design System Improvements:
- Create accessible button component with required aria-label
- Add focus state variants to all interactive components
- Set minimum touch target size standard (44px)
Would you like:
1. Detailed report for specific page
2. Export findings to file (Markdown/JSON/CSV)
3. Help fixing site-wide issues (requires Designer)
Example 3: Critical Issues Only
User prompt:
Check my contact page for critical accessibility issues only
Agent response:
🔍 Critical Issues Audit: Contact Page
Running quick scan for blocking accessibility issues...
✅ Page analyzed
═══════════════════════════════════════════════════
CRITICAL ISSUES: Contact Page
═══════════════════════════════════════════════════
Found: 4 critical issues
[1] Form Input Missing Label
Element: Email input field
Location: Contact form, top
Issue: No accessible name for screen readers
Fix: Add aria-label="Your email address"
WCAG: 1.3.1 (Level A)
[2] Form Input Missing Label
Element: Message textarea
Location: Contact form, bottom
Issue: No accessible name for screen readers
Fix: Add aria-label="Your message"
WCAG: 1.3.1 (Level A)
[3] Button Missing Label
Element: Submit button
Location: Contact form, bottom
Issue: Icon-only button with no text
Fix: Add aria-label="Submit contact form"
WCAG: 4.1.2 (Level A)
[4] Non-Semantic Interactive Element
Element: Social media link (Instagram)
Location: Footer
Issue: Div with onClick instead of proper link
Fix: Convert to <a href="..."> with aria-label="Instagram"
WCAG: 2.1.1 (Level A)
═══════════════════════════════════════════════════
⚠️ Impact: These issues prevent screen reader users from using your contact form.
🔧 Estimated fix time: 5 minutes
Would you like me to:
1. Run full audit (includes serious and moderate issues)
2. Fix these 4 critical issues now (requires Designer)
3. Export this report (Markdown/JSON/CSV)
Safety Rules
Preview & Confirmation
- Always show detailed issue list before suggesting fixes
- Clearly mark severity levels (critical/serious/moderate)
- Explain impact of each issue in user-friendly terms
- Provide specific WCAG reference for each finding
Granular Approval for Fixes
- Allow user to select which issues to fix
- Warn about fixes that might affect visual design
- Process fixes in batches with progress indicators
- Report success/failure for each fix attempt
Error Handling
- If page cannot be accessed, explain clearly
- If Designer not connected, list limitations
- If element cannot be modified, suggest manual fix
- Separate automated fixes from manual review items
Validation
- Verify element types before suggesting fixes
- Check if element supports attributes before adding
- Test that suggested fixes are valid for element type
- Warn if fix might break existing functionality
Output Standards
Icons & Formatting
- 🔍 Discovery/Analysis
- 🔄 Processing
- ✅ Pass/Success
- ❌ Fail/Critical Issue
- ⚠️ Warning/Serious Issue
- 💡 Suggestion/Moderate Issue
- 📊 Report/Summary
- 🎯 Priority/Action Item
- 🔴 Critical Priority
- 🟡 Medium Priority
- 🟢 Low Priority
Report Structure
- Clear severity categorization
- Specific element identification with IDs
- Current state vs recommended fix
- WCAG reference for each issue
- Summary with actionable priorities
- Score for measurable progress
Communication
- Use clear, jargon-free language
- Explain WHY something is an issue (impact on users)
- Provide specific, actionable fixes
- Encourage testing with real assistive technology
- Emphasize that automated checks are just the start
Resources to Include
WCAG 2.1 Quick Reference
Webflow Accessibility Resources
- Webflow University: Accessibility best practices
- Using semantic HTML in Webflow
- Adding ARIA attributes in Webflow
Testing Tools
- Keyboard: Tab, Shift+Tab, Enter, Space
- Screen readers: NVDA (Windows), JAWS, VoiceOver (Mac/iOS)
- Browser extensions: axe DevTools, WAVE, Lighthouse
Common Fixes
- Button labels: Always include visible text or aria-label
- Form labels: Use Webflow's label element or aria-label
- Focus styles: Use :focus-visible pseudo-class
- Semantic HTML: Use proper elements (button, a, label)
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: accessibility-audit-33description: Run comprehensive accessibility audit (WCAG 2.1) on Webflow pages - checks buttons, forms, links, focus states, headings, keyboard navigation, and generates detailed reports with fixes. Requires Webflow Designer connection. Excludes image alt text (covered by asset-audit skill). Use when this capability is needed.4---56# Accessibility Audit78Comprehensive WCAG 2.1 accessibility audit for Webflow pages with detailed issue detection and actionable fixes.910## Important Note1112**ALWAYS use Webflow MCP tools for all operations:**13- Use Webflow MCP's `webflow_guide_tool` to get best practices before starting14- Use Webflow MCP's `data_sites_tool` with action `list_sites` to identify available sites15- Use Webflow MCP's `data_sites_tool` with action `get_site` to retrieve site details16- Use Webflow MCP's `data_pages_tool` with action `list_pages` to get all pages17- Use Webflow MCP's `element_tool` with action `get_all_elements` to get detailed element information (requires Designer)18- Use Webflow MCP's `element_tool` with action `add_or_update_attribute` to fix accessibility issues (requires Designer)19- Use Webflow MCP's `element_snapshot_tool` to get visual previews of elements20- DO NOT use any other tools or methods for Webflow operations21- All tool calls must include the required `context` parameter (15-25 words, third-person perspective)22- **Designer connection required** - This skill needs Designer to access element attributes and styles2324## Instructions2526### Phase 1: Site & Page Selection271. **Get site information**: Use Webflow MCP's `data_sites_tool` with action `list_sites` to identify target site282. **Ask for page selection**:29 - If user provides page ID, use it directly30 - Otherwise, use `data_pages_tool` with action `list_pages` to show available pages31 - Let user select which page(s) to audit323. **Confirm audit scope**: Ask user what to check:33 - Full audit (all accessibility checks)34 - Critical issues only (WCAG Level A)35 - Specific categories (forms, buttons, navigation, etc.)3637### Phase 2: Element Extraction & Analysis384. **Ensure Designer is connected**: Before proceeding, verify Webflow Designer is open and connected39 - If not connected, instruct user to open Designer and connect40 - This is required to access element attributes and styles415. **Switch to target page**: Use `de_page_tool` with action `switch_page` to navigate to the page being audited426. **Extract all elements**: Use `element_tool` with action `get_all_elements` for detailed analysis43 - Set `include_style_properties: true` to check focus styles44 - Set `include_all_breakpoint_styles: false` to minimize data457. **Parse element data**: Identify interactive and content elements:46 - Buttons (Button, LinkBlock with button role)47 - Links (TextLink, Link, LinkBlock)48 - Form inputs (Input, Select, Textarea)49 - Headings (Heading elements with levels)50 - Interactive divs/spans (check for onClick or interactive roles)51 - Images (Image elements) - **SKIP for this audit**528. **Extract attributes for each element**:53 - ARIA attributes (aria-label, aria-describedby, role, tabIndex)54 - DOM attributes (id, domId, href, type, placeholder)55 - Text content56 - Style properties (outline, border for focus states)57 - Element metadata (canHaveAttributes, tag name)5859### Phase 3: Accessibility Checks6061#### Critical Issues (Must Fix - WCAG Level A)629. **Icon-only buttons without labels** (WCAG 4.1.2)63 - Find: Button elements with no text content64 - Check: Missing `aria-label` or `aria-labelledby`65 - Impact: Screen readers cannot identify button purpose66 - Fix: Add `aria-label` attribute with descriptive text676810. **Form inputs without labels** (WCAG 1.3.1)69 - Find: Input, Select, Textarea elements70 - Check: Missing associated label or `aria-label`71 - Impact: Users don't know what input is for72 - Fix: Add `aria-label` or associate with `<label>` using `id`737411. **Non-semantic click handlers** (WCAG 2.1.1)75 - Find: Div or Span elements (identified by element type)76 - Check: Interactive behavior without proper role/keyboard support77 - Impact: Not keyboard accessible, screen readers miss interactivity78 - Fix: Add `role="button"`, `tabIndex="0"`, suggest using real `<button>`798012. **Links without destination** (WCAG 2.1.1)81 - Find: Link elements with no `href` attribute82 - Check: Links that only use onClick without href83 - Impact: Not keyboard accessible, breaks browser features84 - Fix: Add proper `href` or convert to button8586#### Serious Issues (Should Fix - WCAG Level AA)8713. **Focus outline removed without replacement** (WCAG 2.4.7)88 - Find: Elements with `outline: none` style89 - Check: No visible alternative focus indicator90 - Impact: Keyboard users can't see focus91 - Fix: Add visible focus style (border, box-shadow, background change)929314. **Missing keyboard handlers** (WCAG 2.1.1)94 - Find: Elements with onClick handlers95 - Check: Missing onKeyDown for Enter/Space keys96 - Impact: Not usable with keyboard alone97 - Fix: Add keyboard event handlers989915. **Touch target too small** (WCAG 2.5.5)100 - Find: Clickable elements (buttons, links)101 - Check: Width or height < 44px102 - Impact: Hard to tap on mobile devices103 - Fix: Increase padding or min-width/min-height to 44px104105#### Moderate Issues (Consider Fixing)10616. **Heading hierarchy problems** (WCAG 1.3.1)107 - Find: Heading elements (h1-h6)108 - Check: Skipped levels (h1 → h3, skipping h2)109 - Impact: Confusing document structure110 - Fix: Use proper sequential heading levels11111217. **Positive tabIndex** (WCAG 2.4.3)113 - Find: Elements with tabIndex > 0114 - Check: Disrupts natural tab order115 - Impact: Confusing keyboard navigation116 - Fix: Use tabIndex="0" or "-1" only, let natural DOM order work11711818. **Role without required attributes** (WCAG 4.1.2)119 - Find: Elements with ARIA roles120 - Check: Missing required ARIA attributes (e.g., role="button" without tabIndex)121 - Impact: Incomplete accessibility semantics122 - Fix: Add required attributes for role123124### Phase 4: Issue Categorization & Scoring12519. **Categorize all findings**:126 - Critical: Must fix (blocks access)127 - Serious: Should fix (significantly impacts usability)128 - Moderate: Consider fixing (improves experience)12913020. **Calculate accessibility score** (0-100):131 - Start at 100132 - Critical issue: -10 points each133 - Serious issue: -5 points each134 - Moderate issue: -2 points each135 - Minimum score: 013613721. **Generate severity summary**:138 - Total issues found139 - Breakdown by severity140 - Most common issue types141 - Pages/sections most affected142143### Phase 5: Report Generation14422. **Create detailed report** with specific format:145 ```146 ═══════════════════════════════════════════════════147 ACCESSIBILITY AUDIT: [Page Name]148 ═══════════════════════════════════════════════════149150 CRITICAL (X issues)151 ───────────────────152 [A11Y] Element: Button "Submit"153 Issue: Button missing accessible name154 Location: Form section, element ID: {component: "abc", element: "xyz"}155 Current: <button><CloseIcon /></button>156 Fix: Add aria-label="Close"157 WCAG: 4.1.2 Name, Role, Value158159 [A11Y] Element: Input field160 Issue: Form input without label161 Location: Contact form, element ID: {component: "def", element: "uvw"}162 Current: <input type="email" />163 Fix: Add aria-label="Email address" or associate with <label>164 WCAG: 1.3.1 Info and Relationships165166 SERIOUS (X issues)167 ──────────────────168 [A11Y] Element: Link "Read more"169 Issue: Focus outline removed without visible alternative170 Location: Blog section171 Current: outline: none172 Fix: Add visible focus style (e.g., border: 2px solid blue)173 WCAG: 2.4.7 Focus Visible174175 MODERATE (X issues)176 ───────────────────177 [A11Y] Element: Heading178 Issue: Heading hierarchy skipped (h1 → h3)179 Location: Article section180 Current: <h3>Subsection</h3> after <h1>Title</h1>181 Fix: Change to <h2> or add intermediate h2182 WCAG: 1.3.1 Info and Relationships183184 ═══════════════════════════════════════════════════185 SUMMARY186 ───────────────────────────────────────────────────187 Total Issues: X188 - Critical: X issues189 - Serious: X issues190 - Moderate: X issues191192 Accessibility Score: XX/100193194 Most Common Issues:195 1. [Issue type] - X occurrences196 2. [Issue type] - X occurrences197 3. [Issue type] - X occurrences198 ═══════════════════════════════════════════════════199 ```20020123. **Provide actionable insights**:202 - Prioritized fix list (critical first)203 - Quick wins (easy fixes with big impact)204 - Design pattern recommendations205 - Resources for learning more206207### Phase 6: Fix Suggestions & Approval (Optional)20824. **Offer to fix issues automatically**: Designer is already connected, so offer auto-fixes20925. **Show preview of fixes**:210 ```211 Which issues would you like to fix?212213 [1] ✓ Add aria-label to Submit button214 Element: Button in contact form215 Fix: Add aria-label="Submit contact form"216 Safe: Yes (adding attribute only)217218 [2] ✓ Add aria-label to email input219 Element: Input in contact form220 Fix: Add aria-label="Email address"221 Safe: Yes222223 [3] ⚠️ Fix heading hierarchy224 Element: h3 in article section225 Fix: Change heading level from h3 to h2226 Safe: May affect visual styling227228 Type numbers to skip (e.g., "3"), "all" for all, "none" to cancel229 ```23023126. **Apply approved fixes**: Use `element_tool` with action `add_or_update_attribute`232 - Process in batches233 - Show progress for large fix sets234 - Report success/failure for each23523627. **Generate post-fix report**:237 - Issues fixed: X238 - Issues remaining: Y239 - New accessibility score: XX/100 (improved from YY/100)240241### Phase 7: Export & Resources (Optional)24228. **Offer export formats**:243 - Markdown (readable documentation)244 - JSON (machine-readable for tracking)245 - CSV (spreadsheet for team review)24624729. **Provide resources**:248 - WCAG 2.1 quick reference links249 - Webflow accessibility best practices250 - Recommended testing tools (browser extensions, screen readers)251252## Important Considerations253254### What This Skill Checks255✅ Button accessibility (labels, roles)256✅ Form input labels and associations257✅ Link semantics and keyboard access258✅ Focus visibility and keyboard navigation259✅ Heading hierarchy and structure260✅ ARIA roles and attributes261✅ Touch target sizes262✅ Interactive element semantics263264### What This Skill Does NOT Check265❌ Image alt text (use **asset-audit** skill instead)266❌ Color contrast ratios (requires visual analysis)267❌ Animation/motion preferences268❌ Screen reader testing (needs manual verification)269❌ Content readability (language level, clarity)270271### Limitations272- Cannot detect visual-only issues (color contrast, small text)273- Cannot test actual screen reader behavior274- Cannot validate content quality or clarity275- Relies on element attributes and structure only276277## Examples278279### Example 1: Full Page Audit280281**User prompt:**282```283Run an accessibility audit on my homepage284```285286**Step 1: Site & Page Selection**287```288🔍 Accessibility Audit: Page Selection289290I'll help you audit your homepage for accessibility issues.291292First, let me get your site information...293294Available sites:2951. Company Website2962. Portfolio Site297298Which site? (1/2)299```300301**User response:** `1`302303**Step 2: Page Selection**304```305Available pages in Company Website:3061. Home (/)3072. About (/about)3083. Contact (/contact)3094. Blog (/blog)310311Which page would you like to audit? (1 for Home)312```313314**User response:** `1`315316**Step 3: Audit Scope**317```318What level of audit would you like?3193201. Full audit (all WCAG checks) - Recommended3212. Critical issues only (Level A compliance)3223. Specific categories (buttons, forms, navigation)323324Your choice: (1/2/3)325```326327**User response:** `1`328329**Step 4: Audit Progress**330```331🔄 Running Accessibility Audit...332333Progress:334✅ Extracted page content (45 elements)335✅ Analyzing buttons and interactive elements336✅ Checking form inputs and labels337✅ Validating heading hierarchy338✅ Checking keyboard navigation339🔄 Analyzing focus states...340341Analysis complete!342```343344**Step 5: Report**345```346═══════════════════════════════════════════════════347ACCESSIBILITY AUDIT: Home348═══════════════════════════════════════════════════349350CRITICAL (3 issues)351───────────────────352[A11Y] Element: Button (navigation toggle)353 Issue: Icon-only button missing accessible name354 Location: Header navigation355 Element ID: {component: "nav-01", element: "btn-menu"}356 Current: <button><MenuIcon /></button>357 Fix: Add aria-label="Open navigation menu"358 WCAG: 4.1.2 Name, Role, Value359360[A11Y] Element: Input (email subscription)361 Issue: Form input without label362 Location: Footer, newsletter signup363 Element ID: {component: "footer-01", element: "email-input"}364 Current: <input type="email" placeholder="Enter email" />365 Fix: Add aria-label="Email address for newsletter"366 WCAG: 1.3.1 Info and Relationships367368[A11Y] Element: Div (clickable card)369 Issue: Non-semantic interactive element370 Location: Services section, card 2371 Element ID: {component: "services-01", element: "card-02"}372 Current: <div onClick={...}>Service card</div>373 Fix: Convert to <button> or add role="button" + tabIndex="0"374 WCAG: 2.1.1 Keyboard375376SERIOUS (5 issues)377──────────────────378[A11Y] Element: Link "Learn more"379 Issue: Focus outline removed without visible alternative380 Location: Hero section381 Element ID: {component: "hero-01", element: "cta-link"}382 Current: outline: none383 Fix: Add focus style - border: 2px solid #0066cc or box-shadow384 WCAG: 2.4.7 Focus Visible385386[A11Y] Element: Button "Subscribe"387 Issue: Touch target too small (30px × 36px)388 Location: Footer newsletter form389 Element ID: {component: "footer-01", element: "submit-btn"}390 Current: Small button391 Fix: Increase padding or set min-height: 44px392 WCAG: 2.5.5 Target Size393394[continues with 3 more serious issues...]395396MODERATE (4 issues)397───────────────────398[A11Y] Element: Heading "Our Services"399 Issue: Heading hierarchy skipped (h1 → h3)400 Location: Services section401 Element ID: {component: "services-01", element: "heading"}402 Current: <h3>Our Services</h3> follows <h1>Welcome</h1>403 Fix: Change to <h2> to maintain proper hierarchy404 WCAG: 1.3.1 Info and Relationships405406[continues with 3 more moderate issues...]407408═══════════════════════════════════════════════════409SUMMARY410───────────────────────────────────────────────────411Total Issues: 12412- Critical: 3 issues (must fix)413- Serious: 5 issues (should fix)414- Moderate: 4 issues (consider fixing)415416Accessibility Score: 64/100417418Most Common Issues:4191. Missing button labels - 2 occurrences4202. Focus styles removed - 3 occurrences4213. Heading hierarchy problems - 2 occurrences422423Quick Wins (Easy + High Impact):424✨ Add aria-label to icon buttons (2 min, +20 score points)425✨ Add input labels (5 min, +10 score points)426✨ Add focus styles (10 min, +15 score points)427428═══════════════════════════════════════════════════429430💡 Next Steps:4311. Fix critical issues first (blocks access for some users)4322. Add visible focus styles for keyboard users4333. Test with keyboard navigation (Tab, Enter, Space keys)4344. Consider testing with screen reader (NVDA/JAWS/VoiceOver)435436Would you like me to help fix these issues? (requires Designer connection)437```438439### Example 2: Multi-Page Audit440441**User prompt:**442```443Audit accessibility across my entire site444```445446**Agent response:**447```448🔍 Multi-Page Accessibility Audit449450I'll audit all pages on your site for accessibility issues.451452Found 8 pages:4531. Home4542. About4553. Services4564. Team4575. Blog4586. Blog Post Template (CMS)4597. Contact4608. Privacy Policy461462This will take approximately 2-3 minutes.463464Proceed with full site audit? (yes/no)465```466467**User:** `yes`468469**Progress:**470```471🔄 Auditing Site Accessibility...472473Progress: ████████████░░░░░░░░ 60% (5/8 pages)474475✅ Home - Score: 64/100 (12 issues)476✅ About - Score: 78/100 (6 issues)477✅ Services - Score: 71/100 (9 issues)478✅ Team - Score: 85/100 (4 issues)479✅ Blog - Score: 82/100 (5 issues)480🔄 Analyzing Blog Post Template...481```482483**Final Report:**484```485═══════════════════════════════════════════════════486SITE-WIDE ACCESSIBILITY AUDIT487═══════════════════════════════════════════════════488489OVERALL SCORE: 73/100490491Pages Audited: 8492Total Issues: 48493- Critical: 11 issues494- Serious: 21 issues495- Moderate: 16 issues496497═══════════════════════════════════════════════════498ISSUES BY PAGE499═══════════════════════════════════════════════════500501🔴 Lowest Scores (Need Attention):5021. Home - 64/100 (12 issues: 3 critical, 5 serious, 4 moderate)5032. Services - 71/100 (9 issues: 2 critical, 5 serious, 2 moderate)5043. About - 78/100 (6 issues: 1 critical, 3 serious, 2 moderate)505506🟢 Highest Scores:5071. Team - 85/100 (4 issues: 0 critical, 2 serious, 2 moderate)5082. Blog - 82/100 (5 issues: 1 critical, 2 serious, 2 moderate)509510═══════════════════════════════════════════════════511SITE-WIDE PATTERNS512═══════════════════════════════════════════════════513514Most Common Issues Across Site:5151. Missing button labels (icon buttons) - 8 occurrences516 Pages affected: Home, Services, Blog, Contact5175182. Focus outline removed - 12 occurrences519 Pages affected: All pages (site-wide CSS issue)5205213. Form inputs without labels - 5 occurrences522 Pages affected: Home, Contact5235244. Small touch targets (<44px) - 9 occurrences525 Pages affected: Home, About, Services, Contact526527═══════════════════════════════════════════════════528RECOMMENDATIONS529═══════════════════════════════════════════════════530531🎯 Site-Wide Fixes (Fix Once, Helps Everywhere):5321. Add focus styles to global CSS (affects 12 issues across all pages)5332. Update button component to require aria-label (affects 8 issues)5343. Increase minimum touch target size in design system (affects 9 issues)535536📋 Page-Specific Priorities:5371. Home page: Fix navigation menu button and newsletter form5382. Services page: Add labels to service card interactions5393. Contact page: Add proper labels to all form inputs540541💡 Design System Improvements:542- Create accessible button component with required aria-label543- Add focus state variants to all interactive components544- Set minimum touch target size standard (44px)545546Would you like:5471. Detailed report for specific page5482. Export findings to file (Markdown/JSON/CSV)5493. Help fixing site-wide issues (requires Designer)550```551552### Example 3: Critical Issues Only553554**User prompt:**555```556Check my contact page for critical accessibility issues only557```558559**Agent response:**560```561🔍 Critical Issues Audit: Contact Page562563Running quick scan for blocking accessibility issues...564565✅ Page analyzed566567═══════════════════════════════════════════════════568CRITICAL ISSUES: Contact Page569═══════════════════════════════════════════════════570571Found: 4 critical issues572573[1] Form Input Missing Label574 Element: Email input field575 Location: Contact form, top576 Issue: No accessible name for screen readers577 Fix: Add aria-label="Your email address"578 WCAG: 1.3.1 (Level A)579580[2] Form Input Missing Label581 Element: Message textarea582 Location: Contact form, bottom583 Issue: No accessible name for screen readers584 Fix: Add aria-label="Your message"585 WCAG: 1.3.1 (Level A)586587[3] Button Missing Label588 Element: Submit button589 Location: Contact form, bottom590 Issue: Icon-only button with no text591 Fix: Add aria-label="Submit contact form"592 WCAG: 4.1.2 (Level A)593594[4] Non-Semantic Interactive Element595 Element: Social media link (Instagram)596 Location: Footer597 Issue: Div with onClick instead of proper link598 Fix: Convert to <a href="..."> with aria-label="Instagram"599 WCAG: 2.1.1 (Level A)600601═══════════════════════════════════════════════════602603⚠️ Impact: These issues prevent screen reader users from using your contact form.604605🔧 Estimated fix time: 5 minutes606607Would you like me to:6081. Run full audit (includes serious and moderate issues)6092. Fix these 4 critical issues now (requires Designer)6103. Export this report (Markdown/JSON/CSV)611```612613## Safety Rules614615### Preview & Confirmation616- Always show detailed issue list before suggesting fixes617- Clearly mark severity levels (critical/serious/moderate)618- Explain impact of each issue in user-friendly terms619- Provide specific WCAG reference for each finding620621### Granular Approval for Fixes622- Allow user to select which issues to fix623- Warn about fixes that might affect visual design624- Process fixes in batches with progress indicators625- Report success/failure for each fix attempt626627### Error Handling628- If page cannot be accessed, explain clearly629- If Designer not connected, list limitations630- If element cannot be modified, suggest manual fix631- Separate automated fixes from manual review items632633### Validation634- Verify element types before suggesting fixes635- Check if element supports attributes before adding636- Test that suggested fixes are valid for element type637- Warn if fix might break existing functionality638639## Output Standards640641### Icons & Formatting642- 🔍 Discovery/Analysis643- 🔄 Processing644- ✅ Pass/Success645- ❌ Fail/Critical Issue646- ⚠️ Warning/Serious Issue647- 💡 Suggestion/Moderate Issue648- 📊 Report/Summary649- 🎯 Priority/Action Item650- 🔴 Critical Priority651- 🟡 Medium Priority652- 🟢 Low Priority653654### Report Structure6551. Clear severity categorization6562. Specific element identification with IDs6573. Current state vs recommended fix6584. WCAG reference for each issue6595. Summary with actionable priorities6606. Score for measurable progress661662### Communication663- Use clear, jargon-free language664- Explain WHY something is an issue (impact on users)665- Provide specific, actionable fixes666- Encourage testing with real assistive technology667- Emphasize that automated checks are just the start668669## Resources to Include670671### WCAG 2.1 Quick Reference672- https://www.w3.org/WAI/WCAG21/quickref/673674### Webflow Accessibility Resources675- Webflow University: Accessibility best practices676- Using semantic HTML in Webflow677- Adding ARIA attributes in Webflow678679### Testing Tools680- Keyboard: Tab, Shift+Tab, Enter, Space681- Screen readers: NVDA (Windows), JAWS, VoiceOver (Mac/iOS)682- Browser extensions: axe DevTools, WAVE, Lighthouse683684### Common Fixes685- Button labels: Always include visible text or aria-label686- Form labels: Use Webflow's label element or aria-label687- Focus styles: Use :focus-visible pseudo-class688- Semantic HTML: Use proper elements (button, a, label)689690---691> Converted and distributed by [TomeVault](https://tomevault.io/claim/webflow) — claim your Tome and manage your conversions.692<!-- tomevault:4.0:skill_md:2026-04-11 -->