(outcome: string)
| 1256 | // only, NEVER prompt content (see TELEMETRY.md). This is the data that |
| 1257 | // turns "is the gate any good" from vibes into a measured recall rate. |
| 1258 | const gate = (outcome: string): void => { |
| 1259 | try { getTelemetry().recordUsage('cli_command', `prompt-hook-gate-${outcome}`, true); } catch { /* never break the hook */ } |
| 1260 | }; |
| 1261 | |
| 1262 | // Gate, tiered by confidence (#994, #1126): |
| 1263 | // HIGH — a structural keyword (any covered language), or a code-shaped |
no test coverage detected