一键导入
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