@kevinrabun/judges 3.91.0 → 3.92.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-group.d.ts +5 -0
- package/dist/commands/finding-auto-group.d.ts.map +1 -0
- package/dist/commands/finding-auto-group.js +109 -0
- package/dist/commands/finding-auto-group.js.map +1 -0
- package/dist/commands/finding-cross-ref.d.ts +5 -0
- package/dist/commands/finding-cross-ref.d.ts.map +1 -0
- package/dist/commands/finding-cross-ref.js +99 -0
- package/dist/commands/finding-cross-ref.js.map +1 -0
- package/dist/commands/finding-pattern-detect.d.ts +5 -0
- package/dist/commands/finding-pattern-detect.d.ts.map +1 -0
- package/dist/commands/finding-pattern-detect.js +128 -0
- package/dist/commands/finding-pattern-detect.js.map +1 -0
- package/dist/commands/finding-suppression-list.d.ts +5 -0
- package/dist/commands/finding-suppression-list.d.ts.map +1 -0
- package/dist/commands/finding-suppression-list.js +120 -0
- package/dist/commands/finding-suppression-list.js.map +1 -0
- package/dist/commands/review-ci-gate.d.ts +5 -0
- package/dist/commands/review-ci-gate.d.ts.map +1 -0
- package/dist/commands/review-ci-gate.js +115 -0
- package/dist/commands/review-ci-gate.js.map +1 -0
- package/dist/commands/review-coverage-gap.d.ts +5 -0
- package/dist/commands/review-coverage-gap.d.ts.map +1 -0
- package/dist/commands/review-coverage-gap.js +121 -0
- package/dist/commands/review-coverage-gap.js.map +1 -0
- package/dist/commands/review-feedback-loop.d.ts +5 -0
- package/dist/commands/review-feedback-loop.d.ts.map +1 -0
- package/dist/commands/review-feedback-loop.js +114 -0
- package/dist/commands/review-feedback-loop.js.map +1 -0
- package/dist/commands/review-plugin-status.d.ts +5 -0
- package/dist/commands/review-plugin-status.d.ts.map +1 -0
- package/dist/commands/review-plugin-status.js +54 -0
- package/dist/commands/review-plugin-status.js.map +1 -0
- package/dist/commands/review-team-stats.d.ts +5 -0
- package/dist/commands/review-team-stats.d.ts.map +1 -0
- package/dist/commands/review-team-stats.js +98 -0
- package/dist/commands/review-team-stats.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.92.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Auto-group findings into logical categories by content analysis: finding-auto-group
|
|
9
|
+
- Manage finding suppression lists with expiry support: finding-suppression-list
|
|
10
|
+
- Show plugin loading status and domain filtering: review-plugin-status
|
|
11
|
+
- Cross-reference findings across multiple review files: finding-cross-ref
|
|
12
|
+
- CI gate integration with configurable pass/fail policies: review-ci-gate
|
|
13
|
+
- Team review statistics with aggregated metrics: review-team-stats
|
|
14
|
+
- Detect recurring finding patterns and co-occurrences: finding-pattern-detect
|
|
15
|
+
- Identify review coverage gaps and missing judges: review-coverage-gap
|
|
16
|
+
- Track review feedback loop with trend analysis: review-feedback-loop
|
|
17
|
+
|
|
5
18
|
## [3.91.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;AAs2BH;;;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,CA8tH1D"}
|
package/dist/cli.js
CHANGED
|
@@ -688,6 +688,15 @@ USAGE:
|
|
|
688
688
|
judges review-onboard-wizard Onboarding wizard for new users
|
|
689
689
|
judges review-cache-warm Pre-warm review cache
|
|
690
690
|
judges finding-metadata-enrich Enrich findings with metadata
|
|
691
|
+
judges finding-auto-group Auto-group findings into categories
|
|
692
|
+
judges finding-suppression-list Manage finding suppressions
|
|
693
|
+
judges review-plugin-status Show plugin loading status
|
|
694
|
+
judges finding-cross-ref Cross-reference findings across reviews
|
|
695
|
+
judges review-ci-gate CI gate integration checks
|
|
696
|
+
judges review-team-stats Team review statistics
|
|
697
|
+
judges finding-pattern-detect Detect recurring finding patterns
|
|
698
|
+
judges review-coverage-gap Identify review coverage gaps
|
|
699
|
+
judges review-feedback-loop Track review feedback over time
|
|
691
700
|
judges tune Analyze project and suggest optimal config
|
|
692
701
|
judges list List all available judges
|
|
693
702
|
judges version Show version information
|
|
@@ -3901,6 +3910,60 @@ export async function runCli(argv) {
|
|
|
3901
3910
|
runFindingMetadataEnrich(argv);
|
|
3902
3911
|
return;
|
|
3903
3912
|
}
|
|
3913
|
+
// ─── Finding Auto Group Command ──────────────────────────────────
|
|
3914
|
+
if (args.command === "finding-auto-group") {
|
|
3915
|
+
const { runFindingAutoGroup } = await import("./commands/finding-auto-group.js");
|
|
3916
|
+
runFindingAutoGroup(argv);
|
|
3917
|
+
return;
|
|
3918
|
+
}
|
|
3919
|
+
// ─── Finding Suppression List Command ─────────────────────────────
|
|
3920
|
+
if (args.command === "finding-suppression-list") {
|
|
3921
|
+
const { runFindingSuppressionList } = await import("./commands/finding-suppression-list.js");
|
|
3922
|
+
runFindingSuppressionList(argv);
|
|
3923
|
+
return;
|
|
3924
|
+
}
|
|
3925
|
+
// ─── Review Plugin Status Command ─────────────────────────────────
|
|
3926
|
+
if (args.command === "review-plugin-status") {
|
|
3927
|
+
const { runReviewPluginStatus } = await import("./commands/review-plugin-status.js");
|
|
3928
|
+
runReviewPluginStatus(argv);
|
|
3929
|
+
return;
|
|
3930
|
+
}
|
|
3931
|
+
// ─── Finding Cross Ref Command ────────────────────────────────────
|
|
3932
|
+
if (args.command === "finding-cross-ref") {
|
|
3933
|
+
const { runFindingCrossRef } = await import("./commands/finding-cross-ref.js");
|
|
3934
|
+
runFindingCrossRef(argv);
|
|
3935
|
+
return;
|
|
3936
|
+
}
|
|
3937
|
+
// ─── Review CI Gate Command ───────────────────────────────────────
|
|
3938
|
+
if (args.command === "review-ci-gate") {
|
|
3939
|
+
const { runReviewCiGate } = await import("./commands/review-ci-gate.js");
|
|
3940
|
+
runReviewCiGate(argv);
|
|
3941
|
+
return;
|
|
3942
|
+
}
|
|
3943
|
+
// ─── Review Team Stats Command ────────────────────────────────────
|
|
3944
|
+
if (args.command === "review-team-stats") {
|
|
3945
|
+
const { runReviewTeamStats } = await import("./commands/review-team-stats.js");
|
|
3946
|
+
runReviewTeamStats(argv);
|
|
3947
|
+
return;
|
|
3948
|
+
}
|
|
3949
|
+
// ─── Finding Pattern Detect Command ───────────────────────────────
|
|
3950
|
+
if (args.command === "finding-pattern-detect") {
|
|
3951
|
+
const { runFindingPatternDetect } = await import("./commands/finding-pattern-detect.js");
|
|
3952
|
+
runFindingPatternDetect(argv);
|
|
3953
|
+
return;
|
|
3954
|
+
}
|
|
3955
|
+
// ─── Review Coverage Gap Command ──────────────────────────────────
|
|
3956
|
+
if (args.command === "review-coverage-gap") {
|
|
3957
|
+
const { runReviewCoverageGap } = await import("./commands/review-coverage-gap.js");
|
|
3958
|
+
runReviewCoverageGap(argv);
|
|
3959
|
+
return;
|
|
3960
|
+
}
|
|
3961
|
+
// ─── Review Feedback Loop Command ─────────────────────────────────
|
|
3962
|
+
if (args.command === "review-feedback-loop") {
|
|
3963
|
+
const { runReviewFeedbackLoop } = await import("./commands/review-feedback-loop.js");
|
|
3964
|
+
runReviewFeedbackLoop(argv);
|
|
3965
|
+
return;
|
|
3966
|
+
}
|
|
3904
3967
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3905
3968
|
if (args.command === "tune") {
|
|
3906
3969
|
const { runTune } = await import("./commands/tune.js");
|