一键导入
accessibility-test
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Analyze test coverage reports to identify areas needing more tests.
Run linters, formatters, and type checkers for both frontend and backend code.
Inspect and query the SQLite database used by the ResumeAI application.
Build and run Docker containers for the ResumeAI application.
Detect unused npm dependencies in the ResumeAI frontend project.
Manage git branches, commits, and pull requests for ResumeAI development workflow.
基于 SOC 职业分类
| name | accessibility-test |
| description | Run accessibility tests to ensure the ResumeAI application is accessible to all users. |
This skill runs accessibility tests to ensure the ResumeAI application meets WCAG guidelines and is accessible to all users.
npm run test:a11y
# Run all a11y tests
npm test -- --run
# Or specifically for a11y
npm run test
# Run all E2E tests with accessibility checks
npm run test:e2e
# Run with UI
npm run test:e2e:ui
# Run specific test
npx playwright test tests/e2e/accessibility.spec.ts
The project uses:
tests/ directorytests/e2e/ directory// Before
<button>Icon</button>
// After
<button aria-label="Close dialog">
<CloseIcon />
</button>
/* Ensure focus is visible */
button:focus-visible {
outline: 2px solid #0066cc;
outline-offset: 2px;
}
// Before
<input type="email" />
// After
<label>
Email
<input type="email" />
</label>
# Test specific component
vitest tests/components/Button.test.tsx --run
# Test specific E2E
npx playwright test tests/e2e/login.spec.ts
The project follows: