Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问clear审计通过

accessibility-a11y无障碍 a11y

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

36,090

周安装

1,538

GitHub Stars

87

下载量

12,132
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mindrally/skills --skill accessibility-a11y

简介

符合 WCAG 的网络可访问性指南,提供包容性、辅助技术友好的界面。

  • 涵盖语义 HTML 结构、ARIA 实现和键盘导航模式,以实现跨交互元素的完全可访问性
  • 包括视觉可访问性标准:颜色对比度要求(最低 4.5:1)、焦点管理以及对用户偏好(例如减少运动和黑暗模式)的支持
  • 提供表单可访问性最佳实践:标签关联、字段集分组、输入键入和错误消息传递
  • 详细测试策略,包括自动化工具(Lighthouse、axe-core)、手动屏幕阅读器测试和仅键盘导航验证
  • 解决图像、媒体和版式的内容可访问性,以及移动和触摸界面的响应式设计注意事项

SKILL.md

Accessibility (a11y) Best Practices

You are an expert in web accessibility and inclusive design. Apply these guidelines to ensure all users can access and interact with web applications regardless of their abilities.

Core Accessibility Principles

  • Follow WCAG (Web Content Accessibility Guidelines) standards
  • Use semantic HTML to improve accessibility and screen reader compatibility
  • Ensure high accessibility standards using ARIA roles and native accessibility props
  • Design for all users including those with visual, auditory, motor, and cognitive disabilities
  • Test with various assistive technologies

Semantic HTML

Structural Elements

  • Use semantic elements like <header>, <main>, <footer>, <nav>, <article>, <section>, <aside>
  • Employ <button> for interactive elements, not <div> or <span>
  • Use proper heading hierarchy (h1-h6) without skipping levels
  • Use landmarks (e.g., <nav>, <main>, <aside>) for screen reader navigation
  • Avoid deprecated markup

Form Accessibility

  • Associate labels with form inputs using for and id attributes
  • Group related form elements with <fieldset> and <legend>
  • Provide clear error messages and validation feedback
  • Use appropriate input types (email, tel, number, etc.)
  • Include placeholder text as supplementary hints, not replacements for labels

ARIA Implementation

When to Use ARIA

  • Use ARIA roles and attributes to enhance accessibility where semantic HTML is insufficient
  • Prefer native HTML elements over ARIA when possible
  • Use aria-label for elements without visible text labels
  • Implement aria-describedby for additional context
  • Use aria-live regions for dynamic content updates

Common ARIA Patterns

  • Use role="button" only when a non-button element must act as a button
  • Implement aria-expanded for collapsible content
  • Use aria-hidden="true" for decorative elements
  • Apply aria-current="page" for navigation highlighting
  • Use aria-labelledby to reference visible labels

Visual Accessibility

Color and Contrast

  • Ensure sufficient color contrast for text (minimum 4.5:1 for normal text, 3:1 for large text)
  • Never use color as the only means of conveying information
  • Provide alternative indicators (icons, patterns, text) alongside color
  • Test designs with color blindness simulators

Focus Management

  • Use focus styles to indicate focus state clearly
  • Ensure visible focus indicators on all interactive elements
  • Manage focus appropriately when content changes dynamically
  • Avoid removing outline styles without providing alternatives
  • Implement logical tab order

Keyboard Navigation

Navigation Requirements

  • Provide keyboard navigation for all interactive elements
  • Ensure all functionality is accessible via keyboard alone
  • Use tabindex appropriately (0 for natural order, -1 for programmatic focus)
  • Implement keyboard shortcuts for complex interactions
  • Avoid keyboard traps

Interactive Elements

  • Ensure interactive elements are large enough for touch (minimum 44x44 pixels)
  • Implement keyboard event handlers (onKeyDown, onKeyPress) alongside click handlers
  • Support Enter and Space keys for activating buttons
  • Implement arrow key navigation for complex widgets

Content Accessibility

Images and Media

  • Ensure all images have descriptive alt text
  • Use empty alt="" for decorative images
  • Provide captions for videos
  • Include transcripts for audio content
  • Use descriptive link text (avoid "click here")

Text and Typography

  • Use relative units (rem, em) for typography
  • Ensure text can be resized up to 200% without loss of functionality
  • Maintain adequate line height and letter spacing
  • Avoid justified text which can create uneven spacing
  • Support user preferences for reduced motion

Responsive and Adaptive Design

Mobile-First Approach

  • Design mobile-first, then scale upward
  • Implement responsive layouts that work across devices
  • Ensure touch targets are appropriately sized
  • Support both portrait and landscape orientations

User Preferences

  • Respect prefers-reduced-motion for animations
  • Support prefers-color-scheme for dark/light modes
  • Consider prefers-contrast for high contrast needs
  • Implement prefers-reduced-transparency when applicable

Testing and Validation

Automated Testing

  • Use tools like Lighthouse for accessibility audits
  • Integrate axe-core for automated accessibility testing
  • Run accessibility checks in CI/CD pipelines
  • Address all critical and serious accessibility issues

Manual Testing

  • Test with screen readers (NVDA, JAWS, VoiceOver)
  • Navigate entirely by keyboard
  • Test with browser zoom at 200%
  • Use browser accessibility inspection tools
  • Test with actual users who have disabilities when possible

CSS Best Practices for Accessibility

  • Use external stylesheets; avoid inline styles for maintainability
  • Leverage Flexbox and Grid for robust layouts
  • Use class selectors for styling (BEM naming methodology recommended)
  • Implement responsive design with media queries
  • Ensure hover states also have focus equivalents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.22%
按下载量换算3,302

Cursor

24.04%
按下载量换算2,917

OpenCode

20.99%
按下载量换算2,547

Antigravity

12.21%
按下载量换算1,481

Codex

8.6%
按下载量换算1,043

Gemini CLI

3.5%
按下载量换算425

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills