Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

wcag-accessibilityWCAG 无障碍

Agent Skill

用于辅助无障碍访问检查、页面可用性审计和前端可访问性改进。它适合让 Agent 检查语义标签、键盘操作、颜色对比、ARIA 属性和自动化检测结果。使用时需要结合真实页面和浏览器验证,不应只依赖静态文本判断;涉及修复建议时,应兼顾设计系统、组件复用和 WCAG 等通用无障碍规范。

总安装

606

周安装

25

GitHub Stars

6

下载量

198
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wcag-accessibility(WCAG 无障碍)
来源仓库:https://github.com/dembrandt/dembrandt-skills
仓库路径:skills/wcag-accessibility
安装命令:
npx skills add https://github.com/dembrandt/dembrandt-skills --skill wcag-accessibility
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dembrandt/dembrandt-skills --skill wcag-accessibility

简介

用于辅助无障碍访问检查、页面可用性审计和前端可访问性改进,支持语义标签、键盘操作和 ARIA 属性检测。

  • 适用于检查颜色对比、自动化检测结果及生成修复建议,需结合真实页面验证。
  • 通过 npx skills add 命令从 GitHub 仓库安装,具体用法可参考原始 README。
  • 涉及修复建议时应兼顾设计系统、组件复用和 WCAG 规范,避免仅依赖静态文本判断。
  • wcag-accessibility 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

WCAG Accessibility (EN 301 549 / European Standard)

The Standard

The European Accessibility Act (EAA) requires digital products and services in the EU to meet EN 301 549, which references WCAG 2.2 Level AA as the technical baseline. This is not optional — it is a legal requirement for products operating in the EU market.

Default: always build to WCAG 2.2 AA. Deviating requires explicit, documented justification. Do not skip accessibility requirements because of timeline pressure or design preference.

WCAG 2.2 AA organises requirements under four principles: Perceivable, Operable, Understandable, Robust.


Perceivable

Users must be able to perceive all content and UI components.

Colour Contrast

ContextMinimum ratioEnhanced (AAA)
Normal text (< 18pt / < 14pt bold)4.5: 17: 1
Large text (≥ 18pt / ≥ 14pt bold)3: 14.5: 1
UI components and graphical objects3: 1

Disabled elements are exempt. WCAG explicitly excludes inactive UI components from contrast requirements (WCAG 1.4.3 exception). A disabled button may use low-contrast text — this is intentional and correct, as it communicates the unavailable state.

Do not use colour as the only means of conveying information (e.g. a red border alone to indicate an error — add an icon or text label).

Text Alternatives

  • Every meaningful image needs alt text describing its content or function
  • Decorative images use alt="" so screen readers skip them
  • Icons used as buttons need an accessible label: aria-label or visually hidden text
  • Charts and data visualisations need a text summary or data table alternative

Captions and Transcripts

  • Video content needs captions
  • Audio-only content needs a transcript

Operable

Users must be able to operate all UI components.

Keyboard Navigation

All interactive elements must be reachable and operable by keyboard alone.

  • Every button, link, input, and control must receive focus via Tab
  • Focus order must follow the visual reading order of the page
  • No keyboard traps — users must be able to navigate away from any component
  • Modal dialogs must trap focus inside while open, and return focus to the trigger element on close

Focus Visibility

A visible focus indicator is required on every interactive element (WCAG 2.2 strengthens focus visibility requirements).

/* Minimum: do not remove focus outline without a replacement */
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

Never use outline: none without providing a custom focus style. The focus ring is not a design problem to eliminate — it is a navigation tool.

Touch Target Size

Interactive elements on touch devices must be at least 24×24px (WCAG 2.2) — 44×44px is the recommended comfortable minimum (Apple HIG, Material Design). Small icon buttons need padding to reach this size even if the visual icon is smaller.

No Seizure Triggers

Nothing on screen should flash more than 3 times per second.

Skip Links

Pages with repeated navigation must provide a "Skip to main content" link as the first focusable element, so keyboard users can bypass navigation on every page.


Understandable

Users must be able to understand the content and how the UI works.

Language

  • Set lang attribute on the <html> element: <html lang="fi"> or <html lang="en">
  • Mark inline content in a different language with lang on that element

Labels and Instructions

  • Every form input must have a visible label — not just a placeholder (placeholders disappear on input)
  • Required fields must be indicated — do not rely on colour alone; add an asterisk and a legend
  • Error messages must be associated with their input via aria-describedby

Predictability

  • Components that look the same must behave the same (see Consistency and Standards)
  • Navigation must appear in the same location across pages
  • Opening a new tab or window must be communicated in advance

Error Identification

  • Form validation errors must identify which field failed
  • Errors must be described in text — not only by colour or icon

Robust

Content must be interpreted reliably by assistive technologies.

Semantic HTML

Use the correct HTML element for the job. Semantics convey role, state, and structure to screen readers for free.

<!-- Correct -->
<button>Save</button>
<nav aria-label="Main navigation">...</nav>
<h1>Page title</h1>

<!-- Wrong — requires manual ARIA to replicate what the element provides natively -->
<div onclick="save()">Save</div>
<div class="nav">...</div>
<div class="heading">Page title</div>

ARIA — Use Sparingly

ARIA supplements HTML semantics where native elements fall short. It does not fix broken HTML.

Rule: no ARIA is better than incorrect ARIA. Incorrect ARIA actively breaks screen reader output.

Required patterns:

  • aria-label or aria-labelledby for components with no visible text label
  • aria-expanded on toggles, accordions, and dropdowns
  • aria-live regions for dynamic content updates (toast notifications, search results)
  • role="dialog" with aria-modal="true" on modal overlays
  • aria-current="page" on the active navigation item

Status Messages

Dynamic updates (success toasts, loading states, error counts) must be announced to screen readers via aria-live or role="status" — they will not be announced automatically unless the focused element changes.


The Disabled Element Exception

WCAG 1.4.3 explicitly states: *"Text or images of text that are part of an inactive user interface component… have no contrast requirement."*

This means:

  • Disabled buttons, inputs, and links may use low-contrast text and colours
  • The visual dimming of disabled states is both correct and compliant
  • Do not add artificial contrast to disabled elements — the reduced contrast communicates "this is unavailable"

Review Checklist

AreaCheck
ContrastAll active text ≥ 4.5:1 (normal) or 3:1 (large/UI)
ContrastDisabled elements exempt — intentionally low contrast is fine
ColourColour is never the only information carrier
KeyboardAll interactive elements reachable and operable by keyboard
FocusVisible focus indicator on every interactive element
TouchInteractive targets ≥ 44×44px on touch surfaces
LabelsEvery input has a visible label (not just placeholder)
ErrorsValidation errors identify the field and describe the problem in text
HTMLSemantic elements used correctly; ARIA only where needed
Languagelang attribute set on <html>
Skip link"Skip to main content" as first focusable element
Live regionsDynamic updates announced via aria-live or role="status"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

33.29%
按下载量换算66

Codex

33.03%
按下载量换算65

Cursor

17.6%
按下载量换算35

Gemini CLI

9.78%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills