Agent Skills: accessibility-test-runner

Run accessibility audits with axe-core and screen reader testing for desktop applications

UncategorizedID: a5c-ai/babysitter/accessibility-test-runner

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/plugins/babysitter/skills/babysit/process/specializations/desktop-development/skills/accessibility-test-runner

Skill Files

Browse the full folder contents for accessibility-test-runner.

Download Skill

Loading file tree…

plugins/babysitter/skills/babysit/process/specializations/desktop-development/skills/accessibility-test-runner/SKILL.md

Skill Metadata

Name
accessibility-test-runner
Description
Run accessibility audits with axe-core and screen reader testing for desktop applications

accessibility-test-runner

Run accessibility audits for desktop applications using axe-core and configure screen reader testing.

Capabilities

  • Integrate axe-core for automated audits
  • Configure WCAG compliance levels
  • Test keyboard navigation
  • Set up screen reader testing
  • Generate accessibility reports
  • Configure CI/CD integration

Input Schema

{
  "type": "object",
  "properties": {
    "projectPath": { "type": "string" },
    "wcagLevel": { "enum": ["A", "AA", "AAA"] },
    "testFramework": { "enum": ["playwright", "cypress", "jest"] }
  },
  "required": ["projectPath"]
}

Playwright + axe-core

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

test('accessibility audit', async ({ page }) => {
  await page.goto('/');

  const accessibilityScanResults = await new AxeBuilder({ page })
    .withTags(['wcag2a', 'wcag2aa'])
    .analyze();

  expect(accessibilityScanResults.violations).toEqual([]);
});

Screen Reader Testing

Configure NVDA (Windows), VoiceOver (macOS), or Orca (Linux) testing workflows.

Related Skills

  • qt-widget-accessibility-audit
  • desktop-accessibility process