@kevinrabun/judges 3.75.0 → 3.77.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-age-report.d.ts +5 -0
- package/dist/commands/finding-age-report.d.ts.map +1 -0
- package/dist/commands/finding-age-report.js +155 -0
- package/dist/commands/finding-age-report.js.map +1 -0
- package/dist/commands/finding-batch-resolve.d.ts +5 -0
- package/dist/commands/finding-batch-resolve.d.ts.map +1 -0
- package/dist/commands/finding-batch-resolve.js +166 -0
- package/dist/commands/finding-batch-resolve.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-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-snippet.d.ts +5 -0
- package/dist/commands/finding-snippet.d.ts.map +1 -0
- package/dist/commands/finding-snippet.js +103 -0
- package/dist/commands/finding-snippet.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/finding-trend.d.ts +5 -0
- package/dist/commands/finding-trend.d.ts.map +1 -0
- package/dist/commands/finding-trend.js +119 -0
- package/dist/commands/finding-trend.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-env-check.d.ts +5 -0
- package/dist/commands/review-env-check.d.ts.map +1 -0
- package/dist/commands/review-env-check.js +116 -0
- package/dist/commands/review-env-check.js.map +1 -0
- package/dist/commands/review-health-check.d.ts +5 -0
- package/dist/commands/review-health-check.d.ts.map +1 -0
- package/dist/commands/review-health-check.js +149 -0
- package/dist/commands/review-health-check.js.map +1 -0
- package/dist/commands/review-integration-test.d.ts +5 -0
- package/dist/commands/review-integration-test.d.ts.map +1 -0
- package/dist/commands/review-integration-test.js +146 -0
- package/dist/commands/review-integration-test.js.map +1 -0
- package/dist/commands/review-parallel-diff.d.ts +5 -0
- package/dist/commands/review-parallel-diff.d.ts.map +1 -0
- package/dist/commands/review-parallel-diff.js +147 -0
- package/dist/commands/review-parallel-diff.js.map +1 -0
- package/dist/commands/review-rule-stats.d.ts +5 -0
- package/dist/commands/review-rule-stats.d.ts.map +1 -0
- package/dist/commands/review-rule-stats.js +162 -0
- package/dist/commands/review-rule-stats.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.77.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Auto-merge: review-auto-merge (auto-merge reviews passing all checks)
|
|
9
|
+
- Finding correlation: finding-correlate (correlate related findings across files)
|
|
10
|
+
- Dry run: review-dry-run (simulate reviews without persisting results)
|
|
11
|
+
- Suppress patterns: finding-suppress-pattern (suppress findings by glob pattern)
|
|
12
|
+
- Cache management: review-cache-clear (clear review caches selectively)
|
|
13
|
+
- Impact scoring: finding-impact-score (score findings by estimated impact)
|
|
14
|
+
- Compliance checks: review-compliance-check (OWASP/CWE compliance mapping)
|
|
15
|
+
- Root cause analysis: finding-root-cause (identify root causes of recurring findings)
|
|
16
|
+
|
|
17
|
+
## [3.76.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Finding trends: finding-trend (show finding trends over time)
|
|
21
|
+
- Code snippets: finding-snippet (extract code snippets from findings with context)
|
|
22
|
+
- Environment check: review-env-check (verify review environment prerequisites)
|
|
23
|
+
- Batch resolve: finding-batch-resolve (resolve multiple findings in bulk)
|
|
24
|
+
- CI/CD integration test: review-integration-test (validate CI/CD integration)
|
|
25
|
+
- Health check: review-health-check (diagnose review system health)
|
|
26
|
+
- Age report: finding-age-report (report on finding ages and staleness)
|
|
27
|
+
- Rule stats: review-rule-stats (per-rule statistics across reviews)
|
|
28
|
+
- Parallel diff: review-parallel-diff (review multiple diff hunks)
|
|
29
|
+
|
|
5
30
|
## [3.75.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;AAiuBH;;;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,CA2zF1D"}
|
package/dist/cli.js
CHANGED
|
@@ -547,6 +547,23 @@ USAGE:
|
|
|
547
547
|
judges finding-remediation-plan Generate remediation plans from findings
|
|
548
548
|
judges review-config-validate Validate review configuration files
|
|
549
549
|
judges review-rate-limit Control review execution frequency
|
|
550
|
+
judges finding-trend Show finding trends over time
|
|
551
|
+
judges finding-snippet Extract code snippets from findings
|
|
552
|
+
judges review-env-check Verify review environment prerequisites
|
|
553
|
+
judges finding-batch-resolve Resolve multiple findings in bulk
|
|
554
|
+
judges review-integration-test Validate CI/CD integration
|
|
555
|
+
judges review-health-check Diagnose review system health
|
|
556
|
+
judges finding-age-report Report on finding ages and staleness
|
|
557
|
+
judges review-rule-stats Per-rule statistics across reviews
|
|
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
|
|
550
567
|
judges tune Analyze project and suggest optimal config
|
|
551
568
|
judges list List all available judges
|
|
552
569
|
judges version Show version information
|
|
@@ -2914,6 +2931,108 @@ export async function runCli(argv) {
|
|
|
2914
2931
|
runReviewRateLimit(argv);
|
|
2915
2932
|
return;
|
|
2916
2933
|
}
|
|
2934
|
+
// ─── Finding Trend Command ────────────────────────────────────────
|
|
2935
|
+
if (args.command === "finding-trend") {
|
|
2936
|
+
const { runFindingTrend } = await import("./commands/finding-trend.js");
|
|
2937
|
+
runFindingTrend(argv);
|
|
2938
|
+
return;
|
|
2939
|
+
}
|
|
2940
|
+
// ─── Finding Snippet Command ──────────────────────────────────────
|
|
2941
|
+
if (args.command === "finding-snippet") {
|
|
2942
|
+
const { runFindingSnippet } = await import("./commands/finding-snippet.js");
|
|
2943
|
+
runFindingSnippet(argv);
|
|
2944
|
+
return;
|
|
2945
|
+
}
|
|
2946
|
+
// ─── Review Env Check Command ─────────────────────────────────────
|
|
2947
|
+
if (args.command === "review-env-check") {
|
|
2948
|
+
const { runReviewEnvCheck } = await import("./commands/review-env-check.js");
|
|
2949
|
+
runReviewEnvCheck(argv);
|
|
2950
|
+
return;
|
|
2951
|
+
}
|
|
2952
|
+
// ─── Finding Batch Resolve Command ────────────────────────────────
|
|
2953
|
+
if (args.command === "finding-batch-resolve") {
|
|
2954
|
+
const { runFindingBatchResolve } = await import("./commands/finding-batch-resolve.js");
|
|
2955
|
+
runFindingBatchResolve(argv);
|
|
2956
|
+
return;
|
|
2957
|
+
}
|
|
2958
|
+
// ─── Review Integration Test Command ──────────────────────────────
|
|
2959
|
+
if (args.command === "review-integration-test") {
|
|
2960
|
+
const { runReviewIntegrationTest } = await import("./commands/review-integration-test.js");
|
|
2961
|
+
runReviewIntegrationTest(argv);
|
|
2962
|
+
return;
|
|
2963
|
+
}
|
|
2964
|
+
// ─── Review Health Check Command ──────────────────────────────────
|
|
2965
|
+
if (args.command === "review-health-check") {
|
|
2966
|
+
const { runReviewHealthCheck } = await import("./commands/review-health-check.js");
|
|
2967
|
+
runReviewHealthCheck(argv);
|
|
2968
|
+
return;
|
|
2969
|
+
}
|
|
2970
|
+
// ─── Finding Age Report Command ───────────────────────────────────
|
|
2971
|
+
if (args.command === "finding-age-report") {
|
|
2972
|
+
const { runFindingAgeReport } = await import("./commands/finding-age-report.js");
|
|
2973
|
+
runFindingAgeReport(argv);
|
|
2974
|
+
return;
|
|
2975
|
+
}
|
|
2976
|
+
// ─── Review Rule Stats Command ────────────────────────────────────
|
|
2977
|
+
if (args.command === "review-rule-stats") {
|
|
2978
|
+
const { runReviewRuleStats } = await import("./commands/review-rule-stats.js");
|
|
2979
|
+
runReviewRuleStats(argv);
|
|
2980
|
+
return;
|
|
2981
|
+
}
|
|
2982
|
+
// ─── Review Parallel Diff Command ─────────────────────────────────
|
|
2983
|
+
if (args.command === "review-parallel-diff") {
|
|
2984
|
+
const { runReviewParallelDiff } = await import("./commands/review-parallel-diff.js");
|
|
2985
|
+
runReviewParallelDiff(argv);
|
|
2986
|
+
return;
|
|
2987
|
+
}
|
|
2988
|
+
// ─── Review Auto Merge Command ────────────────────────────────────
|
|
2989
|
+
if (args.command === "review-auto-merge") {
|
|
2990
|
+
const { runReviewAutoMerge } = await import("./commands/review-auto-merge.js");
|
|
2991
|
+
runReviewAutoMerge(argv);
|
|
2992
|
+
return;
|
|
2993
|
+
}
|
|
2994
|
+
// ─── Finding Correlate Command ────────────────────────────────────
|
|
2995
|
+
if (args.command === "finding-correlate") {
|
|
2996
|
+
const { runFindingCorrelate } = await import("./commands/finding-correlate.js");
|
|
2997
|
+
runFindingCorrelate(argv);
|
|
2998
|
+
return;
|
|
2999
|
+
}
|
|
3000
|
+
// ─── Review Dry Run Command ───────────────────────────────────────
|
|
3001
|
+
if (args.command === "review-dry-run") {
|
|
3002
|
+
const { runReviewDryRun } = await import("./commands/review-dry-run.js");
|
|
3003
|
+
runReviewDryRun(argv);
|
|
3004
|
+
return;
|
|
3005
|
+
}
|
|
3006
|
+
// ─── Finding Suppress Pattern Command ─────────────────────────────
|
|
3007
|
+
if (args.command === "finding-suppress-pattern") {
|
|
3008
|
+
const { runFindingSuppressPattern } = await import("./commands/finding-suppress-pattern.js");
|
|
3009
|
+
runFindingSuppressPattern(argv);
|
|
3010
|
+
return;
|
|
3011
|
+
}
|
|
3012
|
+
// ─── Review Cache Clear Command ───────────────────────────────────
|
|
3013
|
+
if (args.command === "review-cache-clear") {
|
|
3014
|
+
const { runReviewCacheClear } = await import("./commands/review-cache-clear.js");
|
|
3015
|
+
runReviewCacheClear(argv);
|
|
3016
|
+
return;
|
|
3017
|
+
}
|
|
3018
|
+
// ─── Finding Impact Score Command ─────────────────────────────────
|
|
3019
|
+
if (args.command === "finding-impact-score") {
|
|
3020
|
+
const { runFindingImpactScore } = await import("./commands/finding-impact-score.js");
|
|
3021
|
+
runFindingImpactScore(argv);
|
|
3022
|
+
return;
|
|
3023
|
+
}
|
|
3024
|
+
// ─── Review Compliance Check Command ──────────────────────────────
|
|
3025
|
+
if (args.command === "review-compliance-check") {
|
|
3026
|
+
const { runReviewComplianceCheck } = await import("./commands/review-compliance-check.js");
|
|
3027
|
+
runReviewComplianceCheck(argv);
|
|
3028
|
+
return;
|
|
3029
|
+
}
|
|
3030
|
+
// ─── Finding Root Cause Command ───────────────────────────────────
|
|
3031
|
+
if (args.command === "finding-root-cause") {
|
|
3032
|
+
const { runFindingRootCause } = await import("./commands/finding-root-cause.js");
|
|
3033
|
+
runFindingRootCause(argv);
|
|
3034
|
+
return;
|
|
3035
|
+
}
|
|
2917
3036
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
2918
3037
|
if (args.command === "tune") {
|
|
2919
3038
|
const { runTune } = await import("./commands/tune.js");
|