agentsclimarketplace

Accessibility test runner

Skill a5c-ai/babysitter/library/specializations/desktop-development/skills/accessibility-test-runner

Babysitter enforces obedience on agentic workforces and enables them to manage extremely complex tasks and workflows through deterministic, hallucination-free self-orchestration

Install
npx -y skills add a5c-ai/babysitter --skill accessibility-test-runner

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

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

SKILL.md

1.8 KB, as published. Nobody here has run it

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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.