ワンクリックで
qa-review
Audit test coverage and write missing tests
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Audit test coverage and write missing tests
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Manage the project backlog — add, list, filter, update, prioritize, and suggest work items
Daily session wrapper — start with backlog, work, commit, retro
End-of-session retrospective — summarize work, update backlog statuses, update MEMORY.md
Commit, branch, PR, self-review, fix — then stop for human approval before merge
Pre-flight for parallel work — pick items, check file overlap, set statuses, generate terminal commands
Manage project backlog — add, list, filter, update, prioritize, suggest
| name | qa-review |
| description | Audit test coverage and write missing tests |
| user-invocable | true |
npm test -- --run --coverage
Scan for existing test files (.test.ts, .test.tsx, .spec.ts).
| Area | File | Has Tests | Coverage | Priority |
|---|---|---|---|---|
| ... | ... | yes/no | %/unknown | high/med/low |
Priority is based on: complexity, risk if broken, frequency of change.
For each high-priority gap:
npm test -- --run # All tests pass
npx tsc --noEmit # No type errors from test files
foo.test.ts next to foo.tsdescribe('functionName', () => { it('should X when Y', ...) })