@kevinrabun/judges 3.89.0 → 3.90.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 +13 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +63 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/finding-auto-tag.d.ts +5 -0
- package/dist/commands/finding-auto-tag.d.ts.map +1 -0
- package/dist/commands/finding-auto-tag.js +114 -0
- package/dist/commands/finding-auto-tag.js.map +1 -0
- package/dist/commands/finding-cluster-group.d.ts +5 -0
- package/dist/commands/finding-cluster-group.d.ts.map +1 -0
- package/dist/commands/finding-cluster-group.js +106 -0
- package/dist/commands/finding-cluster-group.js.map +1 -0
- package/dist/commands/finding-evidence-collect.d.ts +5 -0
- package/dist/commands/finding-evidence-collect.d.ts.map +1 -0
- package/dist/commands/finding-evidence-collect.js +115 -0
- package/dist/commands/finding-evidence-collect.js.map +1 -0
- package/dist/commands/finding-resolution-tracker.d.ts +5 -0
- package/dist/commands/finding-resolution-tracker.d.ts.map +1 -0
- package/dist/commands/finding-resolution-tracker.js +164 -0
- package/dist/commands/finding-resolution-tracker.js.map +1 -0
- package/dist/commands/finding-trend-analysis.d.ts +5 -0
- package/dist/commands/finding-trend-analysis.d.ts.map +1 -0
- package/dist/commands/finding-trend-analysis.js +96 -0
- package/dist/commands/finding-trend-analysis.js.map +1 -0
- package/dist/commands/review-batch-mode.d.ts +5 -0
- package/dist/commands/review-batch-mode.d.ts.map +1 -0
- package/dist/commands/review-batch-mode.js +98 -0
- package/dist/commands/review-batch-mode.js.map +1 -0
- package/dist/commands/review-compliance-gate.d.ts +5 -0
- package/dist/commands/review-compliance-gate.d.ts.map +1 -0
- package/dist/commands/review-compliance-gate.js +152 -0
- package/dist/commands/review-compliance-gate.js.map +1 -0
- package/dist/commands/review-threshold-tune.d.ts +5 -0
- package/dist/commands/review-threshold-tune.d.ts.map +1 -0
- package/dist/commands/review-threshold-tune.js +136 -0
- package/dist/commands/review-threshold-tune.js.map +1 -0
- package/dist/commands/review-webhook-notify.d.ts +5 -0
- package/dist/commands/review-webhook-notify.d.ts.map +1 -0
- package/dist/commands/review-webhook-notify.js +146 -0
- package/dist/commands/review-webhook-notify.js.map +1 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.90.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Batch review processing for multiple verdict files: review-batch-mode
|
|
9
|
+
- Finding trend analysis across historical reports: finding-trend-analysis
|
|
10
|
+
- Automatic content-based finding tagging: finding-auto-tag
|
|
11
|
+
- Webhook notification configuration and preview: review-webhook-notify
|
|
12
|
+
- Evidence collection with source code snippets: finding-evidence-collect
|
|
13
|
+
- Compliance gate with configurable policies: review-compliance-gate
|
|
14
|
+
- Finding resolution tracker with sync and status updates: finding-resolution-tracker
|
|
15
|
+
- Threshold tuning suggestions based on historical data: review-threshold-tune
|
|
16
|
+
- Finding cluster grouping by rule prefix: finding-cluster-group
|
|
17
|
+
|
|
5
18
|
## [3.89.0] — 2026-03-14
|
|
6
19
|
|
|
7
20
|
### 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;AAo1BH;;;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,CAgmH1D"}
|
package/dist/cli.js
CHANGED
|
@@ -670,6 +670,15 @@ USAGE:
|
|
|
670
670
|
judges review-perf-profile Profile review performance
|
|
671
671
|
judges finding-false-positive-log Track false positive findings
|
|
672
672
|
judges review-guardrail Define and enforce review guardrails
|
|
673
|
+
judges review-batch-mode Batch review processing
|
|
674
|
+
judges finding-trend-analysis Analyze finding trends over time
|
|
675
|
+
judges finding-auto-tag Auto-tag findings by content
|
|
676
|
+
judges review-webhook-notify Configure webhook notifications
|
|
677
|
+
judges finding-evidence-collect Collect evidence for findings
|
|
678
|
+
judges review-compliance-gate Compliance gate for reviews
|
|
679
|
+
judges finding-resolution-tracker Track finding resolutions
|
|
680
|
+
judges review-threshold-tune Tune review thresholds
|
|
681
|
+
judges finding-cluster-group Group findings into clusters
|
|
673
682
|
judges tune Analyze project and suggest optimal config
|
|
674
683
|
judges list List all available judges
|
|
675
684
|
judges version Show version information
|
|
@@ -3775,6 +3784,60 @@ export async function runCli(argv) {
|
|
|
3775
3784
|
runReviewGuardrail(argv);
|
|
3776
3785
|
return;
|
|
3777
3786
|
}
|
|
3787
|
+
// ─── Review Batch Mode Command ────────────────────────────────────
|
|
3788
|
+
if (args.command === "review-batch-mode") {
|
|
3789
|
+
const { runReviewBatchMode } = await import("./commands/review-batch-mode.js");
|
|
3790
|
+
runReviewBatchMode(argv);
|
|
3791
|
+
return;
|
|
3792
|
+
}
|
|
3793
|
+
// ─── Finding Trend Analysis Command ──────────────────────────────
|
|
3794
|
+
if (args.command === "finding-trend-analysis") {
|
|
3795
|
+
const { runFindingTrendAnalysis } = await import("./commands/finding-trend-analysis.js");
|
|
3796
|
+
runFindingTrendAnalysis(argv);
|
|
3797
|
+
return;
|
|
3798
|
+
}
|
|
3799
|
+
// ─── Finding Auto Tag Command ─────────────────────────────────────
|
|
3800
|
+
if (args.command === "finding-auto-tag") {
|
|
3801
|
+
const { runFindingAutoTag } = await import("./commands/finding-auto-tag.js");
|
|
3802
|
+
runFindingAutoTag(argv);
|
|
3803
|
+
return;
|
|
3804
|
+
}
|
|
3805
|
+
// ─── Review Webhook Notify Command ────────────────────────────────
|
|
3806
|
+
if (args.command === "review-webhook-notify") {
|
|
3807
|
+
const { runReviewWebhookNotify } = await import("./commands/review-webhook-notify.js");
|
|
3808
|
+
runReviewWebhookNotify(argv);
|
|
3809
|
+
return;
|
|
3810
|
+
}
|
|
3811
|
+
// ─── Finding Evidence Collect Command ─────────────────────────────
|
|
3812
|
+
if (args.command === "finding-evidence-collect") {
|
|
3813
|
+
const { runFindingEvidenceCollect } = await import("./commands/finding-evidence-collect.js");
|
|
3814
|
+
runFindingEvidenceCollect(argv);
|
|
3815
|
+
return;
|
|
3816
|
+
}
|
|
3817
|
+
// ─── Review Compliance Gate Command ───────────────────────────────
|
|
3818
|
+
if (args.command === "review-compliance-gate") {
|
|
3819
|
+
const { runReviewComplianceGate } = await import("./commands/review-compliance-gate.js");
|
|
3820
|
+
runReviewComplianceGate(argv);
|
|
3821
|
+
return;
|
|
3822
|
+
}
|
|
3823
|
+
// ─── Finding Resolution Tracker Command ───────────────────────────
|
|
3824
|
+
if (args.command === "finding-resolution-tracker") {
|
|
3825
|
+
const { runFindingResolutionTracker } = await import("./commands/finding-resolution-tracker.js");
|
|
3826
|
+
runFindingResolutionTracker(argv);
|
|
3827
|
+
return;
|
|
3828
|
+
}
|
|
3829
|
+
// ─── Review Threshold Tune Command ────────────────────────────────
|
|
3830
|
+
if (args.command === "review-threshold-tune") {
|
|
3831
|
+
const { runReviewThresholdTune } = await import("./commands/review-threshold-tune.js");
|
|
3832
|
+
runReviewThresholdTune(argv);
|
|
3833
|
+
return;
|
|
3834
|
+
}
|
|
3835
|
+
// ─── Finding Cluster Group Command ────────────────────────────────
|
|
3836
|
+
if (args.command === "finding-cluster-group") {
|
|
3837
|
+
const { runFindingClusterGroup } = await import("./commands/finding-cluster-group.js");
|
|
3838
|
+
runFindingClusterGroup(argv);
|
|
3839
|
+
return;
|
|
3840
|
+
}
|
|
3778
3841
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3779
3842
|
if (args.command === "tune") {
|
|
3780
3843
|
const { runTune } = await import("./commands/tune.js");
|