Accessibility deep patterns
Skill Dragoon0x/everything-design-taste/skills/accessibility-deep-patterns
A taste system for AI agents. 288 skills, 80 agents, 12 rules, and 8 hooks that turn generic AI output into work with genuine design quality. Anti-slop detection, typography craft, color systems, brand voice, product strategy, and 50+ specialized reviewers across UI, industry, platform, and content domains.
npx -y skills add Dragoon0x/everything-design-taste --skill accessibility-deep-patternsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 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
Advanced accessibility patterns including ARIA, screen reader optimization, cognitive accessibility, and motor impairment design.
SKILL.md
1.4 KB, as published. Nobody here has run it
Accessibility Deep Patterns
ARIA Patterns
Live Regions
<div aria-live="polite"> <!-- Non-urgent updates -->
<div aria-live="assertive"> <!-- Urgent: errors, alerts -->
Landmark Roles
<main>— primary content<nav>— navigation blocks<aside>— supplementary content<form>— form regionsaria-labelon landmarks when multiple exist
Dynamic Content
- Announce new content additions to screen readers.
- Focus management: move focus to new content (modals, expanded sections).
- Loading states:
aria-busy="true"on containers.
Cognitive Accessibility
- Simple language (aim for 8th-grade reading level).
- Consistent navigation patterns across all pages.
- Don't rely on memory (show information, don't expect recall).
- Break complex tasks into simple steps.
- Allow undo instead of requiring confirmation.
Motor Impairment
- Large click/touch targets (minimum 44px, ideally 48px+).
- Sufficient spacing between targets (8px minimum gap).
- Support for switch control and voice control.
- No time-limited interactions unless adjustable.
- Sticky/fixed action buttons (reduce mouse travel).