@kevinrabun/judges 3.70.0 → 3.72.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-auto-fix.d.ts +5 -0
- package/dist/commands/finding-auto-fix.d.ts.map +1 -0
- package/dist/commands/finding-auto-fix.js +189 -0
- package/dist/commands/finding-auto-fix.js.map +1 -0
- package/dist/commands/finding-context.d.ts +5 -0
- package/dist/commands/finding-context.d.ts.map +1 -0
- package/dist/commands/finding-context.js +141 -0
- package/dist/commands/finding-context.js.map +1 -0
- 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-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-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-coverage-map.d.ts +5 -0
- package/dist/commands/review-coverage-map.d.ts.map +1 -0
- package/dist/commands/review-coverage-map.js +195 -0
- package/dist/commands/review-coverage-map.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-history-search.d.ts +5 -0
- package/dist/commands/review-history-search.d.ts.map +1 -0
- package/dist/commands/review-history-search.js +215 -0
- package/dist/commands/review-history-search.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-language-stats.d.ts +5 -0
- package/dist/commands/review-language-stats.d.ts.map +1 -0
- package/dist/commands/review-language-stats.js +153 -0
- package/dist/commands/review-language-stats.js.map +1 -0
- package/dist/commands/review-onboard.d.ts +5 -0
- package/dist/commands/review-onboard.d.ts.map +1 -0
- package/dist/commands/review-onboard.js +155 -0
- package/dist/commands/review-onboard.js.map +1 -0
- package/dist/commands/review-parallel.d.ts +5 -0
- package/dist/commands/review-parallel.d.ts.map +1 -0
- package/dist/commands/review-parallel.js +183 -0
- package/dist/commands/review-parallel.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-rollback.d.ts +5 -0
- package/dist/commands/review-rollback.d.ts.map +1 -0
- package/dist/commands/review-rollback.js +172 -0
- package/dist/commands/review-rollback.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/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.72.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Approval workflows: review-approval (request, approve, reject review results)
|
|
9
|
+
- Severity customization: finding-severity-override (per-project severity overrides)
|
|
10
|
+
- Config sharing: review-config-export (export and import review configurations)
|
|
11
|
+
- PR integration: review-pr-comment (generate PR comment summaries from reviews)
|
|
12
|
+
- Path management: review-ignore-path (manage path ignore lists for reviews)
|
|
13
|
+
- Deduplication: finding-deduplicate (detect and deduplicate similar findings)
|
|
14
|
+
- Score tracking: review-score-history (track review scores over time)
|
|
15
|
+
- Feedback: review-feedback (collect user feedback on review quality)
|
|
16
|
+
|
|
17
|
+
## [3.71.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Auto-fix: finding-auto-fix (auto-generate fix suggestions for common patterns)
|
|
21
|
+
- History: review-history-search (search through past review history)
|
|
22
|
+
- Language insights: review-language-stats (language-specific statistics)
|
|
23
|
+
- Coverage: review-coverage-map (map which files have been reviewed)
|
|
24
|
+
- Config management: review-rollback (roll back review config to a previous state)
|
|
25
|
+
- Onboarding: review-onboard (guided onboarding for new team members)
|
|
26
|
+
- Batch review: review-parallel (discover and queue multiple files for review)
|
|
27
|
+
- Context enrichment: finding-context (enrich findings with surrounding code)
|
|
28
|
+
|
|
5
29
|
## [3.70.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;AAwrBH;;;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,CA4hF1D"}
|
package/dist/cli.js
CHANGED
|
@@ -507,6 +507,22 @@ USAGE:
|
|
|
507
507
|
judges review-diff-context Show diff hunks with surrounding context
|
|
508
508
|
judges review-ci-status Check CI pipeline review status
|
|
509
509
|
judges review-team-summary Aggregate team review metrics
|
|
510
|
+
judges finding-auto-fix Auto-generate fix suggestions
|
|
511
|
+
judges review-history-search Search past review history
|
|
512
|
+
judges review-language-stats Language-specific review statistics
|
|
513
|
+
judges review-coverage-map Map which files have been reviewed
|
|
514
|
+
judges review-rollback Roll back review config to a previous state
|
|
515
|
+
judges review-onboard Guided onboarding for new team members
|
|
516
|
+
judges review-parallel Batch review multiple files
|
|
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
|
|
510
526
|
judges tune Analyze project and suggest optimal config
|
|
511
527
|
judges list List all available judges
|
|
512
528
|
judges version Show version information
|
|
@@ -2634,6 +2650,102 @@ export async function runCli(argv) {
|
|
|
2634
2650
|
runReviewTeamSummary(argv);
|
|
2635
2651
|
return;
|
|
2636
2652
|
}
|
|
2653
|
+
// ─── Finding Auto Fix Command ─────────────────────────────────────
|
|
2654
|
+
if (args.command === "finding-auto-fix") {
|
|
2655
|
+
const { runFindingAutoFix } = await import("./commands/finding-auto-fix.js");
|
|
2656
|
+
runFindingAutoFix(argv);
|
|
2657
|
+
return;
|
|
2658
|
+
}
|
|
2659
|
+
// ─── Review History Search Command ────────────────────────────────
|
|
2660
|
+
if (args.command === "review-history-search") {
|
|
2661
|
+
const { runReviewHistorySearch } = await import("./commands/review-history-search.js");
|
|
2662
|
+
runReviewHistorySearch(argv);
|
|
2663
|
+
return;
|
|
2664
|
+
}
|
|
2665
|
+
// ─── Review Language Stats Command ────────────────────────────────
|
|
2666
|
+
if (args.command === "review-language-stats") {
|
|
2667
|
+
const { runReviewLanguageStats } = await import("./commands/review-language-stats.js");
|
|
2668
|
+
runReviewLanguageStats(argv);
|
|
2669
|
+
return;
|
|
2670
|
+
}
|
|
2671
|
+
// ─── Review Coverage Map Command ──────────────────────────────────
|
|
2672
|
+
if (args.command === "review-coverage-map") {
|
|
2673
|
+
const { runReviewCoverageMap } = await import("./commands/review-coverage-map.js");
|
|
2674
|
+
runReviewCoverageMap(argv);
|
|
2675
|
+
return;
|
|
2676
|
+
}
|
|
2677
|
+
// ─── Review Rollback Command ──────────────────────────────────────
|
|
2678
|
+
if (args.command === "review-rollback") {
|
|
2679
|
+
const { runReviewRollback } = await import("./commands/review-rollback.js");
|
|
2680
|
+
runReviewRollback(argv);
|
|
2681
|
+
return;
|
|
2682
|
+
}
|
|
2683
|
+
// ─── Review Onboard Command ───────────────────────────────────────
|
|
2684
|
+
if (args.command === "review-onboard") {
|
|
2685
|
+
const { runReviewOnboard } = await import("./commands/review-onboard.js");
|
|
2686
|
+
runReviewOnboard(argv);
|
|
2687
|
+
return;
|
|
2688
|
+
}
|
|
2689
|
+
// ─── Review Parallel Command ──────────────────────────────────────
|
|
2690
|
+
if (args.command === "review-parallel") {
|
|
2691
|
+
const { runReviewParallel } = await import("./commands/review-parallel.js");
|
|
2692
|
+
runReviewParallel(argv);
|
|
2693
|
+
return;
|
|
2694
|
+
}
|
|
2695
|
+
// ─── Finding Context Command ──────────────────────────────────────
|
|
2696
|
+
if (args.command === "finding-context") {
|
|
2697
|
+
const { runFindingContext } = await import("./commands/finding-context.js");
|
|
2698
|
+
runFindingContext(argv);
|
|
2699
|
+
return;
|
|
2700
|
+
}
|
|
2701
|
+
// ─── Review Approval Command ──────────────────────────────────────
|
|
2702
|
+
if (args.command === "review-approval") {
|
|
2703
|
+
const { runReviewApproval } = await import("./commands/review-approval.js");
|
|
2704
|
+
runReviewApproval(argv);
|
|
2705
|
+
return;
|
|
2706
|
+
}
|
|
2707
|
+
// ─── Finding Severity Override Command ────────────────────────────
|
|
2708
|
+
if (args.command === "finding-severity-override") {
|
|
2709
|
+
const { runFindingSeverityOverride } = await import("./commands/finding-severity-override.js");
|
|
2710
|
+
runFindingSeverityOverride(argv);
|
|
2711
|
+
return;
|
|
2712
|
+
}
|
|
2713
|
+
// ─── Review Config Export Command ─────────────────────────────────
|
|
2714
|
+
if (args.command === "review-config-export") {
|
|
2715
|
+
const { runReviewConfigExport } = await import("./commands/review-config-export.js");
|
|
2716
|
+
runReviewConfigExport(argv);
|
|
2717
|
+
return;
|
|
2718
|
+
}
|
|
2719
|
+
// ─── Review PR Comment Command ────────────────────────────────────
|
|
2720
|
+
if (args.command === "review-pr-comment") {
|
|
2721
|
+
const { runReviewPrComment } = await import("./commands/review-pr-comment.js");
|
|
2722
|
+
runReviewPrComment(argv);
|
|
2723
|
+
return;
|
|
2724
|
+
}
|
|
2725
|
+
// ─── Review Ignore Path Command ───────────────────────────────────
|
|
2726
|
+
if (args.command === "review-ignore-path") {
|
|
2727
|
+
const { runReviewIgnorePath } = await import("./commands/review-ignore-path.js");
|
|
2728
|
+
runReviewIgnorePath(argv);
|
|
2729
|
+
return;
|
|
2730
|
+
}
|
|
2731
|
+
// ─── Finding Deduplicate Command ──────────────────────────────────
|
|
2732
|
+
if (args.command === "finding-deduplicate") {
|
|
2733
|
+
const { runFindingDeduplicate } = await import("./commands/finding-deduplicate.js");
|
|
2734
|
+
runFindingDeduplicate(argv);
|
|
2735
|
+
return;
|
|
2736
|
+
}
|
|
2737
|
+
// ─── Review Score History Command ─────────────────────────────────
|
|
2738
|
+
if (args.command === "review-score-history") {
|
|
2739
|
+
const { runReviewScoreHistory } = await import("./commands/review-score-history.js");
|
|
2740
|
+
runReviewScoreHistory(argv);
|
|
2741
|
+
return;
|
|
2742
|
+
}
|
|
2743
|
+
// ─── Review Feedback Command ──────────────────────────────────────
|
|
2744
|
+
if (args.command === "review-feedback") {
|
|
2745
|
+
const { runReviewFeedback } = await import("./commands/review-feedback.js");
|
|
2746
|
+
runReviewFeedback(argv);
|
|
2747
|
+
return;
|
|
2748
|
+
}
|
|
2637
2749
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
2638
2750
|
if (args.command === "tune") {
|
|
2639
2751
|
const { runTune } = await import("./commands/tune.js");
|