agentsclimarketplace

Website accessibility

Skill paulgrape/skill-auditor/templates/website-accessibility

Audit Agent Skills against repo reality — score alignment, detect drift, fill gaps

Install
npx -y skills add paulgrape/skill-auditor --skill website-accessibility

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

2 things to look at

  • 26 days oldThe repository was created 26 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

WCAG-aligned accessibility rules for a website — image alt text, form labels, keyboard navigation, visible focus, skip links, semantic landmarks, accessible errors, reduced motion, and captions. Use when auditing or building accessible UI, forms, navigation, or media.

SKILL.md

2.0 KB, as published. Nobody here has run it

Website accessibility

WCAG-aligned rules so people of all abilities can use the site. Curated from the Website Specification — Accessibility (CC BY 4.0).

Required

  • Sufficient colour contrast for text and meaningful non-text elements.
  • Every <img> has an alt attribute describing its purpose (empty alt="" for decorative).
  • Every form control has a programmatically associated <label>. A placeholder is not a label.
  • Every interactive element is keyboard-reachable and operable, in logical order, with no focus traps.
  • Visible, high-contrast focus indicator whenever a control receives keyboard focus.
  • A "skip to main content" link as the first focusable element.
  • Use semantic HTML and landmarks: <header>, <nav>, <main>, <footer>.
  • Descriptive link text — never "click here" or "read more" alone.
  • Form errors identified in text, associated with their input, and announced to assistive tech.
  • Set <html lang> and mark inline foreign-language content with its own lang.
  • Respect prefers-reduced-motion for animation, parallax, and autoplay.
  • Captions for video, transcripts for audio, real <table> markup for tabular data.
  • Touch targets at least 24x24 CSS px (44x44 enhanced).

Avoid

  • Empty links/buttons with no accessible name (icon-only controls without a label).
  • Third-party "accessibility overlay" widgets.

Example

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

Full item list and rationale: https://specification.website/checklist/

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.