@kevinrabun/judges 3.79.0 → 3.80.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 +12 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +56 -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-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-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-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/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.80.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Blame map: review-blame-map (map findings to git blame authors)
|
|
9
|
+
- Autofix preview: finding-autofix-preview (preview patches before applying)
|
|
10
|
+
- Config diff: review-config-diff (diff two review configurations)
|
|
11
|
+
- Severity trend: finding-severity-trend (track severity trends over time)
|
|
12
|
+
- Batch files: review-batch-files (batch-review multiple files)
|
|
13
|
+
- Context expand: finding-context-expand (expand finding context with source)
|
|
14
|
+
- Output format: review-output-format (configure and manage output formats)
|
|
15
|
+
- Merge results: finding-merge-results (merge results from multiple runs)
|
|
16
|
+
|
|
5
17
|
## [3.79.0] — 2026-03-14
|
|
6
18
|
|
|
7
19
|
### 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;AA0vBH;;;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,CA0+F1D"}
|
package/dist/cli.js
CHANGED
|
@@ -581,6 +581,14 @@ 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
|
|
584
592
|
judges tune Analyze project and suggest optimal config
|
|
585
593
|
judges list List all available judges
|
|
586
594
|
judges version Show version information
|
|
@@ -3152,6 +3160,54 @@ export async function runCli(argv) {
|
|
|
3152
3160
|
runReviewPresetSave(argv);
|
|
3153
3161
|
return;
|
|
3154
3162
|
}
|
|
3163
|
+
// ─── Review Blame Map Command ────────────────────────────────────
|
|
3164
|
+
if (args.command === "review-blame-map") {
|
|
3165
|
+
const { runReviewBlameMap } = await import("./commands/review-blame-map.js");
|
|
3166
|
+
runReviewBlameMap(argv);
|
|
3167
|
+
return;
|
|
3168
|
+
}
|
|
3169
|
+
// ─── Finding Autofix Preview Command ─────────────────────────────
|
|
3170
|
+
if (args.command === "finding-autofix-preview") {
|
|
3171
|
+
const { runFindingAutofixPreview } = await import("./commands/finding-autofix-preview.js");
|
|
3172
|
+
runFindingAutofixPreview(argv);
|
|
3173
|
+
return;
|
|
3174
|
+
}
|
|
3175
|
+
// ─── Review Config Diff Command ──────────────────────────────────
|
|
3176
|
+
if (args.command === "review-config-diff") {
|
|
3177
|
+
const { runReviewConfigDiff } = await import("./commands/review-config-diff.js");
|
|
3178
|
+
runReviewConfigDiff(argv);
|
|
3179
|
+
return;
|
|
3180
|
+
}
|
|
3181
|
+
// ─── Finding Severity Trend Command ──────────────────────────────
|
|
3182
|
+
if (args.command === "finding-severity-trend") {
|
|
3183
|
+
const { runFindingSeverityTrend } = await import("./commands/finding-severity-trend.js");
|
|
3184
|
+
runFindingSeverityTrend(argv);
|
|
3185
|
+
return;
|
|
3186
|
+
}
|
|
3187
|
+
// ─── Review Batch Files Command ──────────────────────────────────
|
|
3188
|
+
if (args.command === "review-batch-files") {
|
|
3189
|
+
const { runReviewBatchFiles } = await import("./commands/review-batch-files.js");
|
|
3190
|
+
runReviewBatchFiles(argv);
|
|
3191
|
+
return;
|
|
3192
|
+
}
|
|
3193
|
+
// ─── Finding Context Expand Command ──────────────────────────────
|
|
3194
|
+
if (args.command === "finding-context-expand") {
|
|
3195
|
+
const { runFindingContextExpand } = await import("./commands/finding-context-expand.js");
|
|
3196
|
+
runFindingContextExpand(argv);
|
|
3197
|
+
return;
|
|
3198
|
+
}
|
|
3199
|
+
// ─── Review Output Format Command ────────────────────────────────
|
|
3200
|
+
if (args.command === "review-output-format") {
|
|
3201
|
+
const { runReviewOutputFormat } = await import("./commands/review-output-format.js");
|
|
3202
|
+
runReviewOutputFormat(argv);
|
|
3203
|
+
return;
|
|
3204
|
+
}
|
|
3205
|
+
// ─── Finding Merge Results Command ───────────────────────────────
|
|
3206
|
+
if (args.command === "finding-merge-results") {
|
|
3207
|
+
const { runFindingMergeResults } = await import("./commands/finding-merge-results.js");
|
|
3208
|
+
runFindingMergeResults(argv);
|
|
3209
|
+
return;
|
|
3210
|
+
}
|
|
3155
3211
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3156
3212
|
if (args.command === "tune") {
|
|
3157
3213
|
const { runTune } = await import("./commands/tune.js");
|