analyze-coverage-gaps — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited analyze-coverage-gaps (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Identify which specific branch conditions are uncovered in a .NET method, and compare the current coverage report against the previous baseline to see what changed.
run-coverageimprove-test-coveragerun-coverage)| Input | Required | Description |
|---|---|---|
coberturaXmlPath | Yes | Path to coverage.cobertura.xml; auto-falls back to .coverage-state if not found |
methodName | Yes | Method name to inspect (partial match supported) |
workingDir | No | Directory for storing .coverage-prev.xml baseline; defaults to XML's parent directory |
Call GetUncoveredBranches with coberturaXmlPath and methodName.
Returns JSON:
{
"method": "ProcessOrder",
"uncoveredBranches": [
{ "line": 42, "missing": ["condition 0 (jump)", "condition 1 (jump)"] },
{ "line": 57, "missing": ["condition 0 (jump)"] }
]
}For each uncovered branch, describe in plain language what condition is missing:
branch-N-true → the if condition was never truebranch-N-false → the if condition was never falseIf a previous coverage run exists, call GetCoverageDiff with coberturaXmlPath.
Returns three sections:
cycleImprovement — overall delta in line and branch rateschangedMethods — methods with before/after coverage valuesunchanged — methods with no changePresent:
GetUncoveredBranches returned results for the target method| Pitfall | Solution |
|---|---|
| Method not found | Use a shorter partial name; method names are case-sensitive |
| No baseline for diff | First run produces no diff — run once more after adding tests |
| XML path wrong | Tool auto-reads .coverage-state as fallback; ensure tests were run recently |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.