소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 11일 16:18
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill accessibility-patterns명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | accessibility-patterns |
| description | WCAG accessibility — load only when explicitly required. |
When to load this skill: only when the project requires WCAG compliance (documented in project context), the user explicitly requests accessibility work, or an audit tool (axe, Lighthouse) flags specific violations. Do not apply these patterns as default constraints on every task.
Focus must be explicitly managed whenever the UI changes in ways the browser cannot handle automatically.
| Scenario | Required action |
|---|---|
| Modal / dialog opens | Move focus to the first interactive element inside, or the dialog container |
| Modal / dialog closes | Return focus to the trigger element that opened it |
| SPA route navigation | Move focus to the main heading or the <main> landmark of the new page |
| Inline error appears | Move focus to the error summary or the first invalid field |
| Dynamic content inserted (toast, alert) | Announce via a live region — do not move focus |
<button> beats <div role="button">. ARIA fills gaps that semantic HTML cannot.<button aria-role="button"> is redundant noise.role — what it is (combobox, tab, tree)aria-label, aria-labelledby, or visible textaria-expanded, aria-selected, aria-checked as appropriate| Component | Role | Required states |
|---|---|---|
| Tabs | tablist / tab / tabpanel | aria-selected, aria-controls |
| Accordion | button + region | aria-expanded, aria-controls |
| Combobox / autocomplete | combobox + listbox | aria-expanded, aria-activedescendant |
| Modal | dialog | aria-modal="true", aria-labelledby |
| Alert / toast | alert or status | live region (aria-live="polite" or "assertive") |
| Progress bar | progressbar | aria-valuenow, aria-valuemin, aria-valuemax |
Use live regions for content that changes without a focus move (notifications, status updates, async results).
<!-- polite: announced after the user finishes their current action -->
<div aria-live="polite" aria-atomic="true">3 results found</div>
<!-- assertive: interrupts immediately — use only for errors or critical alerts -->
<div role="alert">Your session has expired.</div>
Rules:
aria-atomic="true" announces the full region on each update; omit it when only the new portion should be readEvery interactive element must be reachable and operable by keyboard alone.
| Key | Expected behavior |
|---|---|
Tab / Shift+Tab | Moves focus forward / backward through focusable elements |
Enter / Space | Activates buttons, links, checkboxes |
Escape | Closes modals, dropdowns, popovers |
| Arrow keys | Navigates within composite widgets (menus, tabs, radio groups, grids) |
Focus trap: when a modal is open, Tab must cycle within it — focus must not escape to the background. Use a focus trap utility rather than implementing it manually.
<a href="#main-content">Skip to main content</a><main>, one <header>, one <nav> (if navigation is present)<nav> elements must be distinguished with aria-label: aria-label="Primary", aria-label="Breadcrumb"axe-core (via jest-axe, @axe-core/playwright, or Storybook a11y addon) — catches ~30–40% of issues automatically