@kevinrabun/judges 3.103.0 → 3.105.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-categorize.d.ts +2 -0
- package/dist/commands/finding-auto-categorize.d.ts.map +1 -0
- package/dist/commands/finding-auto-categorize.js +110 -0
- package/dist/commands/finding-auto-categorize.js.map +1 -0
- package/dist/commands/finding-context-summary.d.ts +2 -0
- package/dist/commands/finding-context-summary.d.ts.map +1 -0
- package/dist/commands/finding-context-summary.js +86 -0
- package/dist/commands/finding-context-summary.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-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-impact-radius.d.ts +2 -0
- package/dist/commands/finding-impact-radius.d.ts.map +1 -0
- package/dist/commands/finding-impact-radius.js +95 -0
- package/dist/commands/finding-impact-radius.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/review-approval-criteria.d.ts +2 -0
- package/dist/commands/review-approval-criteria.d.ts.map +1 -0
- package/dist/commands/review-approval-criteria.js +100 -0
- package/dist/commands/review-approval-criteria.js.map +1 -0
- package/dist/commands/review-changelog-impact.d.ts +2 -0
- package/dist/commands/review-changelog-impact.d.ts.map +1 -0
- package/dist/commands/review-changelog-impact.js +90 -0
- package/dist/commands/review-changelog-impact.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-commit-quality.d.ts +2 -0
- package/dist/commands/review-commit-quality.d.ts.map +1 -0
- package/dist/commands/review-commit-quality.js +95 -0
- package/dist/commands/review-commit-quality.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-reviewer-match.d.ts +2 -0
- package/dist/commands/review-reviewer-match.d.ts.map +1 -0
- package/dist/commands/review-reviewer-match.js +109 -0
- package/dist/commands/review-reviewer-match.js.map +1 -0
- package/dist/commands/review-risk-matrix.d.ts +2 -0
- package/dist/commands/review-risk-matrix.d.ts.map +1 -0
- package/dist/commands/review-risk-matrix.js +97 -0
- package/dist/commands/review-risk-matrix.js.map +1 -0
- package/dist/commands/review-stale-finding-clean.d.ts +2 -0
- package/dist/commands/review-stale-finding-clean.d.ts.map +1 -0
- package/dist/commands/review-stale-finding-clean.js +82 -0
- package/dist/commands/review-stale-finding-clean.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/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.105.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Risk matrix view: review-risk-matrix
|
|
9
|
+
- Approval criteria checks: review-approval-criteria
|
|
10
|
+
- Finding context summaries: finding-context-summary
|
|
11
|
+
- Changelog impact assessment: review-changelog-impact
|
|
12
|
+
- Commit quality scoring: review-commit-quality
|
|
13
|
+
- Auto-categorize findings: finding-auto-categorize
|
|
14
|
+
- Stale finding cleanup: review-stale-finding-clean
|
|
15
|
+
- Impact radius analysis: finding-impact-radius
|
|
16
|
+
- Reviewer matching: review-reviewer-match
|
|
17
|
+
|
|
18
|
+
## [3.104.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Review template suggestions: review-template-suggest
|
|
22
|
+
- Code hotspot detection: finding-hotspot-detect
|
|
23
|
+
- Code health scoring: review-code-health-score
|
|
24
|
+
- Review velocity tracking: review-velocity-track
|
|
25
|
+
- Cross-file finding links: finding-cross-file-link
|
|
26
|
+
- PR size analysis: review-pr-size-check
|
|
27
|
+
- Review focus areas: review-focus-area
|
|
28
|
+
- Team review analytics: review-team-analytics
|
|
29
|
+
- Similar finding matching: finding-similar-match
|
|
30
|
+
|
|
5
31
|
## [3.103.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;AA29BH;;;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,CAihJ1D"}
|
package/dist/cli.js
CHANGED
|
@@ -796,6 +796,24 @@ USAGE:
|
|
|
796
796
|
judges finding-dedup-smart Smart finding dedup
|
|
797
797
|
judges finding-annotation-export Export annotations
|
|
798
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
|
|
808
|
+
judges review-risk-matrix Risk matrix view
|
|
809
|
+
judges review-approval-criteria Check approval criteria
|
|
810
|
+
judges finding-context-summary Context summaries
|
|
811
|
+
judges review-changelog-impact Changelog impact
|
|
812
|
+
judges review-commit-quality Commit quality score
|
|
813
|
+
judges finding-auto-categorize Auto-categorize findings
|
|
814
|
+
judges review-stale-finding-clean Clean stale findings
|
|
815
|
+
judges finding-impact-radius Impact radius analysis
|
|
816
|
+
judges review-reviewer-match Match reviewers
|
|
799
817
|
judges tune Analyze project and suggest optimal config
|
|
800
818
|
judges list List all available judges
|
|
801
819
|
judges version Show version information
|
|
@@ -4657,6 +4675,114 @@ export async function runCli(argv) {
|
|
|
4657
4675
|
runReviewCiInsight(argv);
|
|
4658
4676
|
return;
|
|
4659
4677
|
}
|
|
4678
|
+
// ─── Review Template Suggest Command ──────────────────────────────
|
|
4679
|
+
if (args.command === "review-template-suggest") {
|
|
4680
|
+
const { runReviewTemplateSuggest } = await import("./commands/review-template-suggest.js");
|
|
4681
|
+
runReviewTemplateSuggest(argv);
|
|
4682
|
+
return;
|
|
4683
|
+
}
|
|
4684
|
+
// ─── Finding Hotspot Detect Command ───────────────────────────────
|
|
4685
|
+
if (args.command === "finding-hotspot-detect") {
|
|
4686
|
+
const { runFindingHotspotDetect } = await import("./commands/finding-hotspot-detect.js");
|
|
4687
|
+
runFindingHotspotDetect(argv);
|
|
4688
|
+
return;
|
|
4689
|
+
}
|
|
4690
|
+
// ─── Review Code Health Score Command ─────────────────────────────
|
|
4691
|
+
if (args.command === "review-code-health-score") {
|
|
4692
|
+
const { runReviewCodeHealthScore } = await import("./commands/review-code-health-score.js");
|
|
4693
|
+
runReviewCodeHealthScore(argv);
|
|
4694
|
+
return;
|
|
4695
|
+
}
|
|
4696
|
+
// ─── Review Velocity Track Command ────────────────────────────────
|
|
4697
|
+
if (args.command === "review-velocity-track") {
|
|
4698
|
+
const { runReviewVelocityTrack } = await import("./commands/review-velocity-track.js");
|
|
4699
|
+
runReviewVelocityTrack(argv);
|
|
4700
|
+
return;
|
|
4701
|
+
}
|
|
4702
|
+
// ─── Finding Cross File Link Command ───────────────────────────────
|
|
4703
|
+
if (args.command === "finding-cross-file-link") {
|
|
4704
|
+
const { runFindingCrossFileLink } = await import("./commands/finding-cross-file-link.js");
|
|
4705
|
+
runFindingCrossFileLink(argv);
|
|
4706
|
+
return;
|
|
4707
|
+
}
|
|
4708
|
+
// ─── Review PR Size Check Command ─────────────────────────────────
|
|
4709
|
+
if (args.command === "review-pr-size-check") {
|
|
4710
|
+
const { runReviewPrSizeCheck } = await import("./commands/review-pr-size-check.js");
|
|
4711
|
+
runReviewPrSizeCheck(argv);
|
|
4712
|
+
return;
|
|
4713
|
+
}
|
|
4714
|
+
// ─── Review Focus Area Command ────────────────────────────────────
|
|
4715
|
+
if (args.command === "review-focus-area") {
|
|
4716
|
+
const { runReviewFocusArea } = await import("./commands/review-focus-area.js");
|
|
4717
|
+
runReviewFocusArea(argv);
|
|
4718
|
+
return;
|
|
4719
|
+
}
|
|
4720
|
+
// ─── Review Team Analytics Command ────────────────────────────────
|
|
4721
|
+
if (args.command === "review-team-analytics") {
|
|
4722
|
+
const { runReviewTeamAnalytics } = await import("./commands/review-team-analytics.js");
|
|
4723
|
+
runReviewTeamAnalytics(argv);
|
|
4724
|
+
return;
|
|
4725
|
+
}
|
|
4726
|
+
// ─── Finding Similar Match Command ─────────────────────────────────
|
|
4727
|
+
if (args.command === "finding-similar-match") {
|
|
4728
|
+
const { runFindingSimilarMatch } = await import("./commands/finding-similar-match.js");
|
|
4729
|
+
runFindingSimilarMatch(argv);
|
|
4730
|
+
return;
|
|
4731
|
+
}
|
|
4732
|
+
// ─── Review Risk Matrix Command ───────────────────────────────────
|
|
4733
|
+
if (args.command === "review-risk-matrix") {
|
|
4734
|
+
const { runReviewRiskMatrix } = await import("./commands/review-risk-matrix.js");
|
|
4735
|
+
runReviewRiskMatrix(argv);
|
|
4736
|
+
return;
|
|
4737
|
+
}
|
|
4738
|
+
// ─── Review Approval Criteria Command ─────────────────────────────
|
|
4739
|
+
if (args.command === "review-approval-criteria") {
|
|
4740
|
+
const { runReviewApprovalCriteria } = await import("./commands/review-approval-criteria.js");
|
|
4741
|
+
runReviewApprovalCriteria(argv);
|
|
4742
|
+
return;
|
|
4743
|
+
}
|
|
4744
|
+
// ─── Finding Context Summary Command ──────────────────────────────
|
|
4745
|
+
if (args.command === "finding-context-summary") {
|
|
4746
|
+
const { runFindingContextSummary } = await import("./commands/finding-context-summary.js");
|
|
4747
|
+
runFindingContextSummary(argv);
|
|
4748
|
+
return;
|
|
4749
|
+
}
|
|
4750
|
+
// ─── Review Changelog Impact Command ──────────────────────────────
|
|
4751
|
+
if (args.command === "review-changelog-impact") {
|
|
4752
|
+
const { runReviewChangelogImpact } = await import("./commands/review-changelog-impact.js");
|
|
4753
|
+
runReviewChangelogImpact(argv);
|
|
4754
|
+
return;
|
|
4755
|
+
}
|
|
4756
|
+
// ─── Review Commit Quality Command ────────────────────────────────
|
|
4757
|
+
if (args.command === "review-commit-quality") {
|
|
4758
|
+
const { runReviewCommitQuality } = await import("./commands/review-commit-quality.js");
|
|
4759
|
+
runReviewCommitQuality(argv);
|
|
4760
|
+
return;
|
|
4761
|
+
}
|
|
4762
|
+
// ─── Finding Auto-Categorize Command ──────────────────────────────
|
|
4763
|
+
if (args.command === "finding-auto-categorize") {
|
|
4764
|
+
const { runFindingAutoCategorize } = await import("./commands/finding-auto-categorize.js");
|
|
4765
|
+
runFindingAutoCategorize(argv);
|
|
4766
|
+
return;
|
|
4767
|
+
}
|
|
4768
|
+
// ─── Review Stale Finding Clean Command ───────────────────────────
|
|
4769
|
+
if (args.command === "review-stale-finding-clean") {
|
|
4770
|
+
const { runReviewStaleFindingClean } = await import("./commands/review-stale-finding-clean.js");
|
|
4771
|
+
runReviewStaleFindingClean(argv);
|
|
4772
|
+
return;
|
|
4773
|
+
}
|
|
4774
|
+
// ─── Finding Impact Radius Command ────────────────────────────────
|
|
4775
|
+
if (args.command === "finding-impact-radius") {
|
|
4776
|
+
const { runFindingImpactRadius } = await import("./commands/finding-impact-radius.js");
|
|
4777
|
+
runFindingImpactRadius(argv);
|
|
4778
|
+
return;
|
|
4779
|
+
}
|
|
4780
|
+
// ─── Review Reviewer Match Command ────────────────────────────────
|
|
4781
|
+
if (args.command === "review-reviewer-match") {
|
|
4782
|
+
const { runReviewReviewerMatch } = await import("./commands/review-reviewer-match.js");
|
|
4783
|
+
runReviewReviewerMatch(argv);
|
|
4784
|
+
return;
|
|
4785
|
+
}
|
|
4660
4786
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4661
4787
|
if (args.command === "tune") {
|
|
4662
4788
|
const { runTune } = await import("./commands/tune.js");
|