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

web-accessibility网络可访问性

Agent Skill

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

总安装

696

周安装

29

GitHub Stars

11

下载量

232
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/skills-template --skill web-accessibility

简介

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

  • 适合检查语义标签、键盘操作、颜色对比、ARIA 属性和自动化检测结果。
  • 使用时需结合真实页面和浏览器验证,不应只依赖静态文本判断。
  • 涉及修复建议时应兼顾设计系统、组件复用和 WCAG 等通用无障碍规范。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写操作。

SKILL.md

Web Accessibility

Use this skill when the job is to name the failing accessibility surface, fix it at the right layer, and leave behind a short remediation + verification packet.

The job is not to dump generic WCAG prose, paste raw scanner output, or absorb every neighboring frontend concern.

This skill should:

  1. classify the failing accessibility surface,
  2. separate automated findings from manual or assistive-technology follow-up,
  3. choose the smallest credible remediation packet,
  4. keep routed-app feedback and focus behavior explicit,
  5. route broader design/layout/component-governance work honestly.

Read these support docs first:

When to use this skill

  • A team says “make this accessible” and the missing accessibility surface is still unclear
  • axe, Lighthouse, Accessibility Insights, Pa11y, QA notes, or user reports need to be turned into one remediation plan instead of a raw finding dump
  • You need to decide whether the main issue is semantics, keyboard/focus, labels/announcements, reflow/contrast/motion, media alternatives, or routed-app navigation feedback
  • A modal, form, nav, menu, table, dashboard, or routed flow needs manual-vs-automated verification guidance before release
  • Screen-reader, keyboard-only, or zoom/reflow issues are suspected, but ownership and next checks are unclear

When not to use this skill

  • The main task is broad UI polish, heuristic review, hierarchy, or interface consistencyweb-design-guidelines
  • The main task is reusable primitive / slot / variant API design or component-family ownershipui-component-patterns
  • The main task is viewport adaptation, breakpoint strategy, container-query planning, or layout overflow controlresponsive-design
  • The main task is token governance, contribution rules, or system-wide frontend standardsdesign-system
  • The task is only to run one tool and paste raw results; run the tool directly, then return here to prioritize remediation and manual follow-up

Instructions

Step 1: Frame the accessibility job before naming fixes

Capture the minimum packet first.

accessibility_intake:
  surface: page | routed-flow | modal | form | nav | menu | table | dashboard | component-family | mixed | unknown
  workflow_type: audit-review | remediation-pass | release-readiness | regression-follow-up | user-reported-bug | design-system-follow-up
  signal_source: axe | lighthouse | accessibility-insights | pa11y | manual-qa | screen-reader-report | user-feedback | mixed | unknown
  primary_surface: semantics | keyboard-focus | labels-announcements | visual-perception-reflow | media-alternatives | routed-navigation-feedback | mixed | unknown
  severity: blocker | major | medium | low | unknown
  ownership: app-team | frontend-platform | design-system | qa-accessibility | shared | unknown

Rule: do not start with “add ARIA,” “run axe again,” or “quote WCAG 2.1.” First label the failing accessibility surface.

Step 2: Choose exactly one primary remediation packet

Use the router in references/intake-packets-and-route-outs.md.

Primary packets:

  1. semantics-structure
  2. keyboard-focus
  3. labels-announcements
  4. visual-perception-reflow
  5. media-alternatives
  6. routed-navigation-feedback

Pick the highest-risk user-facing failure as primary. List everything else as follow-up, not as equal co-owners.

Step 3: Keep the invariants visible

These rules survive every answer:

  • automated tools accelerate discovery, but they do not prove accessibility completeness
  • native HTML semantics beat ARIA patching when native controls already solve the problem
  • keyboard/focus failures in interactive flows usually outrank cosmetic cleanups
  • routed apps need explicit focus and announcement decisions because browser navigation cues disappear
  • labels, instructions, errors, and async status text are part of task completion, not polish
  • every remediation recommendation needs a matching manual verification step

Step 4: Build the accessibility remediation packet

Return this structure:

# Accessibility Remediation Packet

## Scope
- Surface:
- Workflow type:
- Primary packet:
- Confidence: high | medium | low

## Current signal
- Tool or report source:
- What is already known:
- What still needs direct verification:

## Highest-risk gaps
1. ...
2. ...
3. ...

## Recommended first slice
1. ...
2. ...
3. ...

## Verification plan
- Automated re-check:
- Manual keyboard / focus:
- Manual screen-reader / AT:
- Visual / zoom / motion / reflow:

## Ownership and route-outs
- Primary owner:
- Adjacent skills / teams:

Step 5: Use the packet, not a giant checklist

Pull the packet from references/intake-packets-and-route-outs.md.

Packet rules:

  • semantics-structure → landmarks, headings, lists, tables, buttons/links, form markup, native-first fixes
  • keyboard-focus → tab order, visible focus, trap/escape behavior, initial focus, focus return, composite widget behavior
  • labels-announcements → accessible names, helper/error relationships, live regions, status/error messaging, required-state clarity
  • visual-perception-reflow → contrast, reduced motion, zoom, reflow, target visibility, state visibility
  • media-alternatives → alt text, decorative-vs-informative imagery, captions, transcripts, fallback descriptions
  • routed-navigation-feedback → page title / heading announcement, route-change focus strategy, SPA/app-router cues, async load state announcements

Step 6: Separate automated findings from manual proof

Use this split in every serious answer:

  • Automated-friendly — missing labels, duplicate IDs, invalid ARIA, simple contrast failures, landmark/heading gaps
  • Manual keyboard/focus — tab sequence, visible focus, trap behavior, initial focus, focus return, menu/listbox/dialog interaction
  • Manual AT / content quality — announcement usefulness, alt-text quality, label clarity, route-change comprehension, async feedback quality

If the request starts from a scanner, say explicitly that the scanner is the input artifact, not the finished answer.

Step 7: Route adjacent work explicitly

Use these route-outs when the problem crosses boundaries:

If the real job is...Route to...
broad UI/design review, hierarchy, polish, or guideline complianceweb-design-guidelines
reusable component API / primitive ownership / slot-variant designui-component-patterns
viewport/container layout strategy or breakpoint planningresponsive-design
token governance or system-wide frontend standardsdesign-system
React/Next performance or hydration behaviorreact-best-practices

Output expectations

A strong answer from this skill should:

  1. identify the primary failing accessibility surface,
  2. recommend one bounded remediation packet,
  3. name the manual verification still required,
  4. avoid equating a scanner pass with completion,
  5. route broader frontend ownership questions outward instead of absorbing them.

Examples

Example 1: modal audit after axe

Input

Audit this checkout modal for accessibility issues and tell me what to test manually after axe.

Output direction

  • choose keyboard-focus or labels-announcements
  • treat axe as the input artifact, not the whole workflow
  • verify initial focus, trap behavior, focus return, and announcement quality
  • keep broader visual-polish critique out unless it materially affects accessibility

Example 2: routed app navigation confusion

Input

Screen-reader users say our React app changes routes but the new page is not announced and focus stays on the old nav link.

Output direction

  • choose routed-navigation-feedback
  • classify title/heading announcement plus focus-reset strategy
  • include manual AT verification after the fix
  • avoid turning the task into generic routing architecture work

Example 3: component-boundary confusion

Input

Our button primitive API is messy and some variants are not accessible. Is this web-accessibility or ui-component-patterns?

Output direction

  • keep accessible-name, focus-state, and disabled/loading announcement fixes in web-accessibility
  • route primitive API / variant ownership to ui-component-patterns
  • split the plan instead of forcing one skill to own everything

Example 4: manual checks after Lighthouse

Input

Lighthouse says contrast is okay now. What should I still test manually?

Output direction

  • treat this as verification planning, not score celebration
  • verify keyboard order, focus visibility, routed-flow cues, and screen-reader announcement quality where relevant
  • include zoom/reflow and reduced-motion checks when the interface depends on them

Best practices

  1. Start with the user task and failing surface, not the rule number.
  2. Treat automated tools as accelerators, not as proof of accessibility completeness.
  3. Prefer native HTML semantics before ARIA-heavy patches.
  4. Keep focus behavior intentional for overlays, route changes, and async validation.
  5. Separate remediation packets from broader design-review or component-architecture work.
  6. When unsure, name the manual verification still required instead of pretending the scan is enough.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.1%
按下载量换算79

Claude

29.44%
按下载量换算68

Cursor

17.63%
按下载量换算41

Gemini CLI

9.93%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills