FĂ€higkeiten accessibility-compliance-accessibility-audit
♿

accessibility-compliance-accessibility-audit

Sicher

Audit Web Accessibility with WCAG

This skill helps developers conduct comprehensive WCAG compliance audits using automated tools and manual testing to identify accessibility barriers and provide remediation guidance.

UnterstĂŒtzt: Claude Codex Code(CC)
đŸ„‰ 74 Bronze
1

Die Skill-ZIP herunterladen

2

In Claude hochladen

Gehe zu Einstellungen → FĂ€higkeiten → Skills → Skill hochladen

3

Einschalten und loslegen

Teste es

Verwendung von "accessibility-compliance-accessibility-audit". Run WCAG AA audit on example.com

Erwartetes Ergebnis:

Accessibility Audit Results: Score 72/100. Critical Issues: 3 (missing alt text, form labels). Serious Issues: 5 (contrast, focus indicators). Recommended fixes with code examples provided.

Verwendung von "accessibility-compliance-accessibility-audit". How do I fix keyboard trap in modal?

Erwartetes Ergebnis:

To fix keyboard trap: 1) Add Escape key handler to close modal. 2) Ensure focus returns to trigger element. 3) Trap focus within modal while open. See code example with React and ARIA.

Sicherheitsaudit

Sicher
v1 ‱ 2/24/2026

Security review complete. All static findings are false positives. The skill provides legitimate accessibility testing examples using standard tools (axe-core, Puppeteer). No actual command injection, credential access, or malicious network requests present. Code examples are for local accessibility testing only.

2
Gescannte Dateien
548
Analysierte Zeilen
0
befunde
1
Gesamtzahl Audits
Keine Sicherheitsprobleme gefunden
Auditiert von: claude

QualitÀtsbewertung

38
Architektur
100
Wartbarkeit
85
Inhalt
50
Community
100
Sicherheit
91
SpezifikationskonformitÀt

Was du bauen kannst

Pre-release Accessibility Audit

Run comprehensive accessibility audit before launching a website to ensure WCAG AA compliance and identify barriers.

Remediation Guidance

Get step-by-step guidance on fixing specific accessibility violations with code examples.

Accessibility Education

Learn best practices for keyboard navigation, screen reader support, and inclusive design patterns.

Probiere diese Prompts

Basic Audit Request
Run a WCAG AA accessibility audit on my website at [URL]. Identify the top issues and provide remediation steps.
Detailed Component Testing
Test the login form component for accessibility. Check for proper labels, keyboard navigation, error handling, and screen reader announcements.
Remediation Plan
I have [specific accessibility issue]. Provide detailed code examples to fix this using React and ARIA attributes.
CI/CD Integration
Create a GitHub Actions workflow to run automated accessibility tests on every pull request using axe-core.

BewÀhrte Verfahren

  • Always test with real assistive technologies, not just automated tools
  • Prioritize fixes by user impact (critical > serious > moderate > minor)
  • Document accessibility decisions and rationale in code comments
  • Include accessibility testing in your CI/CD pipeline

Vermeiden

  • Relying solely on automated tools without manual testing
  • Using color as the only means of conveying information
  • Setting tabindex > 0 which disrupts logical tab order
  • Adding ARIA attributes without understanding their meaning

HĂ€ufig gestellte Fragen

What WCAG level should I target?
WCAG AA is the minimum standard for most legal requirements. AAA provides higher accessibility but may not be achievable for all content.
Can this skill guarantee legal compliance?
No. This skill provides technical guidance only. Legal compliance depends on jurisdiction, specific requirements, and human judgment.
How accurate are automated tests?
Automated tools detect only 30-40% of accessibility issues. Manual testing with keyboard and screen readers is essential.
Does this work with single-page applications?
Yes. The skill covers testing SPAs but you may need to test each view and state separately.
What tools does this skill use?
The skill references axe-core, Puppeteer, jest-axe, and pa11y for automated testing alongside manual checklists.
Can I test mobile applications?
This skill focuses on web accessibility. Mobile testing requires different tools and approaches.