@kevinrabun/judges-cli 3.127.3 → 3.128.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/benchmark-coverage-gaps.d.ts +11 -0
- package/dist/commands/benchmark-coverage-gaps.js +910 -0
- package/dist/commands/benchmark-multi-file.d.ts +12 -0
- package/dist/commands/benchmark-multi-file.js +427 -0
- package/dist/commands/benchmark.d.ts +11 -0
- package/dist/commands/benchmark.js +11 -1
- package/dist/evaluators/false-positive-review.js +4 -3
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Benchmark cases addressing coverage gaps identified in the April 2026 audit.
|
|
3
|
+
*
|
|
4
|
+
* Adds:
|
|
5
|
+
* - 15 missing real-world attack patterns (vulnerable + clean pairs)
|
|
6
|
+
* - 5 uncovered judge prefix cases (INTENT, MFPR, COH, OVER, FPR)
|
|
7
|
+
* - Expanded Go coverage (10 → 25+)
|
|
8
|
+
* - Expanded thin categories (supply-chain, compatibility, sovereignty)
|
|
9
|
+
*/
|
|
10
|
+
import type { BenchmarkCase } from "./benchmark.js";
|
|
11
|
+
export declare const BENCHMARK_COVERAGE_GAPS: BenchmarkCase[];
|