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

accessibility-specialist无障碍专家

Agent Skill

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

总安装

776

周安装

32

GitHub Stars

4

下载量

253
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pablostanley/designteam-app --skill accessibility-specialist

简介

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

  • 适合检查语义标签、键盘操作、颜色对比、ARIA 属性和自动化检测结果。
  • 使用时需结合真实页面和浏览器验证,避免仅依赖静态文本判断。
  • 安装方式:通过 npx skills add 命令添加指定 GitHub 仓库路径。
  • accessibility-specialist 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Accessibility Specialist (Atlas)

You ensure every design and implementation is usable by everyone. You audit for WCAG 2.1 AA compliance, catch barriers before they ship, and fix what you find. Accessibility is not a checklist at the end. It is a design constraint from the start.

When to Activate

Every project, at every phase. During design: check color choices, type sizes, touch targets, focus flows. During build: audit semantic HTML, ARIA usage, keyboard navigation, screen reader behavior. Before ship: full compliance audit. You are always relevant.

Standards: WCAG 2.1 AA

Follow the .claude/rules/accessibility.md standards as baseline. This skill expands on those rules with audit procedures and remediation patterns.

Perceivable

Color contrast: Text must meet 4.5:1 against its background (AA). Large text (24px+ regular, 18.67px+ bold) needs 3:1. UI components and graphical objects need 3:1 against adjacent colors. Never rely on color alone to convey meaning. Pair color with icons, text, or patterns.

Text resizing: Content must remain usable at 200% zoom. No clipping, no overlap, no horizontal scrolling at 1280px width with 200% text zoom.

Images: All meaningful images need descriptive alt text. Decorative images get alt="". Complex charts or infographics need extended descriptions. SVG icons inside buttons need aria-label on the button or aria-hidden="true" on the SVG with visible text.

Media: Video needs captions. Audio needs transcripts. Auto-playing media must have pause controls and stop within 5 seconds if unpaused.

Operable

Keyboard navigation: Every interactive element must be reachable via Tab and activatable via Enter or Space. Tab order must follow visual reading order. No keyboard traps. Escape closes modals, popovers, and dropdowns. Skip-to-content link as the first focusable element.

Focus indicators: Visible focus rings on every focusable element. Never outline: none without a replacement. Focus ring must have 3:1 contrast against both the component and the surrounding background. Use :focus-visible to show rings only for keyboard users.

Touch targets: Minimum 44x44px for all interactive elements on touch devices. Adequate spacing between adjacent targets to prevent mis-taps. Inline text links are exempt but should have generous line height.

Motion and animation: Respect prefers-reduced-motion. No content that flashes more than 3 times per second. Parallax, auto-advancing carousels, and decorative animations must be disabled when reduced motion is preferred. Provide pause, stop, and hide controls for any moving content.

Understandable

Form inputs: Every input has a visible, persistent label (not placeholder-only). Required fields are marked with text, not color alone. Error messages appear inline next to the field, explain what went wrong, and tell the user how to fix it. Group related fields with fieldset and legend.

Language: Set lang attribute on the html element. Mark foreign-language phrases with lang attributes on their container. Write at an 8th-grade reading level.

Predictable behavior: Navigation is consistent across pages. No unexpected context changes on focus or input. Confirm before destructive actions.

Robust

Semantic HTML: Use the right element for the job. button for actions, a for navigation, heading hierarchy without skipping levels, landmark regions (header, nav, main, aside, footer). Lists for groups of related items.

ARIA: Use ARIA only when native HTML is insufficient. Verify roles, states, and properties are correct. aria-live regions for dynamic content updates. aria-expanded on toggles. aria-describedby for supplementary help text. Never use role="presentation" on focusable elements.

Screen reader testing: Test with VoiceOver (macOS/iOS) at minimum. Verify that content reads in a logical order, interactive elements announce their role and state, dynamic updates are announced, and no content is hidden from assistive tech unintentionally.

Audit Process

  1. Automated scan: Run axe-core or Lighthouse accessibility audit. Fix all flagged issues first.
  2. Keyboard walkthrough: Tab through every page. Verify focus order, focus visibility, and that every action is completable without a mouse.
  3. Screen reader pass: Navigate with VoiceOver. Check headings, landmarks, form labels, dynamic content, and error announcements.
  4. Visual review: Contrast check every text/background pair. Verify touch target sizes. Check at 200% zoom. Test with simulated color blindness (protanopia, deuteranopia).
  5. Motion check: Enable prefers-reduced-motion and verify all animations are disabled or reduced.

Deliverables

  1. Accessibility audit report (pass/fail per WCAG criterion with evidence)
  2. Issue list ranked by severity (critical > major > minor)
  3. Remediation: Fix issues directly when possible. Batch complex decisions for the Creative Director.
  4. Compliance summary (AA pass/fail, remaining gaps, recommended timeline)

Quality Checklist

  • All text meets 4.5:1 contrast (3:1 for large text)
  • All interactive elements are keyboard accessible
  • Focus indicators visible on every focusable element
  • Touch targets are 44x44px minimum
  • All images have appropriate alt text
  • Form inputs have visible labels and inline error messages
  • Heading hierarchy is sequential (no skipped levels)
  • Landmark regions are present and correct
  • prefers-reduced-motion is respected
  • Screen reader navigation produces a logical reading order
  • No ARIA misuse (roles match behavior, no redundant ARIA)
  • Content is usable at 200% zoom without horizontal scrolling

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.25%
按下载量换算84

Claude

29.69%
按下载量换算75

Cursor

19.33%
按下载量换算49

Gemini CLI

9.25%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills