AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Ui Accessibility

skill-caraya-agent-skills-ui-accessibility · by caraya

Use for any UI work across TypeScript, JavaScript, Python, Go, Rust, or other stacks that render user interfaces. Enforces WCAG 2.1 AA using the repository checklist in references/accessibility-checklist.md. Trigger phrases: accessibility, WCAG, aria, keyboard navigation, screen reader, contrast, focus, alt text, semantic HTML, inclusive design.

— No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-caraya-agent-skills-ui-accessibility

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-caraya-agent-skills-ui-accessibility)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Ui Accessibility? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

UI Accessibility

Overview

Ensure all UI implementations meet WCAG 2.1 AA requirements using the canonical checklist in references/accessibility-checklist.md.

This skill is framework-agnostic and language-agnostic. Use it for any project that renders UI, regardless of whether the stack is TypeScript, JavaScript, Python, Go, Rust, or another language.

Source of Truth

  • Primary checklist: references/accessibility-checklist.md
  • Treat that file as authoritative for required checks and anti-patterns.

Use When

  • Building or modifying UI components, pages, forms, dialogs, navigation, or tables.
  • Performing review or QA on existing UI.
  • Shipping any feature with user-facing interface changes.

Required WCAG Coverage

Run through all categories from references/accessibility-checklist.md:

  1. Keyboard navigation
  • Tab focusability, logical focus order, visible focus states
  • Keyboard support for custom widgets
  • No keyboard traps, skip link, modal focus trapping and focus return
  1. Screen reader support
  • alt text, labels, descriptive button/link text
  • Heading hierarchy, dynamic announcements (aria-live), table headers
  1. Visual accessibility
  • Contrast thresholds (text and UI component contrast)
  • No color-only communication
  • 200% text resize support
  • No flashing content above allowed thresholds
  1. Forms
  • Visible labels and required indicators
  • Field-associated error messaging
  • Error states not conveyed by color alone
  • Focusable error summary on submission failures
  1. Content and interaction
  • Document language and descriptive title
  • Link distinguishability
  • Touch target size (44x44px minimum on mobile)
  • Meaningful empty states

Implementation Rules

  1. Prefer semantic HTML (button, a, input, label, select) before ARIA workarounds.
  2. If a non-semantic element is made interactive, it must include role, focusability, and keyboard handlers.
  3. Never remove focus outlines without replacing them with an accessible visible focus style.
  4. Do not rely on color alone to convey errors, status, or state.
  5. Ensure dynamic updates are announced with appropriate live regions.
  6. Keep keyboard and screen-reader behavior equivalent to pointer behavior.

Testing Guidance

Use both automated and manual testing:

  • Automated: axe-core, pa11y, Lighthouse accessibility checks
  • Manual: keyboard-only navigation, screen reader smoke test (VoiceOver/NVDA/Orca), zoom to 200%

Project setup and devDependencies

When scaffolding a frontend project, include accessibility tooling as devDependencies so checks are reproducible and runnable in CI. Example template is available at templates/frontend/package.json.

Install locally:

npm install --save-dev @axe-core/cli pa11y pa11y-ci

Add these scripts to package.json (the template includes them):

{
    "scripts": {
        "a11y:axe": "npx @axe-core/cli http://localhost:3000/route --save axe-report.json",
        "a11y:pa11y": "npx pa11y http://localhost:3000/route --reporter html > pa11y-report.html",
        "a11y:run": "npm run a11y:axe && npm run a11y:pa11y"
    }
}

CI example (GitHub Actions)

Run accessibility checks in CI and upload artifacts so the agent can attach them to its report.

- name: Install dependencies
    run: npm ci

- name: Start dev server
    run: npm start &

- name: Run accessibility checks
    run: npm run a11y:run

- name: Upload accessibility reports
    uses: actions/upload-artifact@v4
    with:
        name: a11y-reports
        path: |
            axe-report.json
            pa11y-report.html

Agents will expect artifacts named axe-report.json and pa11y-report.html (and manual-checks.md for human notes) when performing the final accessibility gating.

Output Requirements

For each accessibility review or implementation pass, provide:

  • Scope — Components/pages evaluated.
  • Checklist status — Pass/fail per checklist section (Keyboard, Screen readers, Visual, Forms, Content).
  • Findings — Critical, Important, Suggestions with evidence.
  • Fixes — Minimal code changes or concrete remediation steps.
  • Validation — Which tools/tests were run and what remains unverified.

If any WCAG-critical issue remains unresolved, explicitly mark release risk.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.