بنقرة واحدة
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