(k: string, v: string)
| 61 | export function buildMaintainReportPdfBlocks(d: MaintainReportData): PdfBlock[] { |
| 62 | const s = d.stats; |
| 63 | const kv = (k: string, v: string): PdfBlock => ({ text: `${k}: ${v}`, size: 11, indent: 10 }); |
| 64 | const blocks: PdfBlock[] = [ |
| 65 | { text: `Self-Improvement Report${d.project ? ` — ${d.project}` : ''}`, size: 18, bold: true }, |
| 66 | { text: `Generated ${d.generatedAt} by QodeX maintain. Every number comes from verified-run receipts — filesChanged from real git diffs, verification from checkers that actually ran.`, size: 9, spaceBefore: 4 }, |
no outgoing calls
no test coverage detected