manual-coverage
Installation
SKILL.md
MANUAL-COVERAGE SKILL: What I do
This skill analyzes manual test cases in markdown format and the project source code, then produces coverage.manual.yml — a mapping from source files (or globs) to manual test identifiers (suite IDs, test IDs, tags). The mapping is consumed by @testomatio/reporter run --filter "coverage:file=coverage.manual.yml,diff=<branch>" to create manual runs in Testomat.io that contain only the cases affected by the diff.
When to Use
Trigger this skill when the user wants to:
- Map manual test cases to the source code that implements them.
- Generate
coverage.manual.yml(or a similarly named file) for use with@testomatio/reporter. - Run only manual regression tests relevant to a code change instead of the full suite.
- Build a code → manual-test traceability matrix.
- Find dead manual tests (tests with no matching source) or coverage gaps (source with no manual tests).
- Phrases: "manual test coverage", "map manual cases to code", "affected manual tests", "selective regression for manual tests", "generate coverage.manual.yml".
CRITICAL CONSTRAINTS
This skill works only with manual tests in markdown format.