@kevinrabun/judges 3.71.0 → 3.73.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 +24 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +112 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/finding-deduplicate.d.ts +5 -0
- package/dist/commands/finding-deduplicate.d.ts.map +1 -0
- package/dist/commands/finding-deduplicate.js +142 -0
- package/dist/commands/finding-deduplicate.js.map +1 -0
- package/dist/commands/finding-false-positive.d.ts +5 -0
- package/dist/commands/finding-false-positive.d.ts.map +1 -0
- package/dist/commands/finding-false-positive.js +135 -0
- package/dist/commands/finding-false-positive.js.map +1 -0
- package/dist/commands/finding-link.d.ts +5 -0
- package/dist/commands/finding-link.d.ts.map +1 -0
- package/dist/commands/finding-link.js +129 -0
- package/dist/commands/finding-link.js.map +1 -0
- package/dist/commands/finding-severity-override.d.ts +5 -0
- package/dist/commands/finding-severity-override.d.ts.map +1 -0
- package/dist/commands/finding-severity-override.js +132 -0
- package/dist/commands/finding-severity-override.js.map +1 -0
- package/dist/commands/review-approval.d.ts +5 -0
- package/dist/commands/review-approval.d.ts.map +1 -0
- package/dist/commands/review-approval.js +134 -0
- package/dist/commands/review-approval.js.map +1 -0
- package/dist/commands/review-bulk-action.d.ts +5 -0
- package/dist/commands/review-bulk-action.d.ts.map +1 -0
- package/dist/commands/review-bulk-action.js +110 -0
- package/dist/commands/review-bulk-action.js.map +1 -0
- package/dist/commands/review-compare-version.d.ts +5 -0
- package/dist/commands/review-compare-version.d.ts.map +1 -0
- package/dist/commands/review-compare-version.js +109 -0
- package/dist/commands/review-compare-version.js.map +1 -0
- package/dist/commands/review-config-export.d.ts +5 -0
- package/dist/commands/review-config-export.d.ts.map +1 -0
- package/dist/commands/review-config-export.js +125 -0
- package/dist/commands/review-config-export.js.map +1 -0
- package/dist/commands/review-depth.d.ts +5 -0
- package/dist/commands/review-depth.d.ts.map +1 -0
- package/dist/commands/review-depth.js +143 -0
- package/dist/commands/review-depth.js.map +1 -0
- package/dist/commands/review-feedback.d.ts +5 -0
- package/dist/commands/review-feedback.d.ts.map +1 -0
- package/dist/commands/review-feedback.js +146 -0
- package/dist/commands/review-feedback.js.map +1 -0
- package/dist/commands/review-ignore-path.d.ts +5 -0
- package/dist/commands/review-ignore-path.d.ts.map +1 -0
- package/dist/commands/review-ignore-path.js +148 -0
- package/dist/commands/review-ignore-path.js.map +1 -0
- package/dist/commands/review-pr-comment.d.ts +5 -0
- package/dist/commands/review-pr-comment.d.ts.map +1 -0
- package/dist/commands/review-pr-comment.js +107 -0
- package/dist/commands/review-pr-comment.js.map +1 -0
- package/dist/commands/review-retry.d.ts +5 -0
- package/dist/commands/review-retry.d.ts.map +1 -0
- package/dist/commands/review-retry.js +92 -0
- package/dist/commands/review-retry.js.map +1 -0
- package/dist/commands/review-score-history.d.ts +5 -0
- package/dist/commands/review-score-history.d.ts.map +1 -0
- package/dist/commands/review-score-history.js +138 -0
- package/dist/commands/review-score-history.js.map +1 -0
- package/dist/commands/review-session.d.ts +5 -0
- package/dist/commands/review-session.d.ts.map +1 -0
- package/dist/commands/review-session.js +151 -0
- package/dist/commands/review-session.js.map +1 -0
- package/dist/commands/review-summary-email.d.ts +5 -0
- package/dist/commands/review-summary-email.d.ts.map +1 -0
- package/dist/commands/review-summary-email.js +103 -0
- package/dist/commands/review-summary-email.js.map +1 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.73.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- False positive management: finding-false-positive (track and manage false positive findings)
|
|
9
|
+
- Review sessions: review-session (group reviews into named sessions)
|
|
10
|
+
- Bulk actions: review-bulk-action (dismiss, suppress, approve findings in bulk)
|
|
11
|
+
- Review retry: review-retry (retry failed or incomplete reviews)
|
|
12
|
+
- Review depth: review-depth (control review depth — shallow, normal, deep)
|
|
13
|
+
- Finding links: finding-link (link related findings across files)
|
|
14
|
+
- Version comparison: review-compare-version (compare results between code versions)
|
|
15
|
+
- Email summaries: review-summary-email (generate email-ready review summaries)
|
|
16
|
+
|
|
17
|
+
## [3.72.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Approval workflows: review-approval (request, approve, reject review results)
|
|
21
|
+
- Severity customization: finding-severity-override (per-project severity overrides)
|
|
22
|
+
- Config sharing: review-config-export (export and import review configurations)
|
|
23
|
+
- PR integration: review-pr-comment (generate PR comment summaries from reviews)
|
|
24
|
+
- Path management: review-ignore-path (manage path ignore lists for reviews)
|
|
25
|
+
- Deduplication: finding-deduplicate (detect and deduplicate similar findings)
|
|
26
|
+
- Score tracking: review-score-history (track review scores over time)
|
|
27
|
+
- Feedback: review-feedback (collect user feedback on review quality)
|
|
28
|
+
|
|
5
29
|
## [3.71.0] — 2026-03-14
|
|
6
30
|
|
|
7
31
|
### 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;AAgsBH;;;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,CAolF1D"}
|
package/dist/cli.js
CHANGED
|
@@ -515,6 +515,22 @@ USAGE:
|
|
|
515
515
|
judges review-onboard Guided onboarding for new team members
|
|
516
516
|
judges review-parallel Batch review multiple files
|
|
517
517
|
judges finding-context Enrich findings with surrounding code context
|
|
518
|
+
judges review-approval Approval workflows for review results
|
|
519
|
+
judges finding-severity-override Override finding severity per project
|
|
520
|
+
judges review-config-export Export / import review configurations
|
|
521
|
+
judges review-pr-comment Generate PR comment summaries from reviews
|
|
522
|
+
judges review-ignore-path Manage path ignore lists for reviews
|
|
523
|
+
judges finding-deduplicate Detect and deduplicate similar findings
|
|
524
|
+
judges review-score-history Track review scores over time
|
|
525
|
+
judges review-feedback Collect user feedback on review quality
|
|
526
|
+
judges finding-false-positive Track and manage false positive findings
|
|
527
|
+
judges review-session Group reviews into named sessions
|
|
528
|
+
judges review-bulk-action Apply bulk actions across findings
|
|
529
|
+
judges review-retry Retry failed or incomplete reviews
|
|
530
|
+
judges review-depth Control review depth (shallow/normal/deep)
|
|
531
|
+
judges finding-link Link related findings across files
|
|
532
|
+
judges review-compare-version Compare review results between versions
|
|
533
|
+
judges review-summary-email Generate email-ready review summaries
|
|
518
534
|
judges tune Analyze project and suggest optimal config
|
|
519
535
|
judges list List all available judges
|
|
520
536
|
judges version Show version information
|
|
@@ -2690,6 +2706,102 @@ export async function runCli(argv) {
|
|
|
2690
2706
|
runFindingContext(argv);
|
|
2691
2707
|
return;
|
|
2692
2708
|
}
|
|
2709
|
+
// ─── Review Approval Command ──────────────────────────────────────
|
|
2710
|
+
if (args.command === "review-approval") {
|
|
2711
|
+
const { runReviewApproval } = await import("./commands/review-approval.js");
|
|
2712
|
+
runReviewApproval(argv);
|
|
2713
|
+
return;
|
|
2714
|
+
}
|
|
2715
|
+
// ─── Finding Severity Override Command ────────────────────────────
|
|
2716
|
+
if (args.command === "finding-severity-override") {
|
|
2717
|
+
const { runFindingSeverityOverride } = await import("./commands/finding-severity-override.js");
|
|
2718
|
+
runFindingSeverityOverride(argv);
|
|
2719
|
+
return;
|
|
2720
|
+
}
|
|
2721
|
+
// ─── Review Config Export Command ─────────────────────────────────
|
|
2722
|
+
if (args.command === "review-config-export") {
|
|
2723
|
+
const { runReviewConfigExport } = await import("./commands/review-config-export.js");
|
|
2724
|
+
runReviewConfigExport(argv);
|
|
2725
|
+
return;
|
|
2726
|
+
}
|
|
2727
|
+
// ─── Review PR Comment Command ────────────────────────────────────
|
|
2728
|
+
if (args.command === "review-pr-comment") {
|
|
2729
|
+
const { runReviewPrComment } = await import("./commands/review-pr-comment.js");
|
|
2730
|
+
runReviewPrComment(argv);
|
|
2731
|
+
return;
|
|
2732
|
+
}
|
|
2733
|
+
// ─── Review Ignore Path Command ───────────────────────────────────
|
|
2734
|
+
if (args.command === "review-ignore-path") {
|
|
2735
|
+
const { runReviewIgnorePath } = await import("./commands/review-ignore-path.js");
|
|
2736
|
+
runReviewIgnorePath(argv);
|
|
2737
|
+
return;
|
|
2738
|
+
}
|
|
2739
|
+
// ─── Finding Deduplicate Command ──────────────────────────────────
|
|
2740
|
+
if (args.command === "finding-deduplicate") {
|
|
2741
|
+
const { runFindingDeduplicate } = await import("./commands/finding-deduplicate.js");
|
|
2742
|
+
runFindingDeduplicate(argv);
|
|
2743
|
+
return;
|
|
2744
|
+
}
|
|
2745
|
+
// ─── Review Score History Command ─────────────────────────────────
|
|
2746
|
+
if (args.command === "review-score-history") {
|
|
2747
|
+
const { runReviewScoreHistory } = await import("./commands/review-score-history.js");
|
|
2748
|
+
runReviewScoreHistory(argv);
|
|
2749
|
+
return;
|
|
2750
|
+
}
|
|
2751
|
+
// ─── Review Feedback Command ──────────────────────────────────────
|
|
2752
|
+
if (args.command === "review-feedback") {
|
|
2753
|
+
const { runReviewFeedback } = await import("./commands/review-feedback.js");
|
|
2754
|
+
runReviewFeedback(argv);
|
|
2755
|
+
return;
|
|
2756
|
+
}
|
|
2757
|
+
// ─── Finding False Positive Command ───────────────────────────────
|
|
2758
|
+
if (args.command === "finding-false-positive") {
|
|
2759
|
+
const { runFindingFalsePositive } = await import("./commands/finding-false-positive.js");
|
|
2760
|
+
runFindingFalsePositive(argv);
|
|
2761
|
+
return;
|
|
2762
|
+
}
|
|
2763
|
+
// ─── Review Session Command ───────────────────────────────────────
|
|
2764
|
+
if (args.command === "review-session") {
|
|
2765
|
+
const { runReviewSession } = await import("./commands/review-session.js");
|
|
2766
|
+
runReviewSession(argv);
|
|
2767
|
+
return;
|
|
2768
|
+
}
|
|
2769
|
+
// ─── Review Bulk Action Command ───────────────────────────────────
|
|
2770
|
+
if (args.command === "review-bulk-action") {
|
|
2771
|
+
const { runReviewBulkAction } = await import("./commands/review-bulk-action.js");
|
|
2772
|
+
runReviewBulkAction(argv);
|
|
2773
|
+
return;
|
|
2774
|
+
}
|
|
2775
|
+
// ─── Review Retry Command ─────────────────────────────────────────
|
|
2776
|
+
if (args.command === "review-retry") {
|
|
2777
|
+
const { runReviewRetry } = await import("./commands/review-retry.js");
|
|
2778
|
+
runReviewRetry(argv);
|
|
2779
|
+
return;
|
|
2780
|
+
}
|
|
2781
|
+
// ─── Review Depth Command ─────────────────────────────────────────
|
|
2782
|
+
if (args.command === "review-depth") {
|
|
2783
|
+
const { runReviewDepth } = await import("./commands/review-depth.js");
|
|
2784
|
+
runReviewDepth(argv);
|
|
2785
|
+
return;
|
|
2786
|
+
}
|
|
2787
|
+
// ─── Finding Link Command ─────────────────────────────────────────
|
|
2788
|
+
if (args.command === "finding-link") {
|
|
2789
|
+
const { runFindingLink } = await import("./commands/finding-link.js");
|
|
2790
|
+
runFindingLink(argv);
|
|
2791
|
+
return;
|
|
2792
|
+
}
|
|
2793
|
+
// ─── Review Compare Version Command ───────────────────────────────
|
|
2794
|
+
if (args.command === "review-compare-version") {
|
|
2795
|
+
const { runReviewCompareVersion } = await import("./commands/review-compare-version.js");
|
|
2796
|
+
runReviewCompareVersion(argv);
|
|
2797
|
+
return;
|
|
2798
|
+
}
|
|
2799
|
+
// ─── Review Summary Email Command ─────────────────────────────────
|
|
2800
|
+
if (args.command === "review-summary-email") {
|
|
2801
|
+
const { runReviewSummaryEmail } = await import("./commands/review-summary-email.js");
|
|
2802
|
+
runReviewSummaryEmail(argv);
|
|
2803
|
+
return;
|
|
2804
|
+
}
|
|
2693
2805
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
2694
2806
|
if (args.command === "tune") {
|
|
2695
2807
|
const { runTune } = await import("./commands/tune.js");
|