@kevinrabun/judges 3.76.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 +24 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +112 -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-correlate.d.ts +5 -0
- package/dist/commands/finding-correlate.d.ts.map +1 -0
- package/dist/commands/finding-correlate.js +89 -0
- package/dist/commands/finding-correlate.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-impact-score.d.ts +5 -0
- package/dist/commands/finding-impact-score.d.ts.map +1 -0
- package/dist/commands/finding-impact-score.js +124 -0
- package/dist/commands/finding-impact-score.js.map +1 -0
- package/dist/commands/finding-root-cause.d.ts +5 -0
- package/dist/commands/finding-root-cause.d.ts.map +1 -0
- package/dist/commands/finding-root-cause.js +185 -0
- package/dist/commands/finding-root-cause.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-suppress-pattern.d.ts +5 -0
- package/dist/commands/finding-suppress-pattern.d.ts.map +1 -0
- package/dist/commands/finding-suppress-pattern.js +149 -0
- package/dist/commands/finding-suppress-pattern.js.map +1 -0
- package/dist/commands/review-auto-merge.d.ts +5 -0
- package/dist/commands/review-auto-merge.d.ts.map +1 -0
- package/dist/commands/review-auto-merge.js +176 -0
- package/dist/commands/review-auto-merge.js.map +1 -0
- package/dist/commands/review-cache-clear.d.ts +5 -0
- package/dist/commands/review-cache-clear.d.ts.map +1 -0
- package/dist/commands/review-cache-clear.js +161 -0
- package/dist/commands/review-cache-clear.js.map +1 -0
- package/dist/commands/review-compliance-check.d.ts +5 -0
- package/dist/commands/review-compliance-check.d.ts.map +1 -0
- package/dist/commands/review-compliance-check.js +203 -0
- package/dist/commands/review-compliance-check.js.map +1 -0
- package/dist/commands/review-dry-run.d.ts +5 -0
- package/dist/commands/review-dry-run.d.ts.map +1 -0
- package/dist/commands/review-dry-run.js +121 -0
- package/dist/commands/review-dry-run.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,30 @@
|
|
|
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
|
+
|
|
17
|
+
## [3.77.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Auto-merge: review-auto-merge (auto-merge reviews passing all checks)
|
|
21
|
+
- Finding correlation: finding-correlate (correlate related findings across files)
|
|
22
|
+
- Dry run: review-dry-run (simulate reviews without persisting results)
|
|
23
|
+
- Suppress patterns: finding-suppress-pattern (suppress findings by glob pattern)
|
|
24
|
+
- Cache management: review-cache-clear (clear review caches selectively)
|
|
25
|
+
- Impact scoring: finding-impact-score (score findings by estimated impact)
|
|
26
|
+
- Compliance checks: review-compliance-check (OWASP/CWE compliance mapping)
|
|
27
|
+
- Root cause analysis: finding-root-cause (identify root causes of recurring findings)
|
|
28
|
+
|
|
5
29
|
## [3.76.0] — 2026-03-14
|
|
6
30
|
|
|
7
31
|
### 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
|
@@ -556,6 +556,22 @@ USAGE:
|
|
|
556
556
|
judges finding-age-report Report on finding ages and staleness
|
|
557
557
|
judges review-rule-stats Per-rule statistics across reviews
|
|
558
558
|
judges review-parallel-diff Review multiple diff hunks
|
|
559
|
+
judges review-auto-merge Auto-merge reviews that pass checks
|
|
560
|
+
judges finding-correlate Correlate related findings across files
|
|
561
|
+
judges review-dry-run Simulate review without persisting
|
|
562
|
+
judges finding-suppress-pattern Suppress findings by pattern
|
|
563
|
+
judges review-cache-clear Clear review caches selectively
|
|
564
|
+
judges finding-impact-score Score findings by estimated impact
|
|
565
|
+
judges review-compliance-check Check findings against compliance frameworks
|
|
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
|
|
559
575
|
judges tune Analyze project and suggest optimal config
|
|
560
576
|
judges list List all available judges
|
|
561
577
|
judges version Show version information
|
|
@@ -2977,6 +2993,102 @@ export async function runCli(argv) {
|
|
|
2977
2993
|
runReviewParallelDiff(argv);
|
|
2978
2994
|
return;
|
|
2979
2995
|
}
|
|
2996
|
+
// ─── Review Auto Merge Command ────────────────────────────────────
|
|
2997
|
+
if (args.command === "review-auto-merge") {
|
|
2998
|
+
const { runReviewAutoMerge } = await import("./commands/review-auto-merge.js");
|
|
2999
|
+
runReviewAutoMerge(argv);
|
|
3000
|
+
return;
|
|
3001
|
+
}
|
|
3002
|
+
// ─── Finding Correlate Command ────────────────────────────────────
|
|
3003
|
+
if (args.command === "finding-correlate") {
|
|
3004
|
+
const { runFindingCorrelate } = await import("./commands/finding-correlate.js");
|
|
3005
|
+
runFindingCorrelate(argv);
|
|
3006
|
+
return;
|
|
3007
|
+
}
|
|
3008
|
+
// ─── Review Dry Run Command ───────────────────────────────────────
|
|
3009
|
+
if (args.command === "review-dry-run") {
|
|
3010
|
+
const { runReviewDryRun } = await import("./commands/review-dry-run.js");
|
|
3011
|
+
runReviewDryRun(argv);
|
|
3012
|
+
return;
|
|
3013
|
+
}
|
|
3014
|
+
// ─── Finding Suppress Pattern Command ─────────────────────────────
|
|
3015
|
+
if (args.command === "finding-suppress-pattern") {
|
|
3016
|
+
const { runFindingSuppressPattern } = await import("./commands/finding-suppress-pattern.js");
|
|
3017
|
+
runFindingSuppressPattern(argv);
|
|
3018
|
+
return;
|
|
3019
|
+
}
|
|
3020
|
+
// ─── Review Cache Clear Command ───────────────────────────────────
|
|
3021
|
+
if (args.command === "review-cache-clear") {
|
|
3022
|
+
const { runReviewCacheClear } = await import("./commands/review-cache-clear.js");
|
|
3023
|
+
runReviewCacheClear(argv);
|
|
3024
|
+
return;
|
|
3025
|
+
}
|
|
3026
|
+
// ─── Finding Impact Score Command ─────────────────────────────────
|
|
3027
|
+
if (args.command === "finding-impact-score") {
|
|
3028
|
+
const { runFindingImpactScore } = await import("./commands/finding-impact-score.js");
|
|
3029
|
+
runFindingImpactScore(argv);
|
|
3030
|
+
return;
|
|
3031
|
+
}
|
|
3032
|
+
// ─── Review Compliance Check Command ──────────────────────────────
|
|
3033
|
+
if (args.command === "review-compliance-check") {
|
|
3034
|
+
const { runReviewComplianceCheck } = await import("./commands/review-compliance-check.js");
|
|
3035
|
+
runReviewComplianceCheck(argv);
|
|
3036
|
+
return;
|
|
3037
|
+
}
|
|
3038
|
+
// ─── Finding Root Cause Command ───────────────────────────────────
|
|
3039
|
+
if (args.command === "finding-root-cause") {
|
|
3040
|
+
const { runFindingRootCause } = await import("./commands/finding-root-cause.js");
|
|
3041
|
+
runFindingRootCause(argv);
|
|
3042
|
+
return;
|
|
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
|
+
}
|
|
2980
3092
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
2981
3093
|
if (args.command === "tune") {
|
|
2982
3094
|
const { runTune } = await import("./commands/tune.js");
|