accessibility-wcag

Solid

Enforce WCAG 2.2 accessibility standards. Use when creating UI components, reviewing frontend code, or when accessibility issues are detected. Covers semantic HTML, ARIA, keyboard navigation, and color contrast.

Web & Frontend 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# Accessibility (WCAG 2.2) 웹 접근성 표준 WCAG 2.2를 준수하도록 강제하는 스킬입니다. ## 2025 Context > **WCAG 2.2는 2023년 10월 ISO 표준(ISO/IEC 40500)으로 채택되었습니다.** > **유럽 접근성법(EAA)은 2025년 6월부터 시행됩니다.** ## Core Principles (POUR) | 원칙 | 설명 | 예시 | |------|------|------| | **P**erceivable | 인지 가능 | 대체 텍스트, 자막, 색상 대비 | | **O**perable | 조작 가능 | 키보드 접근, 충분한 시간 | | **U**nderstandable | 이해 가능 | 명확한 언어, 예측 가능한 동작 | | **R**obust | 견고함 | 보조 기술 호환성 | ## Rules ### 1. Semantic HTML (필수) ```tsx // ❌ BAD: div 남용 <div onClick={handleClick}>버튼</div> <div class="header">제목</div> // ✅ GOOD: 시맨틱 태그 사용 <button onClick={handleClick}>버튼</button> <h1>제목</h1> ``` ### 2. 이미지 대체 텍스트 (필수) ```tsx // ❌ BAD: alt 누락 또는 의미 없음 <img src="logo.png" /> <img src="chart.png" alt="이미지" /> // ✅ GOOD: 의미 있는 alt <img src="logo.png" alt="회사명 로고" /> <img src="chart.png" alt="2024년 매출 증가 추이 그래프" /> // ✅ 장식용 이미지는 빈 alt <img src="decoration.png" alt="" role="presentation" /> ``` ### 3. 키보드 접근성 (필수) ```tsx // ❌ BAD: 키보드 접근 불가 <div onClick={handleClick} style={{ cursor: 'pointer' }}> 클릭 </div> // ✅ GOOD: 키보드 접근 가능 <button onClick={handleClick}>클릭</button> // 또는 커스텀 요소 사용 시 <div role="button" tabIndex={0} onClick={handleClick} onKeyDown={(e) => e.key === 'Enter' && handleClick()} > 클릭 </div> ``` ### 4. 포커스 관리 ```tsx // ❌ BAD: 포커스 스타일 제거 button:focus { outline: none; } // ✅ GOOD: 명확한 포커스 표시 button:focus { outline: 2px solid #005fcc; outline-offset: 2px; } button:focus-visible { outline: 2px solid #005fcc; } ``` ...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Similar Skills

Semantically similar based on skill content — not just same category

Web & Frontend Listed

wcag-accessibility

UI must comply with WCAG 2.2 Level AA, as required by the European Accessibility Act (EN 301 549). Do not deviate without deliberate justification. Disabled UI elements are explicitly exempt from colour contrast requirements. Use when designing, building, or reviewing any user-facing interface for accessibility compliance.

13 Updated yesterday
dembrandt
Web & Frontend Solid

accessibility

Audit and improve web accessibility following WCAG 2.2 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

2,151 Updated 3 weeks ago
addyosmani
Web & Frontend Solid

accessibility

Audit and improve web accessibility following WCAG 2.1 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

27,705 Updated today
davila7
Web & Frontend Listed

accessibility

Audit and improve web accessibility following WCAG 2.1 guidelines. Use when asked to "improve accessibility", "a11y audit", "WCAG compliance", "screen reader support", "keyboard navigation", or "make accessible".

2 Updated today
Bugrasemerkant
AI & Automation Solid

accessibility

Accessibility patterns for WCAG 2.2 compliance, keyboard focus management, React Aria component patterns, cognitive inclusion, native HTML-first philosophy, and user preference honoring. Use when implementing screen reader support, keyboard navigation, ARIA patterns, focus traps, accessible component libraries, reduced motion, or cognitive accessibility.

180 Updated today
yonatangross