@kevinrabun/judges 3.78.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 +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-diff-highlight.d.ts +5 -0
- package/dist/commands/finding-diff-highlight.d.ts.map +1 -0
- package/dist/commands/finding-diff-highlight.js +108 -0
- package/dist/commands/finding-diff-highlight.js.map +1 -0
- package/dist/commands/finding-fix-verify.d.ts +5 -0
- package/dist/commands/finding-fix-verify.d.ts.map +1 -0
- package/dist/commands/finding-fix-verify.js +199 -0
- package/dist/commands/finding-fix-verify.js.map +1 -0
- package/dist/commands/finding-group-by.d.ts +5 -0
- package/dist/commands/finding-group-by.d.ts.map +1 -0
- package/dist/commands/finding-group-by.js +87 -0
- package/dist/commands/finding-group-by.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-prioritize.d.ts +5 -0
- package/dist/commands/finding-prioritize.d.ts.map +1 -0
- package/dist/commands/finding-prioritize.js +120 -0
- package/dist/commands/finding-prioritize.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/finding-trace.d.ts +5 -0
- package/dist/commands/finding-trace.d.ts.map +1 -0
- package/dist/commands/finding-trace.js +119 -0
- package/dist/commands/finding-trace.js.map +1 -0
- package/dist/commands/review-annotation.d.ts +5 -0
- package/dist/commands/review-annotation.d.ts.map +1 -0
- package/dist/commands/review-annotation.js +134 -0
- package/dist/commands/review-annotation.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-custom-judge.d.ts +5 -0
- package/dist/commands/review-custom-judge.d.ts.map +1 -0
- package/dist/commands/review-custom-judge.js +183 -0
- package/dist/commands/review-custom-judge.js.map +1 -0
- package/dist/commands/review-multi-repo.d.ts +5 -0
- package/dist/commands/review-multi-repo.d.ts.map +1 -0
- package/dist/commands/review-multi-repo.js +146 -0
- package/dist/commands/review-multi-repo.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-preset-save.d.ts +5 -0
- package/dist/commands/review-preset-save.d.ts.map +1 -0
- package/dist/commands/review-preset-save.js +160 -0
- package/dist/commands/review-preset-save.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.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
|
+
|
|
17
|
+
## [3.79.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Group by: finding-group-by (group findings by category/severity/file)
|
|
21
|
+
- Diff highlight: finding-diff-highlight (highlight diff regions related to findings)
|
|
22
|
+
- Fix verify: finding-fix-verify (verify fixes resolve findings)
|
|
23
|
+
- Custom judges: review-custom-judge (register and manage custom judges)
|
|
24
|
+
- Prioritize: finding-prioritize (prioritize findings by business impact)
|
|
25
|
+
- Annotations: review-annotation (add annotations to review results)
|
|
26
|
+
- Multi-repo: review-multi-repo (review across multiple repositories)
|
|
27
|
+
- Finding trace: finding-trace (trace findings to origin commits)
|
|
28
|
+
- Preset save: review-preset-save (save and load review preset configurations)
|
|
29
|
+
|
|
5
30
|
## [3.78.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;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
|
@@ -572,6 +572,23 @@ USAGE:
|
|
|
572
572
|
judges finding-dedup-cross-file Deduplicate findings across result files
|
|
573
573
|
judges review-progress-bar Track and display review progress
|
|
574
574
|
judges finding-auto-label Auto-label findings based on content
|
|
575
|
+
judges finding-group-by Group findings by category/severity/file
|
|
576
|
+
judges finding-diff-highlight Highlight diff regions related to findings
|
|
577
|
+
judges finding-fix-verify Verify fixes resolve findings
|
|
578
|
+
judges review-custom-judge Register and manage custom judges
|
|
579
|
+
judges finding-prioritize Prioritize findings by business impact
|
|
580
|
+
judges review-annotation Add annotations to review results
|
|
581
|
+
judges review-multi-repo Review across multiple repositories
|
|
582
|
+
judges finding-trace Trace findings to origin commits
|
|
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
|
|
575
592
|
judges tune Analyze project and suggest optimal config
|
|
576
593
|
judges list List all available judges
|
|
577
594
|
judges version Show version information
|
|
@@ -3089,6 +3106,108 @@ export async function runCli(argv) {
|
|
|
3089
3106
|
runFindingAutoLabel(argv);
|
|
3090
3107
|
return;
|
|
3091
3108
|
}
|
|
3109
|
+
// ─── Finding Group By Command ────────────────────────────────────
|
|
3110
|
+
if (args.command === "finding-group-by") {
|
|
3111
|
+
const { runFindingGroupBy } = await import("./commands/finding-group-by.js");
|
|
3112
|
+
runFindingGroupBy(argv);
|
|
3113
|
+
return;
|
|
3114
|
+
}
|
|
3115
|
+
// ─── Finding Diff Highlight Command ──────────────────────────────
|
|
3116
|
+
if (args.command === "finding-diff-highlight") {
|
|
3117
|
+
const { runFindingDiffHighlight } = await import("./commands/finding-diff-highlight.js");
|
|
3118
|
+
runFindingDiffHighlight(argv);
|
|
3119
|
+
return;
|
|
3120
|
+
}
|
|
3121
|
+
// ─── Finding Fix Verify Command ──────────────────────────────────
|
|
3122
|
+
if (args.command === "finding-fix-verify") {
|
|
3123
|
+
const { runFindingFixVerify } = await import("./commands/finding-fix-verify.js");
|
|
3124
|
+
runFindingFixVerify(argv);
|
|
3125
|
+
return;
|
|
3126
|
+
}
|
|
3127
|
+
// ─── Review Custom Judge Command ─────────────────────────────────
|
|
3128
|
+
if (args.command === "review-custom-judge") {
|
|
3129
|
+
const { runReviewCustomJudge } = await import("./commands/review-custom-judge.js");
|
|
3130
|
+
runReviewCustomJudge(argv);
|
|
3131
|
+
return;
|
|
3132
|
+
}
|
|
3133
|
+
// ─── Finding Prioritize Command ──────────────────────────────────
|
|
3134
|
+
if (args.command === "finding-prioritize") {
|
|
3135
|
+
const { runFindingPrioritize } = await import("./commands/finding-prioritize.js");
|
|
3136
|
+
runFindingPrioritize(argv);
|
|
3137
|
+
return;
|
|
3138
|
+
}
|
|
3139
|
+
// ─── Review Annotation Command ───────────────────────────────────
|
|
3140
|
+
if (args.command === "review-annotation") {
|
|
3141
|
+
const { runReviewAnnotation } = await import("./commands/review-annotation.js");
|
|
3142
|
+
runReviewAnnotation(argv);
|
|
3143
|
+
return;
|
|
3144
|
+
}
|
|
3145
|
+
// ─── Review Multi Repo Command ───────────────────────────────────
|
|
3146
|
+
if (args.command === "review-multi-repo") {
|
|
3147
|
+
const { runReviewMultiRepo } = await import("./commands/review-multi-repo.js");
|
|
3148
|
+
runReviewMultiRepo(argv);
|
|
3149
|
+
return;
|
|
3150
|
+
}
|
|
3151
|
+
// ─── Finding Trace Command ───────────────────────────────────────
|
|
3152
|
+
if (args.command === "finding-trace") {
|
|
3153
|
+
const { runFindingTrace } = await import("./commands/finding-trace.js");
|
|
3154
|
+
runFindingTrace(argv);
|
|
3155
|
+
return;
|
|
3156
|
+
}
|
|
3157
|
+
// ─── Review Preset Save Command ──────────────────────────────────
|
|
3158
|
+
if (args.command === "review-preset-save") {
|
|
3159
|
+
const { runReviewPresetSave } = await import("./commands/review-preset-save.js");
|
|
3160
|
+
runReviewPresetSave(argv);
|
|
3161
|
+
return;
|
|
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
|
+
}
|
|
3092
3211
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3093
3212
|
if (args.command === "tune") {
|
|
3094
3213
|
const { runTune } = await import("./commands/tune.js");
|