@kevinrabun/judges 3.77.0 → 3.78.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-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-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/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-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-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,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.78.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- File filtering: review-file-filter (filter files for review inclusion/exclusion)
|
|
9
|
+
- Dependency check: finding-dependency-check (check dependency-related findings)
|
|
10
|
+
- Incremental review: review-incremental (review only changed files since last review)
|
|
11
|
+
- Severity histogram: finding-severity-histogram (visualize severity distribution)
|
|
12
|
+
- Plugin management: review-plugin-manage (manage review plugins and extensions)
|
|
13
|
+
- Cross-file dedup: finding-dedup-cross-file (deduplicate findings across result files)
|
|
14
|
+
- Progress tracking: review-progress-bar (track and display review progress)
|
|
15
|
+
- Auto-labeling: finding-auto-label (auto-label findings based on content analysis)
|
|
16
|
+
|
|
5
17
|
## [3.77.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;AAyuBH;;;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,CAm3F1D"}
|
package/dist/cli.js
CHANGED
|
@@ -564,6 +564,14 @@ 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
|
|
567
575
|
judges tune Analyze project and suggest optimal config
|
|
568
576
|
judges list List all available judges
|
|
569
577
|
judges version Show version information
|
|
@@ -3033,6 +3041,54 @@ export async function runCli(argv) {
|
|
|
3033
3041
|
runFindingRootCause(argv);
|
|
3034
3042
|
return;
|
|
3035
3043
|
}
|
|
3044
|
+
// ─── Review File Filter Command ──────────────────────────────────
|
|
3045
|
+
if (args.command === "review-file-filter") {
|
|
3046
|
+
const { runReviewFileFilter } = await import("./commands/review-file-filter.js");
|
|
3047
|
+
runReviewFileFilter(argv);
|
|
3048
|
+
return;
|
|
3049
|
+
}
|
|
3050
|
+
// ─── Finding Dependency Check Command ────────────────────────────
|
|
3051
|
+
if (args.command === "finding-dependency-check") {
|
|
3052
|
+
const { runFindingDependencyCheck } = await import("./commands/finding-dependency-check.js");
|
|
3053
|
+
runFindingDependencyCheck(argv);
|
|
3054
|
+
return;
|
|
3055
|
+
}
|
|
3056
|
+
// ─── Review Incremental Command ──────────────────────────────────
|
|
3057
|
+
if (args.command === "review-incremental") {
|
|
3058
|
+
const { runReviewIncremental } = await import("./commands/review-incremental.js");
|
|
3059
|
+
runReviewIncremental(argv);
|
|
3060
|
+
return;
|
|
3061
|
+
}
|
|
3062
|
+
// ─── Finding Severity Histogram Command ──────────────────────────
|
|
3063
|
+
if (args.command === "finding-severity-histogram") {
|
|
3064
|
+
const { runFindingSeverityHistogram } = await import("./commands/finding-severity-histogram.js");
|
|
3065
|
+
runFindingSeverityHistogram(argv);
|
|
3066
|
+
return;
|
|
3067
|
+
}
|
|
3068
|
+
// ─── Review Plugin Manage Command ────────────────────────────────
|
|
3069
|
+
if (args.command === "review-plugin-manage") {
|
|
3070
|
+
const { runReviewPluginManage } = await import("./commands/review-plugin-manage.js");
|
|
3071
|
+
runReviewPluginManage(argv);
|
|
3072
|
+
return;
|
|
3073
|
+
}
|
|
3074
|
+
// ─── Finding Dedup Cross File Command ────────────────────────────
|
|
3075
|
+
if (args.command === "finding-dedup-cross-file") {
|
|
3076
|
+
const { runFindingDedupCrossFile } = await import("./commands/finding-dedup-cross-file.js");
|
|
3077
|
+
runFindingDedupCrossFile(argv);
|
|
3078
|
+
return;
|
|
3079
|
+
}
|
|
3080
|
+
// ─── Review Progress Bar Command ─────────────────────────────────
|
|
3081
|
+
if (args.command === "review-progress-bar") {
|
|
3082
|
+
const { runReviewProgressBar } = await import("./commands/review-progress-bar.js");
|
|
3083
|
+
runReviewProgressBar(argv);
|
|
3084
|
+
return;
|
|
3085
|
+
}
|
|
3086
|
+
// ─── Finding Auto Label Command ──────────────────────────────────
|
|
3087
|
+
if (args.command === "finding-auto-label") {
|
|
3088
|
+
const { runFindingAutoLabel } = await import("./commands/finding-auto-label.js");
|
|
3089
|
+
runFindingAutoLabel(argv);
|
|
3090
|
+
return;
|
|
3091
|
+
}
|
|
3036
3092
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3037
3093
|
if (args.command === "tune") {
|
|
3038
3094
|
const { runTune } = await import("./commands/tune.js");
|