Current behavior:
typescript.projectStatus lists a coverage npm script under scripts.available, but quality.scripts does not include it.
Minimal reproduction:
- Create a TypeScript project with
check, test, and coverage scripts.
- Run
typescript.projectStatus.
- Inspect
quality.scripts.
Observed behavior:
coverage is absent from quality.scripts even though it is a quality-related script.
Expected behavior:
Coverage scripts are surfaced in the quality summary so agents can quickly see whether coverage is available without separately scanning all scripts.
Proposed fix:
Include common coverage script names such as coverage and coverage:all in quality.scripts, or expose a dedicated quality.coverageScripts field if the summary should distinguish checks from measurement commands.
Current behavior:
typescript.projectStatuslists acoveragenpm script underscripts.available, butquality.scriptsdoes not include it.Minimal reproduction:
check,test, andcoveragescripts.typescript.projectStatus.quality.scripts.Observed behavior:
coverageis absent fromquality.scriptseven though it is a quality-related script.Expected behavior:
Coverage scripts are surfaced in the quality summary so agents can quickly see whether coverage is available without separately scanning all scripts.
Proposed fix:
Include common coverage script names such as
coverageandcoverage:allinquality.scripts, or expose a dedicatedquality.coverageScriptsfield if the summary should distinguish checks from measurement commands.