@kevinrabun/judges 3.77.0 → 3.79.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-auto-label.d.ts +5 -0
- package/dist/commands/finding-auto-label.d.ts.map +1 -0
- package/dist/commands/finding-auto-label.js +221 -0
- package/dist/commands/finding-auto-label.js.map +1 -0
- package/dist/commands/finding-dedup-cross-file.d.ts +5 -0
- package/dist/commands/finding-dedup-cross-file.d.ts.map +1 -0
- package/dist/commands/finding-dedup-cross-file.js +96 -0
- package/dist/commands/finding-dedup-cross-file.js.map +1 -0
- package/dist/commands/finding-dependency-check.d.ts +5 -0
- package/dist/commands/finding-dependency-check.d.ts.map +1 -0
- package/dist/commands/finding-dependency-check.js +120 -0
- package/dist/commands/finding-dependency-check.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-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-histogram.d.ts +5 -0
- package/dist/commands/finding-severity-histogram.d.ts.map +1 -0
- package/dist/commands/finding-severity-histogram.js +67 -0
- package/dist/commands/finding-severity-histogram.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-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-file-filter.d.ts +5 -0
- package/dist/commands/review-file-filter.d.ts.map +1 -0
- package/dist/commands/review-file-filter.js +122 -0
- package/dist/commands/review-file-filter.js.map +1 -0
- package/dist/commands/review-incremental.d.ts +5 -0
- package/dist/commands/review-incremental.d.ts.map +1 -0
- package/dist/commands/review-incremental.js +129 -0
- package/dist/commands/review-incremental.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-plugin-manage.d.ts +5 -0
- package/dist/commands/review-plugin-manage.d.ts.map +1 -0
- package/dist/commands/review-plugin-manage.js +138 -0
- package/dist/commands/review-plugin-manage.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/dist/commands/review-progress-bar.d.ts +5 -0
- package/dist/commands/review-progress-bar.d.ts.map +1 -0
- package/dist/commands/review-progress-bar.js +158 -0
- package/dist/commands/review-progress-bar.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.79.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Group by: finding-group-by (group findings by category/severity/file)
|
|
9
|
+
- Diff highlight: finding-diff-highlight (highlight diff regions related to findings)
|
|
10
|
+
- Fix verify: finding-fix-verify (verify fixes resolve findings)
|
|
11
|
+
- Custom judges: review-custom-judge (register and manage custom judges)
|
|
12
|
+
- Prioritize: finding-prioritize (prioritize findings by business impact)
|
|
13
|
+
- Annotations: review-annotation (add annotations to review results)
|
|
14
|
+
- Multi-repo: review-multi-repo (review across multiple repositories)
|
|
15
|
+
- Finding trace: finding-trace (trace findings to origin commits)
|
|
16
|
+
- Preset save: review-preset-save (save and load review preset configurations)
|
|
17
|
+
|
|
18
|
+
## [3.78.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- File filtering: review-file-filter (filter files for review inclusion/exclusion)
|
|
22
|
+
- Dependency check: finding-dependency-check (check dependency-related findings)
|
|
23
|
+
- Incremental review: review-incremental (review only changed files since last review)
|
|
24
|
+
- Severity histogram: finding-severity-histogram (visualize severity distribution)
|
|
25
|
+
- Plugin management: review-plugin-manage (manage review plugins and extensions)
|
|
26
|
+
- Cross-file dedup: finding-dedup-cross-file (deduplicate findings across result files)
|
|
27
|
+
- Progress tracking: review-progress-bar (track and display review progress)
|
|
28
|
+
- Auto-labeling: finding-auto-label (auto-label findings based on content analysis)
|
|
29
|
+
|
|
5
30
|
## [3.77.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;AAkvBH;;;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,CAk7F1D"}
|
package/dist/cli.js
CHANGED
|
@@ -564,6 +564,23 @@ USAGE:
|
|
|
564
564
|
judges finding-impact-score Score findings by estimated impact
|
|
565
565
|
judges review-compliance-check Check findings against compliance frameworks
|
|
566
566
|
judges finding-root-cause Identify root causes of recurring findings
|
|
567
|
+
judges review-file-filter Filter files for review inclusion/exclusion
|
|
568
|
+
judges finding-dependency-check Check dependency-related findings
|
|
569
|
+
judges review-incremental Review only changed files since last review
|
|
570
|
+
judges finding-severity-histogram Visualize severity distribution histogram
|
|
571
|
+
judges review-plugin-manage Manage review plugins and extensions
|
|
572
|
+
judges finding-dedup-cross-file Deduplicate findings across result files
|
|
573
|
+
judges review-progress-bar Track and display review progress
|
|
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
|
|
567
584
|
judges tune Analyze project and suggest optimal config
|
|
568
585
|
judges list List all available judges
|
|
569
586
|
judges version Show version information
|
|
@@ -3033,6 +3050,108 @@ export async function runCli(argv) {
|
|
|
3033
3050
|
runFindingRootCause(argv);
|
|
3034
3051
|
return;
|
|
3035
3052
|
}
|
|
3053
|
+
// ─── Review File Filter Command ──────────────────────────────────
|
|
3054
|
+
if (args.command === "review-file-filter") {
|
|
3055
|
+
const { runReviewFileFilter } = await import("./commands/review-file-filter.js");
|
|
3056
|
+
runReviewFileFilter(argv);
|
|
3057
|
+
return;
|
|
3058
|
+
}
|
|
3059
|
+
// ─── Finding Dependency Check Command ────────────────────────────
|
|
3060
|
+
if (args.command === "finding-dependency-check") {
|
|
3061
|
+
const { runFindingDependencyCheck } = await import("./commands/finding-dependency-check.js");
|
|
3062
|
+
runFindingDependencyCheck(argv);
|
|
3063
|
+
return;
|
|
3064
|
+
}
|
|
3065
|
+
// ─── Review Incremental Command ──────────────────────────────────
|
|
3066
|
+
if (args.command === "review-incremental") {
|
|
3067
|
+
const { runReviewIncremental } = await import("./commands/review-incremental.js");
|
|
3068
|
+
runReviewIncremental(argv);
|
|
3069
|
+
return;
|
|
3070
|
+
}
|
|
3071
|
+
// ─── Finding Severity Histogram Command ──────────────────────────
|
|
3072
|
+
if (args.command === "finding-severity-histogram") {
|
|
3073
|
+
const { runFindingSeverityHistogram } = await import("./commands/finding-severity-histogram.js");
|
|
3074
|
+
runFindingSeverityHistogram(argv);
|
|
3075
|
+
return;
|
|
3076
|
+
}
|
|
3077
|
+
// ─── Review Plugin Manage Command ────────────────────────────────
|
|
3078
|
+
if (args.command === "review-plugin-manage") {
|
|
3079
|
+
const { runReviewPluginManage } = await import("./commands/review-plugin-manage.js");
|
|
3080
|
+
runReviewPluginManage(argv);
|
|
3081
|
+
return;
|
|
3082
|
+
}
|
|
3083
|
+
// ─── Finding Dedup Cross File Command ────────────────────────────
|
|
3084
|
+
if (args.command === "finding-dedup-cross-file") {
|
|
3085
|
+
const { runFindingDedupCrossFile } = await import("./commands/finding-dedup-cross-file.js");
|
|
3086
|
+
runFindingDedupCrossFile(argv);
|
|
3087
|
+
return;
|
|
3088
|
+
}
|
|
3089
|
+
// ─── Review Progress Bar Command ─────────────────────────────────
|
|
3090
|
+
if (args.command === "review-progress-bar") {
|
|
3091
|
+
const { runReviewProgressBar } = await import("./commands/review-progress-bar.js");
|
|
3092
|
+
runReviewProgressBar(argv);
|
|
3093
|
+
return;
|
|
3094
|
+
}
|
|
3095
|
+
// ─── Finding Auto Label Command ──────────────────────────────────
|
|
3096
|
+
if (args.command === "finding-auto-label") {
|
|
3097
|
+
const { runFindingAutoLabel } = await import("./commands/finding-auto-label.js");
|
|
3098
|
+
runFindingAutoLabel(argv);
|
|
3099
|
+
return;
|
|
3100
|
+
}
|
|
3101
|
+
// ─── Finding Group By Command ────────────────────────────────────
|
|
3102
|
+
if (args.command === "finding-group-by") {
|
|
3103
|
+
const { runFindingGroupBy } = await import("./commands/finding-group-by.js");
|
|
3104
|
+
runFindingGroupBy(argv);
|
|
3105
|
+
return;
|
|
3106
|
+
}
|
|
3107
|
+
// ─── Finding Diff Highlight Command ──────────────────────────────
|
|
3108
|
+
if (args.command === "finding-diff-highlight") {
|
|
3109
|
+
const { runFindingDiffHighlight } = await import("./commands/finding-diff-highlight.js");
|
|
3110
|
+
runFindingDiffHighlight(argv);
|
|
3111
|
+
return;
|
|
3112
|
+
}
|
|
3113
|
+
// ─── Finding Fix Verify Command ──────────────────────────────────
|
|
3114
|
+
if (args.command === "finding-fix-verify") {
|
|
3115
|
+
const { runFindingFixVerify } = await import("./commands/finding-fix-verify.js");
|
|
3116
|
+
runFindingFixVerify(argv);
|
|
3117
|
+
return;
|
|
3118
|
+
}
|
|
3119
|
+
// ─── Review Custom Judge Command ─────────────────────────────────
|
|
3120
|
+
if (args.command === "review-custom-judge") {
|
|
3121
|
+
const { runReviewCustomJudge } = await import("./commands/review-custom-judge.js");
|
|
3122
|
+
runReviewCustomJudge(argv);
|
|
3123
|
+
return;
|
|
3124
|
+
}
|
|
3125
|
+
// ─── Finding Prioritize Command ──────────────────────────────────
|
|
3126
|
+
if (args.command === "finding-prioritize") {
|
|
3127
|
+
const { runFindingPrioritize } = await import("./commands/finding-prioritize.js");
|
|
3128
|
+
runFindingPrioritize(argv);
|
|
3129
|
+
return;
|
|
3130
|
+
}
|
|
3131
|
+
// ─── Review Annotation Command ───────────────────────────────────
|
|
3132
|
+
if (args.command === "review-annotation") {
|
|
3133
|
+
const { runReviewAnnotation } = await import("./commands/review-annotation.js");
|
|
3134
|
+
runReviewAnnotation(argv);
|
|
3135
|
+
return;
|
|
3136
|
+
}
|
|
3137
|
+
// ─── Review Multi Repo Command ───────────────────────────────────
|
|
3138
|
+
if (args.command === "review-multi-repo") {
|
|
3139
|
+
const { runReviewMultiRepo } = await import("./commands/review-multi-repo.js");
|
|
3140
|
+
runReviewMultiRepo(argv);
|
|
3141
|
+
return;
|
|
3142
|
+
}
|
|
3143
|
+
// ─── Finding Trace Command ───────────────────────────────────────
|
|
3144
|
+
if (args.command === "finding-trace") {
|
|
3145
|
+
const { runFindingTrace } = await import("./commands/finding-trace.js");
|
|
3146
|
+
runFindingTrace(argv);
|
|
3147
|
+
return;
|
|
3148
|
+
}
|
|
3149
|
+
// ─── Review Preset Save Command ──────────────────────────────────
|
|
3150
|
+
if (args.command === "review-preset-save") {
|
|
3151
|
+
const { runReviewPresetSave } = await import("./commands/review-preset-save.js");
|
|
3152
|
+
runReviewPresetSave(argv);
|
|
3153
|
+
return;
|
|
3154
|
+
}
|
|
3036
3155
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3037
3156
|
if (args.command === "tune") {
|
|
3038
3157
|
const { runTune } = await import("./commands/tune.js");
|