QualityC#

Accessibility Testing

by vibeeval

Accessibility Testing is a Quality skill for Claude Code, published by vibeeval in vibecosystem.

528 stars44 forkson vibeeval/vibecosystemAdded 2026/08/26Repository updated 2026/08/08
ai-agentsai-software-teamanthropicautomationclaudeclaude-codeclaude-skillsdeveloper-toolsdevtoolshooksmulti-agentopen-sourceself-learningvibe-codingvibecoding
Install in seconds
Install Accessibility Testing
Copy Accessibility Testing into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/vibeeval/vibecosystem/tree/main/skills/accessibility-testing ~/.claude/skills/accessibility-testing

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/vibeeval/vibecosystem.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/accessibility-testing/SKILL.md in vibeeval/vibecosystem
Installs to
~/.claude/skills/accessibility-testing
Collection
One of 25 skills cataloged from this repository
Category
Quality1354 skills

What Accessibility Testing does

Accessibility Testing adds axe-core checks, WCAG 2.2 AA checklists, keyboard navigation tests, screen reader patterns, and ARIA validation for web apps. Use it to verify components and end-to-end flows meet common accessibility requirements.

Accessibility Testing is cataloged under Quality on DirSkills. Accessibility Testing comes from a repository tagged ai-agents, ai-software-team, anthropic, automation and claude.

Documentation

README

Accessibility Testing

axe-core Setup

jest-axe (unit / component tests)

import { axe, toHaveNoViolations } from 'jest-axe'
import { render } from '@testing-library/react'
expect.extend(toHaveNoViolations)

test('LoginForm has no a11y violations', async () => {
  const { container } = render(<LoginForm />)
  const results = await axe(container)
  expect(results).toHaveNoViolations()
})

playwright-axe (e2e)

import { test, expect } from '@playwright/test'
import AxeBuilder from '@axe-core/playwright'

test('homepage passes axe audit', async ({ page }) => {
  await page.goto('/')
  const results = await new AxeBuilder({ page })
    .withTags(['wcag2a', 'wcag2aa', 'wcag21aa'])
    .analyze()
  expect(results.violations).toEqual([])
})

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Accessibility Testing

  • What else does vibeeval publish alongside Accessibility Testing?

    Accessibility Testing is one of 25 skills that DirSkills catalogs from vibeeval/vibecosystem, the repository it ships in. Its siblings there include AI Slop Cleaner, API Patterns and API Versioning Patterns. Each one is a separate skill with its own page in this directory, installs the same way Accessibility Testing does, and is maintained by vibeeval in that same repository. The rest of the collection is listed on the vibeeval/vibecosystem page.

  • How does Accessibility Testing compare to other Quality skills?

    Accessibility Testing ranks #1193 by stars among the 1354 Quality skills in this catalog. The most-starred ones next to it are Benchmark, Benchmark Optimization Loop and API Design Patterns. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Accessibility Testing against them. Open each page to compare what they document and how they install.

More from vibeeval/vibecosystem

Accessibility Testing is one of 25 skills cataloged on DirSkills from vibeeval/vibecosystem.

See all 25 skills