accessibility-review
Reviews UI for accessibility issues against WCAG 2.1/2.2 AA. Triggers on "is this accessible?", "check accessibility", or contrast/a11y review requests.
What this skill does
# Accessibility Review ## Overview This skill enables manual accessibility reviews of web content, components, and applications against WCAG 2.1/2.2 Level AA standards. Reviews focus on practical, modern accessibility requirements without being overly pedantic. ## When to Use This Skill Use this skill when the user asks questions like: - "Is this accessible?" - "Can you review the color contrast?" - "Check this component for accessibility issues" - "Does this meet accessibility standards?" - Any request to review, check, or validate accessibility ## Review Process ### 1. Identify the Target Determine what needs to be reviewed: - Specific component (button, form, modal, etc.) - Full page or application - Code file or set of files - Design mockup or screenshot ### 2. Conduct Manual Review Use the WCAG checklist in `references/wcag-checklist.md` to systematically review the target against modern accessibility standards. Focus on the most common and impactful issues: - **Perceivable**: Color contrast, text alternatives, semantic structure - **Operable**: Keyboard navigation, focus management, interactive elements - **Understandable**: Clear labels, error handling, consistent navigation - **Robust**: Valid HTML, ARIA usage, compatibility ### 3. Prioritize Findings Classify each issue as: **Critical** - Blocks users from accessing core functionality: - Missing alt text on meaningful images - Non-keyboard accessible interactive elements - Insufficient color contrast (below 4.5:1 for normal text, 3:1 for large text) - Forms without proper labels - Missing focus indicators - Inaccessible modal/dialog patterns - Auto-playing media without controls **Warning** - Creates friction but doesn't fully block access: - Suboptimal heading hierarchy (skipped levels) - Missing ARIA landmarks - Link text that's unclear out of context - Redundant or unnecessary ARIA - Touch targets smaller than 44x44px - Missing skip links - Non-descriptive error messages ### 4. Stepped Review (One Issue at a Time) **IMPORTANT**: Do NOT present all findings at once. Review issues one at a time, waiting for user decision before proceeding. **4.1 Start with Overview** Begin by telling the user how many issues were found: ``` Found [X] accessibility issues ([Y] critical, [Z] warnings). Let's review them one at a time. I'll present each issue with a recommended fix, and you can decide to: - **Fix** — I'll implement the change - **Ignore** — Tell me why, and I'll note it Starting with critical issues first. ``` **4.2 Present Each Issue** For each issue, present ONE at a time using this format: ``` ─────────────────────────────────── Issue [1/X]: [Critical/Warning] ─────────────────────────────────── **Problem**: [Clear description of the issue] **Location**: `file_path:line_number` [Show the relevant code snippet] **Impact**: [How this affects users — be specific about who and how] **Recommended Fix**: [Specific code change or approach] ─────────────────────────────────── Fix this issue, or ignore? (If ignoring, please share why) ``` **4.3 Handle User Response** **If user says "fix":** 1. Implement the fix 2. Confirm: "Fixed. [Brief description of what changed]" 3. Move to next issue **If user says "ignore" with reason:** 1. Acknowledge: "Noted — ignoring because: [their reason]" 2. Track the decision (see 4.4) 3. Move to next issue **If user says "ignore" without reason:** 1. Ask: "Got it. Quick note on why? (Helps for future reference)" 2. Accept any response and move on **4.4 Track Decisions** Keep a running tally as you go through issues. After all issues are reviewed, present a summary. ### 5. Final Summary After reviewing all issues, present a summary: ``` ## Accessibility Review Complete **Reviewed**: [X] issues ([Y] critical, [Z] warnings) ### Fixed ([N]) - [Issue description] — `file:line` - [Issue description] — `file:line` ### Ignored ([N]) - [Issue description] — Reason: [user's reason] - [Issue description] — Reason: [user's reason] ### Remaining Concerns [Any patterns noticed, suggestions for future, or issues that were ignored but warrant reconsideration] ``` ## Review Guidelines **Be Practical**: Focus on issues that genuinely impact users. Modern WCAG 2.1/2.2 Level AA is the standard—avoid over-engineering or citing obscure edge cases. **Be Specific**: Reference actual code locations using `file_path:line_number` format when possible. **Be Constructive**: Provide actionable fixes, not just problems. Include code examples when helpful. **Consider Context**: Some patterns may have accessibility trade-offs. Acknowledge these and suggest the most accessible approach for the use case. ## Common Patterns to Check ### Interactive Elements - All interactive elements must be keyboard accessible (Enter/Space to activate) - Focus must be visible with clear indicators - Custom controls need proper ARIA roles and states ### Forms - All inputs must have associated labels (explicit or aria-label) - Error messages must be programmatically associated with fields - Required fields must be indicated clearly ### Color and Contrast - Text contrast: 4.5:1 minimum for normal text, 3:1 for large text (18pt+ or 14pt+ bold) - UI components: 3:1 contrast for interactive elements and their states - Don't rely on color alone to convey information ### Images and Media - Meaningful images need descriptive alt text - Decorative images should have empty alt (alt="") - Videos need captions, audio content needs transcripts ### Structure - Use semantic HTML (nav, main, article, etc.) - Heading hierarchy should be logical (h1 → h2 → h3) - ARIA landmarks help screen reader navigation ## Resources This skill includes: ### references/wcag-checklist.md Comprehensive checklist of WCAG 2.1/2.2 Level AA requirements organized by principle (Perceivable, Operable, Understandable, Robust). Reference this during reviews to ensure thorough coverage of accessibility standards.
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.