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.
npx agentmods add rules/goranerhartic/cursor-development-rules/accessibilitygit clone --depth 1 https://github.com/GoranErhartic/cursor-development-rulesWrote 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.
[](https://agentmods.dev/rules/goranerhartic/cursor-development-rules/accessibility)<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>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.
| Model | Per session | Once 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 |
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.
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) oraria-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=""orrole="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 mainid="main-content" tabIndex={-1} - Custom controls: If not
<button>/<a>, addrole="button",tabIndex={0}, andonKeyDownfor Enter/Space
Forms
- Every input:
<label htmlFor="id">oraria-label; link withidon 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 witharia-label="required")
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.
- yesterday First seen · 70 lines · 20 tokens per session scan A 7e52017ecda5
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.
Other cursor rules, from other repositories
prototype-previewer
Build interactive prototype reviewers with synced review notes and Figma capture pages.
figma-performance
Handling large documents efficiently in the Plugin API.
ant-design
本规范为在 React 应用程序中使用 Ant Design (antd) UI 库的项目制定最佳实践和编码标准。涵盖代码组织、性能、安全、测试和常见陷阱,确保应用程序的可维护性和高效性。.
7-day-nextjs-web-design-cursor
A seven-day design workflow for web products that will be built in Next.js.
clone-ai
Site Clone AI — website klonlama pipeline kuralları.
mermaid
Diagram Creator. Load when the user requests "Create a diagram".