agentsclimarketplace

Aria

Skill a5c-ai/babysitter/library/specializations/web-development/skills/aria

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 aria

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

WAI-ARIA implementation, roles, states, and properties.

SKILL.md

1.2 KB, as published. Nobody here has run it

ARIA Skill

Expert assistance for WAI-ARIA implementation.

Capabilities

  • Implement ARIA roles
  • Manage states and properties
  • Create accessible widgets
  • Handle live regions
  • Test with screen readers

Common Patterns

// Modal dialog
<div
  role="dialog"
  aria-modal="true"
  aria-labelledby="dialog-title"
  aria-describedby="dialog-desc"
>
  <h2 id="dialog-title">Title</h2>
  <p id="dialog-desc">Description</p>
</div>

// Live region
<div aria-live="polite" aria-atomic="true">
  {statusMessage}
</div>

// Tab panel
<div role="tablist">
  <button role="tab" aria-selected={selected} aria-controls="panel-1">
    Tab 1
  </button>
</div>
<div role="tabpanel" id="panel-1" aria-labelledby="tab-1">
  Content
</div>

Target Processes

  • aria-implementation
  • accessibility-improvement
  • screen-reader-support

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.