一键导入
accessibility-audit
Audit and fix accessibility issues across the portfolio to ensure WCAG 2.1 AA compliance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Audit and fix accessibility issues across the portfolio to ensure WCAG 2.1 AA compliance.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Migrate from Next.js 15 to Next.js 16 and handle breaking changes
Configure Content Security Policy and security headers for the portfolio
Deploy Next.js to Cloudflare Workers using OpenNext adapter
Manage the canary token honeypot system for detecting security scanning
Write, debug, and optimize GROQ queries for Sanity CMS in this portfolio
Advanced TypeScript patterns and type safety as used in this portfolio
| name | accessibility-audit |
| description | Audit and fix accessibility issues across the portfolio to ensure WCAG 2.1 AA compliance. |
Ensures the portfolio meets WCAG 2.1 AA standards. Covers semantic HTML, ARIA, keyboard navigation, color contrast, screen reader compatibility, and focus management.
Scan for semantic issues — Check that interactive elements use correct HTML (<button>, <a>, <input>, <select>, <textarea>). Never use <div> or <span> with click handlers for actions/navigation.
Verify keyboard support — Every interactive element must be reachable and operable via keyboard (Tab, Enter, Space, Escape, Arrow keys per WAI-ARIA APG patterns).
Check focus indicators — All focusable elements must have a visible :focus-visible style. Never use outline: none without providing a visible replacement.
Audit ARIA usage — Icon-only buttons need descriptive aria-label. Decorative icons need aria-hidden="true". Announce async updates with aria-live="polite".
Validate color contrast — Use APCA or WCAG 2.1 AA contrast ratios. Text needs 4.5:1 (normal) / 3:1 (large). Interactive states should increase contrast.
Test screen reader flow — Verify heading hierarchy (<h1>–<h6>), skip-to-content link, form label associations, and image alt text.
Run automated tools — Use browser DevTools Lighthouse audit, axe DevTools, or WAVE.
aria-label on icon buttons — Add aria-label="Description" to buttons with only icon childrenalt="Descriptive text" or alt="" for decorative images<div onClick> with <button> or <a>/<Link><label htmlFor="id"> or aria-label to form controls:focus-visible<h1>–<h6>)outline: none without replacement