(errorCount: number, checker: string)
| 124 | |
| 125 | /** Message used when auto-repair is exhausted — surfaced ONCE, then the model proceeds. */ |
| 126 | export function buildVerifyGiveupMessage(errorCount: number, checker: string): string { |
| 127 | return ( |
| 128 | `[AUTO-VERIFY] After repeated attempts, ${errorCount} ${checker} error(s) remain in the ` + |
| 129 | `files you changed. I'll stop auto-retrying. In your final reply, tell the user plainly ` + |
| 130 | `which errors remain and why they're hard to resolve — do not claim the task is fully done.` |
| 131 | ); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Run the auto-verify check over the touched files. Impure (spawns a checker), but all |
no outgoing calls
no test coverage detected