accessibility

accessibility is a cursor rule for Cursor from GoranErhartic/cursor-development-rules. It costs 20 tokens per session (887 once invoked), scanned A, original, MIT.

Guidance for making web interfaces usable with keyboards, screen readers, and other assistive technologies.

In plain words
What is it for?
Use it when building buttons, navigation, forms, dialogs, focus behavior, and other interactive web components.
Why use it?
It helps prevent inaccessible controls, confusing page structure, keyboard traps, and missing announcements for users who cannot use the interface in the usual way.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/goranerhartic/cursor-development-rules/accessibility
Clone the repo
git clone --depth 1 https://github.com/GoranErhartic/cursor-development-rules

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for accessibility

README.md
[![agentmods](https://agentmods.dev/badge/rules/goranerhartic/cursor-development-rules/accessibility.svg)](https://agentmods.dev/rules/goranerhartic/cursor-development-rules/accessibility)
Your own site
<a href="https://agentmods.dev/rules/goranerhartic/cursor-development-rules/accessibility"><img src="https://agentmods.dev/badge/rules/goranerhartic/cursor-development-rules/accessibility.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 887 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00020 $0.00887
Opus 5 $0.00010 $0.00443
Sonnet 5 $0.00004 $0.00177
Haiku 4.5 $0.00002 $0.00089

Measured yesterday against content hash 7e52017ecda5, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

accessibility scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/languages/react/accessibility.mdc · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Accessibility (a11y)

Principles (WCAG 2.1)

  • Perceivable - Present information in ways users can perceive
  • Operable - UI must be operable by all (keyboard, no traps)
  • Understandable - Information and operation must be understandable
  • Robust - Content must work with assistive technologies

Semantic HTML

  • Use <button> for actions, <a href> for navigation — not <div onClick>
  • Use <nav>, <main>, <article>, <section>, <aside>, <footer> for structure
  • Headings: one <h1> per page; do not skip levels (h1 → h4)
// GOOD
<button onClick={handleClick}>Click me</button>
<nav aria-label="Main"><ul><li><a href="/home">Home</a></li></ul></nav>

// BAD
<div onClick={handleClick}>Click me</div>

ARIA Essentials

  • Landmarks: role="navigation", aria-label="Main navigation" on nav; role="main" on main content
  • Icon buttons: aria-label="Close" (no visible text) or aria-label="Delete user" with icon + aria-hidden="true" on icon
  • States: aria-pressed, aria-expanded, aria-controls="id", aria-invalid={!!error}
  • Live regions: role="status" aria-live="polite" for updates; role="alert" aria-live="assertive" for errors
  • Decorative images: alt="" or role="presentation"

Focus and Keyboard

  • Dialogs: Focus first focusable element on open; restore focus on close; handle Escape to close
  • Focus trap: In modals, Tab cycles within modal only (custom hook or library)
  • Skip link: <a href="#main-content" className="sr-only focus:not-sr-only ...">Skip to main content</a>; give main id="main-content" tabIndex={-1}
  • Custom controls: If not <button>/<a>, add role="button", tabIndex={0}, and onKeyDown for Enter/Space

Forms

  • Every input: <label htmlFor="id"> or aria-label; link with id on input
  • Validation: aria-invalid={!!errors.field}, aria-describedby={errors.field ? 'error-id' : undefined}; error message in <span id="error-id" role="alert">
  • Required: required + aria-required="true"; indicate in label (e.g. asterisk with aria-label="required")

Read the full file on GitHub · 70 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 70 lines · 20 tokens per session scan A 7e52017ecda5

Subscribe to this mod's changes

accessibility is a cursor rule published in the GitHub repository GoranErhartic/cursor-development-rules (19 stars, last pushed 6mo ago), licensed MIT. It adds 20 tokens to every session and 887 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.