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

accessibility-review无障碍审查

Agent Skill

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

总安装

485

周安装

20

GitHub Stars

56

下载量

158
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/richtabor/agent-skills --skill accessibility-review

简介

accessibility-review 用于辅助无障碍访问检查、页面可用性审计和前端可访问性改进。

  • 它适合让 Agent 检查语义标签、键盘操作、颜色对比、ARIA 属性和自动化检测结果。
  • 使用时需要结合真实页面和浏览器验证,不应只依赖静态文本判断;涉及修复建议时,应兼顾设计系统、组件复用和 WCAG 等通用无障碍规范。
  • 安装方式:github,使用 npx skills add 命令添加指定仓库的 skill。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Accessibility Review

Overview

This skill enables manual accessibility reviews of web content, components, and applications against WCAG 2.1/2.2 Level AA standards. Reviews focus on practical, modern accessibility requirements without being overly pedantic.

When to Use This Skill

Use this skill when the user asks questions like:

  • "Is this accessible?"
  • "Can you review the color contrast?"
  • "Check this component for accessibility issues"
  • "Does this meet accessibility standards?"
  • Any request to review, check, or validate accessibility

Review Process

1. Identify the Target

Determine what needs to be reviewed:

  • Specific component (button, form, modal, etc.)
  • Full page or application
  • Code file or set of files
  • Design mockup or screenshot

2. Conduct Manual Review

Use the WCAG checklist in references/wcag-checklist.md to systematically review the target against modern accessibility standards.

Focus on the most common and impactful issues:

  • Perceivable: Color contrast, text alternatives, semantic structure
  • Operable: Keyboard navigation, focus management, interactive elements
  • Understandable: Clear labels, error handling, consistent navigation
  • Robust: Valid HTML, ARIA usage, compatibility

3. Prioritize Findings

Classify each issue as:

Critical - Blocks users from accessing core functionality:

  • Missing alt text on meaningful images
  • Non-keyboard accessible interactive elements
  • Insufficient color contrast (below 4.5:1 for normal text, 3:1 for large text)
  • Forms without proper labels
  • Missing focus indicators
  • Inaccessible modal/dialog patterns
  • Auto-playing media without controls

Warning - Creates friction but doesn't fully block access:

  • Suboptimal heading hierarchy (skipped levels)
  • Missing ARIA landmarks
  • Link text that's unclear out of context
  • Redundant or unnecessary ARIA
  • Touch targets smaller than 44x44px
  • Missing skip links
  • Non-descriptive error messages

4. Stepped Review (One Issue at a Time)

IMPORTANT: Do NOT present all findings at once. Review issues one at a time, waiting for user decision before proceeding.

4.1 Start with Overview

Begin by telling the user how many issues were found:

Found [X] accessibility issues ([Y] critical, [Z] warnings).

Let's review them one at a time. I'll present each issue with a recommended fix, and you can decide to:
- **Fix** — I'll implement the change
- **Ignore** — Tell me why, and I'll note it

Starting with critical issues first.

4.2 Present Each Issue

For each issue, present ONE at a time using this format:

───────────────────────────────────
Issue [1/X]: [Critical/Warning]
───────────────────────────────────

**Problem**: [Clear description of the issue]

**Location**: `file_path:line_number`
[Show the relevant code snippet]

**Impact**: [How this affects users — be specific about who and how]

**Recommended Fix**:
[Specific code change or approach]

───────────────────────────────────
Fix this issue, or ignore? (If ignoring, please share why)

4.3 Handle User Response

If user says "fix":

  1. Implement the fix
  2. Confirm: "Fixed. [Brief description of what changed]"
  3. Move to next issue

If user says "ignore" with reason:

  1. Acknowledge: "Noted — ignoring because: [their reason]"
  2. Track the decision (see 4.4)
  3. Move to next issue

If user says "ignore" without reason:

  1. Ask: "Got it. Quick note on why? (Helps for future reference)"
  2. Accept any response and move on

4.4 Track Decisions

Keep a running tally as you go through issues. After all issues are reviewed, present a summary.

5. Final Summary

After reviewing all issues, present a summary:

## Accessibility Review Complete

**Reviewed**: [X] issues ([Y] critical, [Z] warnings)

### Fixed ([N])
- [Issue description] — `file:line`
- [Issue description] — `file:line`

### Ignored ([N])
- [Issue description] — Reason: [user's reason]
- [Issue description] — Reason: [user's reason]

### Remaining Concerns
[Any patterns noticed, suggestions for future, or issues that were ignored but warrant reconsideration]

Review Guidelines

Be Practical: Focus on issues that genuinely impact users. Modern WCAG 2.1/2.2 Level AA is the standard—avoid over-engineering or citing obscure edge cases.

Be Specific: Reference actual code locations using file_path:line_number format when possible.

Be Constructive: Provide actionable fixes, not just problems. Include code examples when helpful.

Consider Context: Some patterns may have accessibility trade-offs. Acknowledge these and suggest the most accessible approach for the use case.

Common Patterns to Check

Interactive Elements

  • All interactive elements must be keyboard accessible (Enter/Space to activate)
  • Focus must be visible with clear indicators
  • Custom controls need proper ARIA roles and states

Forms

  • All inputs must have associated labels (explicit or aria-label)
  • Error messages must be programmatically associated with fields
  • Required fields must be indicated clearly

Color and Contrast

  • Text contrast: 4.5:1 minimum for normal text, 3:1 for large text (18pt+ or 14pt+ bold)
  • UI components: 3:1 contrast for interactive elements and their states
  • Don't rely on color alone to convey information

Images and Media

  • Meaningful images need descriptive alt text
  • Decorative images should have empty alt (alt="")
  • Videos need captions, audio content needs transcripts

Structure

  • Use semantic HTML (nav, main, article, etc.)
  • Heading hierarchy should be logical (h1 → h2 → h3)
  • ARIA landmarks help screen reader navigation

Resources

This skill includes:

references/wcag-checklist.md

Comprehensive checklist of WCAG 2.1/2.2 Level AA requirements organized by principle (Perceivable, Operable, Understandable, Robust). Reference this during reviews to ensure thorough coverage of accessibility standards.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.29%
按下载量换算56

Claude

33.09%
按下载量换算52

Cursor

17.29%
按下载量换算27

Gemini CLI

10.1%
按下载量换算16

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills