accessibility-audit
1
总安装量
1
周安装量
#47884
全站排名
安装命令
npx skills add https://github.com/astoeffer/plugin-marketplace --skill accessibility-audit
Agent 安装分布
replit
1
opencode
1
codex
1
gemini-cli
1
Skill 文档
Moodle Accessibility Audit
Ensure Moodle plugins meet WCAG 2.1 AA and EU accessibility requirements.
When to Use This Skill
- Auditing plugin accessibility
- Fixing accessibility issues
- Implementing accessible forms
- ARIA attribute usage
See reference.md for complete checklist.
Quick Checks
Forms
<label for="username">Username</label>
<input type="text" id="username" name="username" aria-describedby="username-help">
<span id="username-help" class="form-text">Enter your login name</span>
Images
<img src="chart.png" alt="Sales chart showing 20% growth in Q4">
Interactive Elements
<button type="button" aria-expanded="false" aria-controls="menu-content">
Menu
</button>
Key Requirements
- Color contrast: 4.5:1 minimum for text
- Focus visible: All interactive elements
- Keyboard navigation: Tab order logical
- Screen reader: Meaningful labels
- Touch targets: 44Ã44px minimum