test-coverage-review
Audit test coverage, identify gaps, and recommend local tests plus CI workflows
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Audit test coverage, identify gaps, and recommend local tests plus CI workflows
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Set up and manage GitHub Actions workflows that use Copilot coding agents for automated PR handling and issue resolution
Inspect active GitHub Actions workflows before commit or push, run matching local checks for staged or unpushed files, ask which missing tools to install via askQuestions, and fix in-scope issues so the Commit agent can proceed.
Write a commit message following the Conventional Commits specification with scope and body
Create an Architectural Decision Record (ADR) to document a significant design or technology choice
Audit VS Code extensions against the current project stack and recommend keep/add/remove actions
Diagnose and fix a failing CI pipeline or GitHub Actions workflow
| name | test-coverage-review |
| description | Audit test coverage, identify gaps, and recommend local tests plus CI workflows |
| compatibility | >=3.2 |
Skill metadata: version "1.0"; license MIT; tags [tests, coverage, ci, review, quality]; compatibility ">=3.2"; recommended tools [codebase, runCommands, githubRepo].
Review the current project's test coverage posture and recommend what to test next, what coverage tooling is missing, and which CI workflows would add the most value.
Discover the test stack - Detect test runners and coverage tooling from config files, manifests, and CI workflows.
Ask for coverage output when available - If a coverage command is configured, ask the user to run it and paste the output. Copilot cannot run the command on the user's machine in chat.
Fall back to static analysis when needed - If no coverage tooling exists, scan the repository for source files, test files, and obvious gaps.
Identify coverage gaps - Classify gaps into:
Recommend local tests - For each important gap, specify:
Recommend CI workflows - Suggest copy-ready GitHub Actions improvements when they are justified by the stack, such as:
Present the report - Use this structure:
## Test Coverage Review - <project>
### Current coverage snapshot
- framework and runner
- overall coverage if known
- test file count and obvious untested areas
### Well-covered
- files or modules that appear healthy
### Partially covered
- files or modules with notable gaps
### Untested or near-zero
- highest-priority missing coverage
### Recommended local tests
- file | type | priority | what to cover
### Recommended CI workflows
- workflow name and why it helps
- ready-to-copy YAML when appropriate
### Notes
- missing tooling
- assumptions
- risk areas
Wait - Do not write test files, workflow files, or coverage config until the user explicitly asks.