@kevinrabun/judges 3.102.0 → 3.104.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-annotation-export.d.ts +2 -0
- package/dist/commands/finding-annotation-export.d.ts.map +1 -0
- package/dist/commands/finding-annotation-export.js +98 -0
- package/dist/commands/finding-annotation-export.js.map +1 -0
- package/dist/commands/finding-cross-file-link.d.ts +2 -0
- package/dist/commands/finding-cross-file-link.d.ts.map +1 -0
- package/dist/commands/finding-cross-file-link.js +102 -0
- package/dist/commands/finding-cross-file-link.js.map +1 -0
- package/dist/commands/finding-dedup-smart.d.ts +2 -0
- package/dist/commands/finding-dedup-smart.d.ts.map +1 -0
- package/dist/commands/finding-dedup-smart.js +110 -0
- package/dist/commands/finding-dedup-smart.js.map +1 -0
- package/dist/commands/finding-hotspot-detect.d.ts +2 -0
- package/dist/commands/finding-hotspot-detect.d.ts.map +1 -0
- package/dist/commands/finding-hotspot-detect.js +121 -0
- package/dist/commands/finding-hotspot-detect.js.map +1 -0
- package/dist/commands/finding-merge-strategy.d.ts +2 -0
- package/dist/commands/finding-merge-strategy.d.ts.map +1 -0
- package/dist/commands/finding-merge-strategy.js +85 -0
- package/dist/commands/finding-merge-strategy.js.map +1 -0
- package/dist/commands/finding-similar-match.d.ts +2 -0
- package/dist/commands/finding-similar-match.d.ts.map +1 -0
- package/dist/commands/finding-similar-match.js +113 -0
- package/dist/commands/finding-similar-match.js.map +1 -0
- package/dist/commands/finding-trend-alert.d.ts +2 -0
- package/dist/commands/finding-trend-alert.d.ts.map +1 -0
- package/dist/commands/finding-trend-alert.js +127 -0
- package/dist/commands/finding-trend-alert.js.map +1 -0
- package/dist/commands/review-ai-feedback-loop.d.ts +2 -0
- package/dist/commands/review-ai-feedback-loop.d.ts.map +1 -0
- package/dist/commands/review-ai-feedback-loop.js +117 -0
- package/dist/commands/review-ai-feedback-loop.js.map +1 -0
- package/dist/commands/review-ci-insight.d.ts +2 -0
- package/dist/commands/review-ci-insight.d.ts.map +1 -0
- package/dist/commands/review-ci-insight.js +101 -0
- package/dist/commands/review-ci-insight.js.map +1 -0
- package/dist/commands/review-code-health-score.d.ts +2 -0
- package/dist/commands/review-code-health-score.d.ts.map +1 -0
- package/dist/commands/review-code-health-score.js +101 -0
- package/dist/commands/review-code-health-score.js.map +1 -0
- package/dist/commands/review-confidence-explain.d.ts +2 -0
- package/dist/commands/review-confidence-explain.d.ts.map +1 -0
- package/dist/commands/review-confidence-explain.js +100 -0
- package/dist/commands/review-confidence-explain.js.map +1 -0
- package/dist/commands/review-focus-area.d.ts +2 -0
- package/dist/commands/review-focus-area.d.ts.map +1 -0
- package/dist/commands/review-focus-area.js +97 -0
- package/dist/commands/review-focus-area.js.map +1 -0
- package/dist/commands/review-pr-size-check.d.ts +2 -0
- package/dist/commands/review-pr-size-check.d.ts.map +1 -0
- package/dist/commands/review-pr-size-check.js +99 -0
- package/dist/commands/review-pr-size-check.js.map +1 -0
- package/dist/commands/review-scope-suggest.d.ts +2 -0
- package/dist/commands/review-scope-suggest.d.ts.map +1 -0
- package/dist/commands/review-scope-suggest.js +113 -0
- package/dist/commands/review-scope-suggest.js.map +1 -0
- package/dist/commands/review-team-analytics.d.ts +2 -0
- package/dist/commands/review-team-analytics.d.ts.map +1 -0
- package/dist/commands/review-team-analytics.js +95 -0
- package/dist/commands/review-team-analytics.js.map +1 -0
- package/dist/commands/review-template-suggest.d.ts +2 -0
- package/dist/commands/review-template-suggest.d.ts.map +1 -0
- package/dist/commands/review-template-suggest.js +120 -0
- package/dist/commands/review-template-suggest.js.map +1 -0
- package/dist/commands/review-velocity-track.d.ts +2 -0
- package/dist/commands/review-velocity-track.d.ts.map +1 -0
- package/dist/commands/review-velocity-track.js +95 -0
- package/dist/commands/review-velocity-track.js.map +1 -0
- package/dist/commands/review-workload-balance.d.ts +2 -0
- package/dist/commands/review-workload-balance.d.ts.map +1 -0
- package/dist/commands/review-workload-balance.js +87 -0
- package/dist/commands/review-workload-balance.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.104.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Review template suggestions: review-template-suggest
|
|
9
|
+
- Code hotspot detection: finding-hotspot-detect
|
|
10
|
+
- Code health scoring: review-code-health-score
|
|
11
|
+
- Review velocity tracking: review-velocity-track
|
|
12
|
+
- Cross-file finding links: finding-cross-file-link
|
|
13
|
+
- PR size analysis: review-pr-size-check
|
|
14
|
+
- Review focus areas: review-focus-area
|
|
15
|
+
- Team review analytics: review-team-analytics
|
|
16
|
+
- Similar finding matching: finding-similar-match
|
|
17
|
+
|
|
18
|
+
## [3.103.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Confidence explainability: review-confidence-explain
|
|
22
|
+
- Cross-branch finding merge: finding-merge-strategy
|
|
23
|
+
- Review scope suggestions: review-scope-suggest
|
|
24
|
+
- AI feedback loop: review-ai-feedback-loop
|
|
25
|
+
- Finding trend alerts: finding-trend-alert
|
|
26
|
+
- Workload balancing: review-workload-balance
|
|
27
|
+
- Smart deduplication: finding-dedup-smart
|
|
28
|
+
- Annotation export: finding-annotation-export
|
|
29
|
+
- CI pipeline insights: review-ci-insight
|
|
30
|
+
|
|
5
31
|
## [3.102.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;AAk9BH;;;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,CAk9I1D"}
|
package/dist/cli.js
CHANGED
|
@@ -787,6 +787,24 @@ USAGE:
|
|
|
787
787
|
judges review-archive-search Search archived reviews
|
|
788
788
|
judges review-incident-link Link findings to incidents
|
|
789
789
|
judges finding-search-index Build/search findings index
|
|
790
|
+
judges review-confidence-explain Explain confidence levels
|
|
791
|
+
judges finding-merge-strategy Merge findings across branches
|
|
792
|
+
judges review-scope-suggest Suggest review scope
|
|
793
|
+
judges review-ai-feedback-loop AI feedback capture
|
|
794
|
+
judges finding-trend-alert Alert on finding trends
|
|
795
|
+
judges review-workload-balance Balance reviewer workload
|
|
796
|
+
judges finding-dedup-smart Smart finding dedup
|
|
797
|
+
judges finding-annotation-export Export annotations
|
|
798
|
+
judges review-ci-insight CI pipeline insights
|
|
799
|
+
judges review-template-suggest Suggest review templates
|
|
800
|
+
judges finding-hotspot-detect Detect code hotspots
|
|
801
|
+
judges review-code-health-score Code health score
|
|
802
|
+
judges review-velocity-track Track review velocity
|
|
803
|
+
judges finding-cross-file-link Cross-file finding links
|
|
804
|
+
judges review-pr-size-check PR size analysis
|
|
805
|
+
judges review-focus-area Identify focus areas
|
|
806
|
+
judges review-team-analytics Team review analytics
|
|
807
|
+
judges finding-similar-match Find similar findings
|
|
790
808
|
judges tune Analyze project and suggest optimal config
|
|
791
809
|
judges list List all available judges
|
|
792
810
|
judges version Show version information
|
|
@@ -4594,6 +4612,114 @@ export async function runCli(argv) {
|
|
|
4594
4612
|
runFindingSearchIndex(argv);
|
|
4595
4613
|
return;
|
|
4596
4614
|
}
|
|
4615
|
+
// ─── Review Confidence Explain Command ────────────────────────────
|
|
4616
|
+
if (args.command === "review-confidence-explain") {
|
|
4617
|
+
const { runReviewConfidenceExplain } = await import("./commands/review-confidence-explain.js");
|
|
4618
|
+
runReviewConfidenceExplain(argv);
|
|
4619
|
+
return;
|
|
4620
|
+
}
|
|
4621
|
+
// ─── Finding Merge Strategy Command ───────────────────────────────
|
|
4622
|
+
if (args.command === "finding-merge-strategy") {
|
|
4623
|
+
const { runFindingMergeStrategy } = await import("./commands/finding-merge-strategy.js");
|
|
4624
|
+
runFindingMergeStrategy(argv);
|
|
4625
|
+
return;
|
|
4626
|
+
}
|
|
4627
|
+
// ─── Review Scope Suggest Command ─────────────────────────────────
|
|
4628
|
+
if (args.command === "review-scope-suggest") {
|
|
4629
|
+
const { runReviewScopeSuggest } = await import("./commands/review-scope-suggest.js");
|
|
4630
|
+
runReviewScopeSuggest(argv);
|
|
4631
|
+
return;
|
|
4632
|
+
}
|
|
4633
|
+
// ─── Review AI Feedback Loop Command ──────────────────────────────
|
|
4634
|
+
if (args.command === "review-ai-feedback-loop") {
|
|
4635
|
+
const { runReviewAiFeedbackLoop } = await import("./commands/review-ai-feedback-loop.js");
|
|
4636
|
+
runReviewAiFeedbackLoop(argv);
|
|
4637
|
+
return;
|
|
4638
|
+
}
|
|
4639
|
+
// ─── Finding Trend Alert Command ──────────────────────────────────
|
|
4640
|
+
if (args.command === "finding-trend-alert") {
|
|
4641
|
+
const { runFindingTrendAlert } = await import("./commands/finding-trend-alert.js");
|
|
4642
|
+
runFindingTrendAlert(argv);
|
|
4643
|
+
return;
|
|
4644
|
+
}
|
|
4645
|
+
// ─── Review Workload Balance Command ──────────────────────────────
|
|
4646
|
+
if (args.command === "review-workload-balance") {
|
|
4647
|
+
const { runReviewWorkloadBalance } = await import("./commands/review-workload-balance.js");
|
|
4648
|
+
runReviewWorkloadBalance(argv);
|
|
4649
|
+
return;
|
|
4650
|
+
}
|
|
4651
|
+
// ─── Finding Dedup Smart Command ──────────────────────────────────
|
|
4652
|
+
if (args.command === "finding-dedup-smart") {
|
|
4653
|
+
const { runFindingDedupSmart } = await import("./commands/finding-dedup-smart.js");
|
|
4654
|
+
runFindingDedupSmart(argv);
|
|
4655
|
+
return;
|
|
4656
|
+
}
|
|
4657
|
+
// ─── Finding Annotation Export Command ────────────────────────────
|
|
4658
|
+
if (args.command === "finding-annotation-export") {
|
|
4659
|
+
const { runFindingAnnotationExport } = await import("./commands/finding-annotation-export.js");
|
|
4660
|
+
runFindingAnnotationExport(argv);
|
|
4661
|
+
return;
|
|
4662
|
+
}
|
|
4663
|
+
// ─── Review CI Insight Command ────────────────────────────────────
|
|
4664
|
+
if (args.command === "review-ci-insight") {
|
|
4665
|
+
const { runReviewCiInsight } = await import("./commands/review-ci-insight.js");
|
|
4666
|
+
runReviewCiInsight(argv);
|
|
4667
|
+
return;
|
|
4668
|
+
}
|
|
4669
|
+
// ─── Review Template Suggest Command ──────────────────────────────
|
|
4670
|
+
if (args.command === "review-template-suggest") {
|
|
4671
|
+
const { runReviewTemplateSuggest } = await import("./commands/review-template-suggest.js");
|
|
4672
|
+
runReviewTemplateSuggest(argv);
|
|
4673
|
+
return;
|
|
4674
|
+
}
|
|
4675
|
+
// ─── Finding Hotspot Detect Command ───────────────────────────────
|
|
4676
|
+
if (args.command === "finding-hotspot-detect") {
|
|
4677
|
+
const { runFindingHotspotDetect } = await import("./commands/finding-hotspot-detect.js");
|
|
4678
|
+
runFindingHotspotDetect(argv);
|
|
4679
|
+
return;
|
|
4680
|
+
}
|
|
4681
|
+
// ─── Review Code Health Score Command ─────────────────────────────
|
|
4682
|
+
if (args.command === "review-code-health-score") {
|
|
4683
|
+
const { runReviewCodeHealthScore } = await import("./commands/review-code-health-score.js");
|
|
4684
|
+
runReviewCodeHealthScore(argv);
|
|
4685
|
+
return;
|
|
4686
|
+
}
|
|
4687
|
+
// ─── Review Velocity Track Command ────────────────────────────────
|
|
4688
|
+
if (args.command === "review-velocity-track") {
|
|
4689
|
+
const { runReviewVelocityTrack } = await import("./commands/review-velocity-track.js");
|
|
4690
|
+
runReviewVelocityTrack(argv);
|
|
4691
|
+
return;
|
|
4692
|
+
}
|
|
4693
|
+
// ─── Finding Cross File Link Command ───────────────────────────────
|
|
4694
|
+
if (args.command === "finding-cross-file-link") {
|
|
4695
|
+
const { runFindingCrossFileLink } = await import("./commands/finding-cross-file-link.js");
|
|
4696
|
+
runFindingCrossFileLink(argv);
|
|
4697
|
+
return;
|
|
4698
|
+
}
|
|
4699
|
+
// ─── Review PR Size Check Command ─────────────────────────────────
|
|
4700
|
+
if (args.command === "review-pr-size-check") {
|
|
4701
|
+
const { runReviewPrSizeCheck } = await import("./commands/review-pr-size-check.js");
|
|
4702
|
+
runReviewPrSizeCheck(argv);
|
|
4703
|
+
return;
|
|
4704
|
+
}
|
|
4705
|
+
// ─── Review Focus Area Command ────────────────────────────────────
|
|
4706
|
+
if (args.command === "review-focus-area") {
|
|
4707
|
+
const { runReviewFocusArea } = await import("./commands/review-focus-area.js");
|
|
4708
|
+
runReviewFocusArea(argv);
|
|
4709
|
+
return;
|
|
4710
|
+
}
|
|
4711
|
+
// ─── Review Team Analytics Command ────────────────────────────────
|
|
4712
|
+
if (args.command === "review-team-analytics") {
|
|
4713
|
+
const { runReviewTeamAnalytics } = await import("./commands/review-team-analytics.js");
|
|
4714
|
+
runReviewTeamAnalytics(argv);
|
|
4715
|
+
return;
|
|
4716
|
+
}
|
|
4717
|
+
// ─── Finding Similar Match Command ─────────────────────────────────
|
|
4718
|
+
if (args.command === "finding-similar-match") {
|
|
4719
|
+
const { runFindingSimilarMatch } = await import("./commands/finding-similar-match.js");
|
|
4720
|
+
runFindingSimilarMatch(argv);
|
|
4721
|
+
return;
|
|
4722
|
+
}
|
|
4597
4723
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4598
4724
|
if (args.command === "tune") {
|
|
4599
4725
|
const { runTune } = await import("./commands/tune.js");
|