package infra // E2ECoverageReport summarises e2e_checks coverage across scanned apps. type E2ECoverageReport struct { Total int `json:"total"` WithChecks int `json:"with_checks"` Missing []string `json:"missing"` // relative paths to app.md files without e2e_checks CoveragePct float64 `json:"coverage_pct"` // 0-100, 2 decimal precision }