원클릭으로
analyze-coverage
Analyze test coverage reports to identify areas needing more tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze test coverage reports to identify areas needing more tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
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 | analyze-coverage |
| description | Analyze test coverage reports to identify areas needing more tests. |
This skill analyzes test coverage reports for both frontend and backend components of the ResumeAI project.
# Frontend coverage
npm run test:coverage
# Backend coverage
pytest --cov=resume-api --cov-report=html --cov-report=term
# Backend HTML report
open coverage/index.html
# Or serve it
cd coverage && python -m http.server 8080
The project requires minimum 60% coverage for:
# Backend - fail if below threshold
pytest --cov=resume-api --cov-fail-under=60
# Frontend - check vitest.config.ts for threshold configuration
coverage/ directorycoverage/ directory# List uncovered files
pytest --cov=resume-api --cov-report=term-missing
# JSON report for programmatic analysis
pytest --cov=resume-api --cov-report=json -o cov_jsonfile=coverage/coverage.json
The coverage report in coverage/ shows file-by-file coverage.
--cov-report=term-missing to see exact lines not covered