@kevinrabun/judges 3.91.0 → 3.93.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 +26 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +126 -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-fix-suggest.d.ts +5 -0
- package/dist/commands/finding-fix-suggest.d.ts.map +1 -0
- package/dist/commands/finding-fix-suggest.js +89 -0
- package/dist/commands/finding-fix-suggest.js.map +1 -0
- package/dist/commands/finding-link-graph.d.ts +5 -0
- package/dist/commands/finding-link-graph.d.ts.map +1 -0
- package/dist/commands/finding-link-graph.js +145 -0
- package/dist/commands/finding-link-graph.js.map +1 -0
- package/dist/commands/finding-ownership-map.d.ts +5 -0
- package/dist/commands/finding-ownership-map.d.ts.map +1 -0
- package/dist/commands/finding-ownership-map.js +118 -0
- package/dist/commands/finding-ownership-map.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-audit-trail.d.ts +5 -0
- package/dist/commands/review-audit-trail.d.ts.map +1 -0
- package/dist/commands/review-audit-trail.js +97 -0
- package/dist/commands/review-audit-trail.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-compliance-report.d.ts +5 -0
- package/dist/commands/review-compliance-report.d.ts.map +1 -0
- package/dist/commands/review-compliance-report.js +128 -0
- package/dist/commands/review-compliance-report.js.map +1 -0
- package/dist/commands/review-config-template.d.ts +5 -0
- package/dist/commands/review-config-template.d.ts.map +1 -0
- package/dist/commands/review-config-template.js +113 -0
- package/dist/commands/review-config-template.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-progress-track.d.ts +5 -0
- package/dist/commands/review-progress-track.d.ts.map +1 -0
- package/dist/commands/review-progress-track.js +95 -0
- package/dist/commands/review-progress-track.js.map +1 -0
- package/dist/commands/review-report-schedule.d.ts +5 -0
- package/dist/commands/review-report-schedule.d.ts.map +1 -0
- package/dist/commands/review-report-schedule.js +97 -0
- package/dist/commands/review-report-schedule.js.map +1 -0
- package/dist/commands/review-slack-format.d.ts +5 -0
- package/dist/commands/review-slack-format.d.ts.map +1 -0
- package/dist/commands/review-slack-format.js +114 -0
- package/dist/commands/review-slack-format.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,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.93.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Format review summaries for Slack-compatible output: review-slack-format
|
|
9
|
+
- Generate config templates for common review scenarios: review-config-template
|
|
10
|
+
- Suggest fixes for findings with code-level recommendations: finding-fix-suggest
|
|
11
|
+
- Track review progress across multiple runs: review-progress-track
|
|
12
|
+
- Map findings to code owners and maintainers: finding-ownership-map
|
|
13
|
+
- Manage scheduled report generation: review-report-schedule
|
|
14
|
+
- Build finding relationship graphs for dependency analysis: finding-link-graph
|
|
15
|
+
- Maintain review audit trails with full history: review-audit-trail
|
|
16
|
+
- Generate compliance reports from review findings: review-compliance-report
|
|
17
|
+
|
|
18
|
+
## [3.92.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Auto-group findings into logical categories by content analysis: finding-auto-group
|
|
22
|
+
- Manage finding suppression lists with expiry support: finding-suppression-list
|
|
23
|
+
- Show plugin loading status and domain filtering: review-plugin-status
|
|
24
|
+
- Cross-reference findings across multiple review files: finding-cross-ref
|
|
25
|
+
- CI gate integration with configurable pass/fail policies: review-ci-gate
|
|
26
|
+
- Team review statistics with aggregated metrics: review-team-stats
|
|
27
|
+
- Detect recurring finding patterns and co-occurrences: finding-pattern-detect
|
|
28
|
+
- Identify review coverage gaps and missing judges: review-coverage-gap
|
|
29
|
+
- Track review feedback loop with trend analysis: review-feedback-loop
|
|
30
|
+
|
|
5
31
|
## [3.91.0] — 2026-03-14
|
|
6
32
|
|
|
7
33
|
### 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;AA+2BH;;;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,CA6xH1D"}
|
package/dist/cli.js
CHANGED
|
@@ -688,6 +688,24 @@ 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
|
|
700
|
+
judges review-slack-format Format review summaries for Slack
|
|
701
|
+
judges review-config-template Generate config templates
|
|
702
|
+
judges finding-fix-suggest Suggest fixes for findings
|
|
703
|
+
judges review-progress-track Track review progress over time
|
|
704
|
+
judges finding-ownership-map Map findings to code owners
|
|
705
|
+
judges review-report-schedule Manage report schedules
|
|
706
|
+
judges finding-link-graph Build finding relationship graph
|
|
707
|
+
judges review-audit-trail Maintain review audit trail
|
|
708
|
+
judges review-compliance-report Generate compliance reports
|
|
691
709
|
judges tune Analyze project and suggest optimal config
|
|
692
710
|
judges list List all available judges
|
|
693
711
|
judges version Show version information
|
|
@@ -3901,6 +3919,114 @@ export async function runCli(argv) {
|
|
|
3901
3919
|
runFindingMetadataEnrich(argv);
|
|
3902
3920
|
return;
|
|
3903
3921
|
}
|
|
3922
|
+
// ─── Finding Auto Group Command ──────────────────────────────────
|
|
3923
|
+
if (args.command === "finding-auto-group") {
|
|
3924
|
+
const { runFindingAutoGroup } = await import("./commands/finding-auto-group.js");
|
|
3925
|
+
runFindingAutoGroup(argv);
|
|
3926
|
+
return;
|
|
3927
|
+
}
|
|
3928
|
+
// ─── Finding Suppression List Command ─────────────────────────────
|
|
3929
|
+
if (args.command === "finding-suppression-list") {
|
|
3930
|
+
const { runFindingSuppressionList } = await import("./commands/finding-suppression-list.js");
|
|
3931
|
+
runFindingSuppressionList(argv);
|
|
3932
|
+
return;
|
|
3933
|
+
}
|
|
3934
|
+
// ─── Review Plugin Status Command ─────────────────────────────────
|
|
3935
|
+
if (args.command === "review-plugin-status") {
|
|
3936
|
+
const { runReviewPluginStatus } = await import("./commands/review-plugin-status.js");
|
|
3937
|
+
runReviewPluginStatus(argv);
|
|
3938
|
+
return;
|
|
3939
|
+
}
|
|
3940
|
+
// ─── Finding Cross Ref Command ────────────────────────────────────
|
|
3941
|
+
if (args.command === "finding-cross-ref") {
|
|
3942
|
+
const { runFindingCrossRef } = await import("./commands/finding-cross-ref.js");
|
|
3943
|
+
runFindingCrossRef(argv);
|
|
3944
|
+
return;
|
|
3945
|
+
}
|
|
3946
|
+
// ─── Review CI Gate Command ───────────────────────────────────────
|
|
3947
|
+
if (args.command === "review-ci-gate") {
|
|
3948
|
+
const { runReviewCiGate } = await import("./commands/review-ci-gate.js");
|
|
3949
|
+
runReviewCiGate(argv);
|
|
3950
|
+
return;
|
|
3951
|
+
}
|
|
3952
|
+
// ─── Review Team Stats Command ────────────────────────────────────
|
|
3953
|
+
if (args.command === "review-team-stats") {
|
|
3954
|
+
const { runReviewTeamStats } = await import("./commands/review-team-stats.js");
|
|
3955
|
+
runReviewTeamStats(argv);
|
|
3956
|
+
return;
|
|
3957
|
+
}
|
|
3958
|
+
// ─── Finding Pattern Detect Command ───────────────────────────────
|
|
3959
|
+
if (args.command === "finding-pattern-detect") {
|
|
3960
|
+
const { runFindingPatternDetect } = await import("./commands/finding-pattern-detect.js");
|
|
3961
|
+
runFindingPatternDetect(argv);
|
|
3962
|
+
return;
|
|
3963
|
+
}
|
|
3964
|
+
// ─── Review Coverage Gap Command ──────────────────────────────────
|
|
3965
|
+
if (args.command === "review-coverage-gap") {
|
|
3966
|
+
const { runReviewCoverageGap } = await import("./commands/review-coverage-gap.js");
|
|
3967
|
+
runReviewCoverageGap(argv);
|
|
3968
|
+
return;
|
|
3969
|
+
}
|
|
3970
|
+
// ─── Review Feedback Loop Command ─────────────────────────────────
|
|
3971
|
+
if (args.command === "review-feedback-loop") {
|
|
3972
|
+
const { runReviewFeedbackLoop } = await import("./commands/review-feedback-loop.js");
|
|
3973
|
+
runReviewFeedbackLoop(argv);
|
|
3974
|
+
return;
|
|
3975
|
+
}
|
|
3976
|
+
// ─── Review Slack Format Command ──────────────────────────────────
|
|
3977
|
+
if (args.command === "review-slack-format") {
|
|
3978
|
+
const { runReviewSlackFormat } = await import("./commands/review-slack-format.js");
|
|
3979
|
+
runReviewSlackFormat(argv);
|
|
3980
|
+
return;
|
|
3981
|
+
}
|
|
3982
|
+
// ─── Review Config Template Command ───────────────────────────────
|
|
3983
|
+
if (args.command === "review-config-template") {
|
|
3984
|
+
const { runReviewConfigTemplate } = await import("./commands/review-config-template.js");
|
|
3985
|
+
runReviewConfigTemplate(argv);
|
|
3986
|
+
return;
|
|
3987
|
+
}
|
|
3988
|
+
// ─── Finding Fix Suggest Command ──────────────────────────────────
|
|
3989
|
+
if (args.command === "finding-fix-suggest") {
|
|
3990
|
+
const { runFindingFixSuggest } = await import("./commands/finding-fix-suggest.js");
|
|
3991
|
+
runFindingFixSuggest(argv);
|
|
3992
|
+
return;
|
|
3993
|
+
}
|
|
3994
|
+
// ─── Review Progress Track Command ────────────────────────────────
|
|
3995
|
+
if (args.command === "review-progress-track") {
|
|
3996
|
+
const { runReviewProgressTrack } = await import("./commands/review-progress-track.js");
|
|
3997
|
+
runReviewProgressTrack(argv);
|
|
3998
|
+
return;
|
|
3999
|
+
}
|
|
4000
|
+
// ─── Finding Ownership Map Command ────────────────────────────────
|
|
4001
|
+
if (args.command === "finding-ownership-map") {
|
|
4002
|
+
const { runFindingOwnershipMap } = await import("./commands/finding-ownership-map.js");
|
|
4003
|
+
runFindingOwnershipMap(argv);
|
|
4004
|
+
return;
|
|
4005
|
+
}
|
|
4006
|
+
// ─── Review Report Schedule Command ───────────────────────────────
|
|
4007
|
+
if (args.command === "review-report-schedule") {
|
|
4008
|
+
const { runReviewReportSchedule } = await import("./commands/review-report-schedule.js");
|
|
4009
|
+
runReviewReportSchedule(argv);
|
|
4010
|
+
return;
|
|
4011
|
+
}
|
|
4012
|
+
// ─── Finding Link Graph Command ───────────────────────────────────
|
|
4013
|
+
if (args.command === "finding-link-graph") {
|
|
4014
|
+
const { runFindingLinkGraph } = await import("./commands/finding-link-graph.js");
|
|
4015
|
+
runFindingLinkGraph(argv);
|
|
4016
|
+
return;
|
|
4017
|
+
}
|
|
4018
|
+
// ─── Review Audit Trail Command ───────────────────────────────────
|
|
4019
|
+
if (args.command === "review-audit-trail") {
|
|
4020
|
+
const { runReviewAuditTrail } = await import("./commands/review-audit-trail.js");
|
|
4021
|
+
runReviewAuditTrail(argv);
|
|
4022
|
+
return;
|
|
4023
|
+
}
|
|
4024
|
+
// ─── Review Compliance Report Command ─────────────────────────────
|
|
4025
|
+
if (args.command === "review-compliance-report") {
|
|
4026
|
+
const { runReviewComplianceReport } = await import("./commands/review-compliance-report.js");
|
|
4027
|
+
runReviewComplianceReport(argv);
|
|
4028
|
+
return;
|
|
4029
|
+
}
|
|
3904
4030
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3905
4031
|
if (args.command === "tune") {
|
|
3906
4032
|
const { runTune } = await import("./commands/tune.js");
|