web-accessibility — community web-accessibility, rezumerai, community, ide skills

v1.0.0

About this Skill

Ideal for Frontend Agents requiring WCAG 2.1 compliance and ARIA pattern implementation for accessible web applications. Build accessible web applications following WCAG guidelines. Use when implementing ARIA patterns, keyboard navigation, screen reader support, or ensuring accessibility compliance. Triggers on accessib

zomeru zomeru
[0]
[0]
Updated: 3/3/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Locale and body language aligned
Review Score
7/11
Quality Score
39
Canonical Locale
en
Detected Body Locale
en

Ideal for Frontend Agents requiring WCAG 2.1 compliance and ARIA pattern implementation for accessible web applications. Build accessible web applications following WCAG guidelines. Use when implementing ARIA patterns, keyboard navigation, screen reader support, or ensuring accessibility compliance. Triggers on accessib

Core Value

Empowers agents to build inclusive web interfaces using ARIA attributes, such as aria-pressed and aria-disabled, and following WCAG 2.1 guidelines for modal dialogs and button elements, ensuring seamless interactions for users with disabilities.

Ideal Agent Persona

Ideal for Frontend Agents requiring WCAG 2.1 compliance and ARIA pattern implementation for accessible web applications.

Capabilities Granted for web-accessibility

Implementing ARIA patterns for modal dialogs and buttons
Validating web application accessibility against WCAG 2.1 guidelines
Generating accessible HTML elements with aria attributes

! Prerequisites & Limits

  • Requires knowledge of HTML, CSS, and JavaScript
  • Limited to web applications using ARIA patterns and WCAG 2.1 guidelines

Why this page is reference-only

  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is web-accessibility?

Ideal for Frontend Agents requiring WCAG 2.1 compliance and ARIA pattern implementation for accessible web applications. Build accessible web applications following WCAG guidelines. Use when implementing ARIA patterns, keyboard navigation, screen reader support, or ensuring accessibility compliance. Triggers on accessib

How do I install web-accessibility?

Run the command: npx killer-skills add zomeru/rezumerai/web-accessibility. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for web-accessibility?

Key use cases include: Implementing ARIA patterns for modal dialogs and buttons, Validating web application accessibility against WCAG 2.1 guidelines, Generating accessible HTML elements with aria attributes.

Which IDEs are compatible with web-accessibility?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for web-accessibility?

Requires knowledge of HTML, CSS, and JavaScript. Limited to web applications using ARIA patterns and WCAG 2.1 guidelines.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add zomeru/rezumerai/web-accessibility. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use web-accessibility immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

web-accessibility

Install web-accessibility, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Web Accessibility (WCAG 2.1)

Build accessible web applications that work for everyone.

ARIA Patterns

Button

tsx
1<button 2 type="button" 3 aria-pressed={isPressed} 4 aria-disabled={isDisabled} 5 onClick={handleClick} 6> 7 Toggle Feature 8</button>
tsx
1<div 2 role="dialog" 3 aria-modal="true" 4 aria-labelledby="modal-title" 5 aria-describedby="modal-description" 6> 7 <h2 id="modal-title">Confirm Action</h2> 8 <p id="modal-description">Are you sure you want to proceed?</p> 9 <button onClick={onConfirm}>Confirm</button> 10 <button onClick={onCancel}>Cancel</button> 11</div>
tsx
1<nav aria-label="Main navigation"> 2 <ul role="menubar"> 3 <li role="none"> 4 <a role="menuitem" href="/home">Home</a> 5 </li> 6 <li role="none"> 7 <button 8 role="menuitem" 9 aria-haspopup="true" 10 aria-expanded={isOpen} 11 > 12 Products 13 </button> 14 {isOpen && ( 15 <ul role="menu" aria-label="Products submenu"> 16 <li role="none"> 17 <a role="menuitem" href="/products/new">New</a> 18 </li> 19 </ul> 20 )} 21 </li> 22 </ul> 23</nav>

Keyboard Navigation

Focus Management

tsx
1import { useEffect, useRef } from 'react'; 2 3function Modal({ isOpen, onClose, children }) { 4 const modalRef = useRef<HTMLDivElement>(null); 5 const previousFocus = useRef<HTMLElement | null>(null); 6 7 useEffect(() => { 8 if (isOpen) { 9 previousFocus.current = document.activeElement as HTMLElement; 10 modalRef.current?.focus(); 11 } else { 12 previousFocus.current?.focus(); 13 } 14 }, [isOpen]); 15 16 // Trap focus within modal 17 const handleKeyDown = (e: React.KeyboardEvent) => { 18 if (e.key === 'Escape') { 19 onClose(); 20 } 21 22 if (e.key === 'Tab') { 23 const focusable = modalRef.current?.querySelectorAll( 24 'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])' 25 ); 26 27 if (focusable && focusable.length > 0) { 28 const first = focusable[0] as HTMLElement; 29 const last = focusable[focusable.length - 1] as HTMLElement; 30 31 if (e.shiftKey && document.activeElement === first) { 32 e.preventDefault(); 33 last.focus(); 34 } else if (!e.shiftKey && document.activeElement === last) { 35 e.preventDefault(); 36 first.focus(); 37 } 38 } 39 } 40 }; 41 42 if (!isOpen) return null; 43 44 return ( 45 <div 46 ref={modalRef} 47 role="dialog" 48 aria-modal="true" 49 tabIndex={-1} 50 onKeyDown={handleKeyDown} 51 > 52 {children} 53 </div> 54 ); 55}

Color Contrast

Minimum contrast ratios (WCAG AA):

  • Normal text: 4.5:1
  • Large text (18pt+): 3:1
  • UI components: 3:1
typescript
1function getContrastRatio(color1: string, color2: string): number { 2 const lum1 = getLuminance(color1); 3 const lum2 = getLuminance(color2); 4 const lighter = Math.max(lum1, lum2); 5 const darker = Math.min(lum1, lum2); 6 return (lighter + 0.05) / (darker + 0.05); 7} 8 9function getLuminance(hex: string): number { 10 const rgb = hexToRgb(hex); 11 const [r, g, b] = rgb.map((c) => { 12 c = c / 255; 13 return c <= 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4); 14 }); 15 return 0.2126 * r + 0.7152 * g + 0.0722 * b; 16}

Accessible Forms

tsx
1<form onSubmit={handleSubmit}> 2 <div> 3 <label htmlFor="email"> 4 Email address 5 <span aria-hidden="true">*</span> 6 <span className="sr-only">(required)</span> 7 </label> 8 <input 9 id="email" 10 type="email" 11 aria-required="true" 12 aria-invalid={errors.email ? 'true' : 'false'} 13 aria-describedby={errors.email ? 'email-error' : undefined} 14 /> 15 {errors.email && ( 16 <p id="email-error" role="alert" className="error"> 17 {errors.email} 18 </p> 19 )} 20 </div> 21 22 <button type="submit">Submit</button> 23</form>

Screen Reader Only Content

css
1.sr-only { 2 position: absolute; 3 width: 1px; 4 height: 1px; 5 padding: 0; 6 margin: -1px; 7 overflow: hidden; 8 clip: rect(0, 0, 0, 0); 9 white-space: nowrap; 10 border: 0; 11}

Testing

bash
1# Automated testing 2npm install -D axe-core @axe-core/react 3 4# In tests 5import { axe, toHaveNoViolations } from 'jest-axe'; 6expect.extend(toHaveNoViolations); 7 8test('component is accessible', async () => { 9 const { container } = render(<MyComponent />); 10 const results = await axe(container); 11 expect(results).toHaveNoViolations(); 12});

Resources

Related Skills

Looking for an alternative to web-accessibility or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer