@kevinrabun/judges 3.80.0 → 3.81.0
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/CHANGELOG.md +13 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +63 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/finding-cwe-map.d.ts +5 -0
- package/dist/commands/finding-cwe-map.d.ts.map +1 -0
- package/dist/commands/finding-cwe-map.js +134 -0
- package/dist/commands/finding-cwe-map.js.map +1 -0
- package/dist/commands/finding-false-neg-check.d.ts +9 -0
- package/dist/commands/finding-false-neg-check.d.ts.map +1 -0
- package/dist/commands/finding-false-neg-check.js +140 -0
- package/dist/commands/finding-false-neg-check.js.map +1 -0
- package/dist/commands/finding-pattern-match.d.ts +5 -0
- package/dist/commands/finding-pattern-match.d.ts.map +1 -0
- package/dist/commands/finding-pattern-match.js +166 -0
- package/dist/commands/finding-pattern-match.js.map +1 -0
- package/dist/commands/finding-risk-matrix.d.ts +5 -0
- package/dist/commands/finding-risk-matrix.d.ts.map +1 -0
- package/dist/commands/finding-risk-matrix.js +127 -0
- package/dist/commands/finding-risk-matrix.js.map +1 -0
- package/dist/commands/review-dependency-graph.d.ts +5 -0
- package/dist/commands/review-dependency-graph.d.ts.map +1 -0
- package/dist/commands/review-dependency-graph.js +95 -0
- package/dist/commands/review-dependency-graph.js.map +1 -0
- package/dist/commands/review-diff-stats.d.ts +5 -0
- package/dist/commands/review-diff-stats.d.ts.map +1 -0
- package/dist/commands/review-diff-stats.js +91 -0
- package/dist/commands/review-diff-stats.js.map +1 -0
- package/dist/commands/review-exclude-vendor.d.ts +5 -0
- package/dist/commands/review-exclude-vendor.d.ts.map +1 -0
- package/dist/commands/review-exclude-vendor.js +159 -0
- package/dist/commands/review-exclude-vendor.js.map +1 -0
- package/dist/commands/review-file-stats.d.ts +5 -0
- package/dist/commands/review-file-stats.d.ts.map +1 -0
- package/dist/commands/review-file-stats.js +131 -0
- package/dist/commands/review-file-stats.js.map +1 -0
- package/dist/commands/review-rule-filter.d.ts +5 -0
- package/dist/commands/review-rule-filter.d.ts.map +1 -0
- package/dist/commands/review-rule-filter.js +117 -0
- package/dist/commands/review-rule-filter.js.map +1 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.81.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Dependency graph: review-dependency-graph (visualize finding relationships)
|
|
9
|
+
- Pattern match: finding-pattern-match (custom pattern matching for findings)
|
|
10
|
+
- Diff stats: review-diff-stats (git diff statistics for reviews)
|
|
11
|
+
- CWE map: finding-cwe-map (map findings to CWE identifiers)
|
|
12
|
+
- Exclude vendor: review-exclude-vendor (exclude vendor/third-party code)
|
|
13
|
+
- Risk matrix: finding-risk-matrix (generate risk matrices from findings)
|
|
14
|
+
- File stats: review-file-stats (per-file review statistics)
|
|
15
|
+
- False neg check: finding-false-neg-check (check for potential false negatives)
|
|
16
|
+
- Rule filter: review-rule-filter (filter review results by rule criteria)
|
|
17
|
+
|
|
5
18
|
## [3.80.0] — 2026-03-14
|
|
6
19
|
|
|
7
20
|
### Added
|
package/dist/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;GAmBG;
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;;;;;;;;;;;;;;;;;GAmBG;AAmwBH;;;GAGG;AACH,wBAAgB,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,CAcnD;AAED,wBAAgB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,GAAG,OAAO,CAQzE;AAiBD,UAAU,cAAc;IACtB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,wBAAgB,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,cAAmB,GAAG,MAAM,EAAE,CAwBnF;AAkUD,wBAAsB,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAyiG1D"}
|
package/dist/cli.js
CHANGED
|
@@ -589,6 +589,15 @@ USAGE:
|
|
|
589
589
|
judges finding-context-expand Expand finding context with surrounding code
|
|
590
590
|
judges review-output-format Configure and manage output formats
|
|
591
591
|
judges finding-merge-results Merge results from multiple review runs
|
|
592
|
+
judges review-dependency-graph Visualize finding dependency relationships
|
|
593
|
+
judges finding-pattern-match Match findings against custom patterns
|
|
594
|
+
judges review-diff-stats Show git diff statistics for reviews
|
|
595
|
+
judges finding-cwe-map Map findings to CWE identifiers
|
|
596
|
+
judges review-exclude-vendor Exclude vendor/third-party code from reviews
|
|
597
|
+
judges finding-risk-matrix Generate risk matrices from findings
|
|
598
|
+
judges review-file-stats Per-file review statistics
|
|
599
|
+
judges finding-false-neg-check Check for potential false negatives
|
|
600
|
+
judges review-rule-filter Filter review results by rule criteria
|
|
592
601
|
judges tune Analyze project and suggest optimal config
|
|
593
602
|
judges list List all available judges
|
|
594
603
|
judges version Show version information
|
|
@@ -3208,6 +3217,60 @@ export async function runCli(argv) {
|
|
|
3208
3217
|
runFindingMergeResults(argv);
|
|
3209
3218
|
return;
|
|
3210
3219
|
}
|
|
3220
|
+
// ─── Review Dependency Graph Command ─────────────────────────────
|
|
3221
|
+
if (args.command === "review-dependency-graph") {
|
|
3222
|
+
const { runReviewDependencyGraph } = await import("./commands/review-dependency-graph.js");
|
|
3223
|
+
runReviewDependencyGraph(argv);
|
|
3224
|
+
return;
|
|
3225
|
+
}
|
|
3226
|
+
// ─── Finding Pattern Match Command ───────────────────────────────
|
|
3227
|
+
if (args.command === "finding-pattern-match") {
|
|
3228
|
+
const { runFindingPatternMatch } = await import("./commands/finding-pattern-match.js");
|
|
3229
|
+
runFindingPatternMatch(argv);
|
|
3230
|
+
return;
|
|
3231
|
+
}
|
|
3232
|
+
// ─── Review Diff Stats Command ───────────────────────────────────
|
|
3233
|
+
if (args.command === "review-diff-stats") {
|
|
3234
|
+
const { runReviewDiffStats } = await import("./commands/review-diff-stats.js");
|
|
3235
|
+
runReviewDiffStats(argv);
|
|
3236
|
+
return;
|
|
3237
|
+
}
|
|
3238
|
+
// ─── Finding CWE Map Command ─────────────────────────────────────
|
|
3239
|
+
if (args.command === "finding-cwe-map") {
|
|
3240
|
+
const { runFindingCweMap } = await import("./commands/finding-cwe-map.js");
|
|
3241
|
+
runFindingCweMap(argv);
|
|
3242
|
+
return;
|
|
3243
|
+
}
|
|
3244
|
+
// ─── Review Exclude Vendor Command ───────────────────────────────
|
|
3245
|
+
if (args.command === "review-exclude-vendor") {
|
|
3246
|
+
const { runReviewExcludeVendor } = await import("./commands/review-exclude-vendor.js");
|
|
3247
|
+
runReviewExcludeVendor(argv);
|
|
3248
|
+
return;
|
|
3249
|
+
}
|
|
3250
|
+
// ─── Finding Risk Matrix Command ─────────────────────────────────
|
|
3251
|
+
if (args.command === "finding-risk-matrix") {
|
|
3252
|
+
const { runFindingRiskMatrix } = await import("./commands/finding-risk-matrix.js");
|
|
3253
|
+
runFindingRiskMatrix(argv);
|
|
3254
|
+
return;
|
|
3255
|
+
}
|
|
3256
|
+
// ─── Review File Stats Command ───────────────────────────────────
|
|
3257
|
+
if (args.command === "review-file-stats") {
|
|
3258
|
+
const { runReviewFileStats } = await import("./commands/review-file-stats.js");
|
|
3259
|
+
runReviewFileStats(argv);
|
|
3260
|
+
return;
|
|
3261
|
+
}
|
|
3262
|
+
// ─── Finding False Neg Check Command ─────────────────────────────
|
|
3263
|
+
if (args.command === "finding-false-neg-check") {
|
|
3264
|
+
const { runFindingFalseNegCheck } = await import("./commands/finding-false-neg-check.js");
|
|
3265
|
+
runFindingFalseNegCheck(argv);
|
|
3266
|
+
return;
|
|
3267
|
+
}
|
|
3268
|
+
// ─── Review Rule Filter Command ──────────────────────────────────
|
|
3269
|
+
if (args.command === "review-rule-filter") {
|
|
3270
|
+
const { runReviewRuleFilter } = await import("./commands/review-rule-filter.js");
|
|
3271
|
+
runReviewRuleFilter(argv);
|
|
3272
|
+
return;
|
|
3273
|
+
}
|
|
3211
3274
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3212
3275
|
if (args.command === "tune") {
|
|
3213
3276
|
const { runTune } = await import("./commands/tune.js");
|