ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| 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: