@kevinrabun/judges 3.79.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 +25 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +119 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/finding-autofix-preview.d.ts +5 -0
- package/dist/commands/finding-autofix-preview.d.ts.map +1 -0
- package/dist/commands/finding-autofix-preview.js +87 -0
- package/dist/commands/finding-autofix-preview.js.map +1 -0
- package/dist/commands/finding-context-expand.d.ts +5 -0
- package/dist/commands/finding-context-expand.d.ts.map +1 -0
- package/dist/commands/finding-context-expand.js +103 -0
- package/dist/commands/finding-context-expand.js.map +1 -0
- 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-merge-results.d.ts +5 -0
- package/dist/commands/finding-merge-results.d.ts.map +1 -0
- package/dist/commands/finding-merge-results.js +111 -0
- package/dist/commands/finding-merge-results.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/finding-severity-trend.d.ts +5 -0
- package/dist/commands/finding-severity-trend.d.ts.map +1 -0
- package/dist/commands/finding-severity-trend.js +128 -0
- package/dist/commands/finding-severity-trend.js.map +1 -0
- package/dist/commands/review-batch-files.d.ts +5 -0
- package/dist/commands/review-batch-files.d.ts.map +1 -0
- package/dist/commands/review-batch-files.js +83 -0
- package/dist/commands/review-batch-files.js.map +1 -0
- package/dist/commands/review-blame-map.d.ts +5 -0
- package/dist/commands/review-blame-map.d.ts.map +1 -0
- package/dist/commands/review-blame-map.js +101 -0
- package/dist/commands/review-blame-map.js.map +1 -0
- package/dist/commands/review-config-diff.d.ts +5 -0
- package/dist/commands/review-config-diff.d.ts.map +1 -0
- package/dist/commands/review-config-diff.js +109 -0
- package/dist/commands/review-config-diff.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-output-format.d.ts +5 -0
- package/dist/commands/review-output-format.d.ts.map +1 -0
- package/dist/commands/review-output-format.js +145 -0
- package/dist/commands/review-output-format.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,31 @@
|
|
|
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
|
+
|
|
18
|
+
## [3.80.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Blame map: review-blame-map (map findings to git blame authors)
|
|
22
|
+
- Autofix preview: finding-autofix-preview (preview patches before applying)
|
|
23
|
+
- Config diff: review-config-diff (diff two review configurations)
|
|
24
|
+
- Severity trend: finding-severity-trend (track severity trends over time)
|
|
25
|
+
- Batch files: review-batch-files (batch-review multiple files)
|
|
26
|
+
- Context expand: finding-context-expand (expand finding context with source)
|
|
27
|
+
- Output format: review-output-format (configure and manage output formats)
|
|
28
|
+
- Merge results: finding-merge-results (merge results from multiple runs)
|
|
29
|
+
|
|
5
30
|
## [3.79.0] — 2026-03-14
|
|
6
31
|
|
|
7
32
|
### 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
|
@@ -581,6 +581,23 @@ USAGE:
|
|
|
581
581
|
judges review-multi-repo Review across multiple repositories
|
|
582
582
|
judges finding-trace Trace findings to origin commits
|
|
583
583
|
judges review-preset-save Save and load review preset configurations
|
|
584
|
+
judges review-blame-map Map findings to git blame authors
|
|
585
|
+
judges finding-autofix-preview Preview auto-fix patches before applying
|
|
586
|
+
judges review-config-diff Diff two review configurations
|
|
587
|
+
judges finding-severity-trend Track severity distribution trends
|
|
588
|
+
judges review-batch-files Batch-review multiple files at once
|
|
589
|
+
judges finding-context-expand Expand finding context with surrounding code
|
|
590
|
+
judges review-output-format Configure and manage output formats
|
|
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
|
|
584
601
|
judges tune Analyze project and suggest optimal config
|
|
585
602
|
judges list List all available judges
|
|
586
603
|
judges version Show version information
|
|
@@ -3152,6 +3169,108 @@ export async function runCli(argv) {
|
|
|
3152
3169
|
runReviewPresetSave(argv);
|
|
3153
3170
|
return;
|
|
3154
3171
|
}
|
|
3172
|
+
// ─── Review Blame Map Command ────────────────────────────────────
|
|
3173
|
+
if (args.command === "review-blame-map") {
|
|
3174
|
+
const { runReviewBlameMap } = await import("./commands/review-blame-map.js");
|
|
3175
|
+
runReviewBlameMap(argv);
|
|
3176
|
+
return;
|
|
3177
|
+
}
|
|
3178
|
+
// ─── Finding Autofix Preview Command ─────────────────────────────
|
|
3179
|
+
if (args.command === "finding-autofix-preview") {
|
|
3180
|
+
const { runFindingAutofixPreview } = await import("./commands/finding-autofix-preview.js");
|
|
3181
|
+
runFindingAutofixPreview(argv);
|
|
3182
|
+
return;
|
|
3183
|
+
}
|
|
3184
|
+
// ─── Review Config Diff Command ──────────────────────────────────
|
|
3185
|
+
if (args.command === "review-config-diff") {
|
|
3186
|
+
const { runReviewConfigDiff } = await import("./commands/review-config-diff.js");
|
|
3187
|
+
runReviewConfigDiff(argv);
|
|
3188
|
+
return;
|
|
3189
|
+
}
|
|
3190
|
+
// ─── Finding Severity Trend Command ──────────────────────────────
|
|
3191
|
+
if (args.command === "finding-severity-trend") {
|
|
3192
|
+
const { runFindingSeverityTrend } = await import("./commands/finding-severity-trend.js");
|
|
3193
|
+
runFindingSeverityTrend(argv);
|
|
3194
|
+
return;
|
|
3195
|
+
}
|
|
3196
|
+
// ─── Review Batch Files Command ──────────────────────────────────
|
|
3197
|
+
if (args.command === "review-batch-files") {
|
|
3198
|
+
const { runReviewBatchFiles } = await import("./commands/review-batch-files.js");
|
|
3199
|
+
runReviewBatchFiles(argv);
|
|
3200
|
+
return;
|
|
3201
|
+
}
|
|
3202
|
+
// ─── Finding Context Expand Command ──────────────────────────────
|
|
3203
|
+
if (args.command === "finding-context-expand") {
|
|
3204
|
+
const { runFindingContextExpand } = await import("./commands/finding-context-expand.js");
|
|
3205
|
+
runFindingContextExpand(argv);
|
|
3206
|
+
return;
|
|
3207
|
+
}
|
|
3208
|
+
// ─── Review Output Format Command ────────────────────────────────
|
|
3209
|
+
if (args.command === "review-output-format") {
|
|
3210
|
+
const { runReviewOutputFormat } = await import("./commands/review-output-format.js");
|
|
3211
|
+
runReviewOutputFormat(argv);
|
|
3212
|
+
return;
|
|
3213
|
+
}
|
|
3214
|
+
// ─── Finding Merge Results Command ───────────────────────────────
|
|
3215
|
+
if (args.command === "finding-merge-results") {
|
|
3216
|
+
const { runFindingMergeResults } = await import("./commands/finding-merge-results.js");
|
|
3217
|
+
runFindingMergeResults(argv);
|
|
3218
|
+
return;
|
|
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
|
+
}
|
|
3155
3274
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3156
3275
|
if (args.command === "tune") {
|
|
3157
3276
|
const { runTune } = await import("./commands/tune.js");
|