(projectRoot, proof)
| 293 | lines.push('The project has an inspectable operating loop: setup state, next action, route preview, verification command, and durable artifact evidence.'); |
| 294 | } else if (proof.status === 'partial') { |
| 295 | lines.push('The operating loop is partially inspectable. Follow the partial checks before using this as public proof.'); |
| 296 | } else { |
| 297 | lines.push('The operating loop has blockers. Resolve failed checks before using this as proof.'); |
| 298 | } |
| 299 | |
| 300 | lines.push(''); |
| 301 | lines.push('---HANDOFF---'); |
| 302 | lines.push(`- Status: ${proof.status}`); |
| 303 | lines.push(`- Setup: ${proof.summary.setup}`); |
| 304 | lines.push(`- Route: ${proof.summary.route}`); |
| 305 | lines.push(`- Verify: ${proof.summary.verify}`); |
no test coverage detected