@kevinrabun/judges 3.69.0 → 3.71.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 +23 -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-impact.d.ts +5 -0
- package/dist/commands/finding-impact.d.ts.map +1 -0
- package/dist/commands/finding-impact.js +136 -0
- package/dist/commands/finding-impact.js.map +1 -0
- package/dist/commands/review-archive.d.ts +5 -0
- package/dist/commands/review-archive.d.ts.map +1 -0
- package/dist/commands/review-archive.js +136 -0
- package/dist/commands/review-archive.js.map +1 -0
- package/dist/commands/review-ci-status.d.ts +5 -0
- package/dist/commands/review-ci-status.d.ts.map +1 -0
- package/dist/commands/review-ci-status.js +201 -0
- package/dist/commands/review-ci-status.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-custom-prompt.d.ts +5 -0
- package/dist/commands/review-custom-prompt.d.ts.map +1 -0
- package/dist/commands/review-custom-prompt.js +171 -0
- package/dist/commands/review-custom-prompt.js.map +1 -0
- package/dist/commands/review-diff-context.d.ts +5 -0
- package/dist/commands/review-diff-context.d.ts.map +1 -0
- package/dist/commands/review-diff-context.js +159 -0
- package/dist/commands/review-diff-context.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-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-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-tag.d.ts +5 -0
- package/dist/commands/review-tag.d.ts.map +1 -0
- package/dist/commands/review-tag.js +137 -0
- package/dist/commands/review-tag.js.map +1 -0
- package/dist/commands/review-team-summary.d.ts +5 -0
- package/dist/commands/review-team-summary.d.ts.map +1 -0
- package/dist/commands/review-team-summary.js +156 -0
- package/dist/commands/review-team-summary.js.map +1 -0
- package/dist/commands/review-whitelist.d.ts +5 -0
- package/dist/commands/review-whitelist.d.ts.map +1 -0
- package/dist/commands/review-whitelist.js +159 -0
- package/dist/commands/review-whitelist.js.map +1 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.71.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Auto-fix: finding-auto-fix (auto-generate fix suggestions for common patterns)
|
|
9
|
+
- History: review-history-search (search through past review history)
|
|
10
|
+
- Language insights: review-language-stats (language-specific statistics)
|
|
11
|
+
- Coverage: review-coverage-map (map which files have been reviewed)
|
|
12
|
+
- Config management: review-rollback (roll back review config to a previous state)
|
|
13
|
+
- Onboarding: review-onboard (guided onboarding for new team members)
|
|
14
|
+
- Batch review: review-parallel (discover and queue multiple files for review)
|
|
15
|
+
- Context enrichment: finding-context (enrich findings with surrounding code)
|
|
16
|
+
|
|
17
|
+
## [3.70.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Organization: review-tag (tag reviews for filtering), review-archive (archive and retrieve old results)
|
|
21
|
+
- Impact analysis: finding-impact (estimate business impact of findings)
|
|
22
|
+
- Allow-listing: review-whitelist (allow-list safe patterns that shouldn't be flagged)
|
|
23
|
+
- Customization: review-custom-prompt (customize review prompts for project needs)
|
|
24
|
+
- Context: review-diff-context (show diff hunks with surrounding file context)
|
|
25
|
+
- CI integration: review-ci-status (check CI pipeline review readiness)
|
|
26
|
+
- Team metrics: review-team-summary (aggregate team review metrics)
|
|
27
|
+
|
|
5
28
|
## [3.69.0] — 2026-03-14
|
|
6
29
|
|
|
7
30
|
### 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;AAgrBH;;;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,CAo+E1D"}
|
package/dist/cli.js
CHANGED
|
@@ -499,6 +499,22 @@ USAGE:
|
|
|
499
499
|
judges finding-recurrence Track recurring findings
|
|
500
500
|
judges review-benchmark-self Benchmark against your own history
|
|
501
501
|
judges review-report-pdf Generate printable review reports
|
|
502
|
+
judges review-tag Tag reviews for organization and filtering
|
|
503
|
+
judges finding-impact Estimate business impact of findings
|
|
504
|
+
judges review-archive Archive and retrieve old review results
|
|
505
|
+
judges review-whitelist Allow-list safe patterns
|
|
506
|
+
judges review-custom-prompt Customize review prompts for project needs
|
|
507
|
+
judges review-diff-context Show diff hunks with surrounding context
|
|
508
|
+
judges review-ci-status Check CI pipeline review status
|
|
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
|
|
502
518
|
judges tune Analyze project and suggest optimal config
|
|
503
519
|
judges list List all available judges
|
|
504
520
|
judges version Show version information
|
|
@@ -2578,6 +2594,102 @@ export async function runCli(argv) {
|
|
|
2578
2594
|
await runReviewReportPdf(argv);
|
|
2579
2595
|
return;
|
|
2580
2596
|
}
|
|
2597
|
+
// ─── Review Tag Command ─────────────────────────────────────────────
|
|
2598
|
+
if (args.command === "review-tag") {
|
|
2599
|
+
const { runReviewTag } = await import("./commands/review-tag.js");
|
|
2600
|
+
runReviewTag(argv);
|
|
2601
|
+
return;
|
|
2602
|
+
}
|
|
2603
|
+
// ─── Finding Impact Command ─────────────────────────────────────────
|
|
2604
|
+
if (args.command === "finding-impact") {
|
|
2605
|
+
const { runFindingImpact } = await import("./commands/finding-impact.js");
|
|
2606
|
+
runFindingImpact(argv);
|
|
2607
|
+
return;
|
|
2608
|
+
}
|
|
2609
|
+
// ─── Review Archive Command ─────────────────────────────────────────
|
|
2610
|
+
if (args.command === "review-archive") {
|
|
2611
|
+
const { runReviewArchive } = await import("./commands/review-archive.js");
|
|
2612
|
+
runReviewArchive(argv);
|
|
2613
|
+
return;
|
|
2614
|
+
}
|
|
2615
|
+
// ─── Review Whitelist Command ───────────────────────────────────────
|
|
2616
|
+
if (args.command === "review-whitelist") {
|
|
2617
|
+
const { runReviewWhitelist } = await import("./commands/review-whitelist.js");
|
|
2618
|
+
runReviewWhitelist(argv);
|
|
2619
|
+
return;
|
|
2620
|
+
}
|
|
2621
|
+
// ─── Review Custom Prompt Command ───────────────────────────────────
|
|
2622
|
+
if (args.command === "review-custom-prompt") {
|
|
2623
|
+
const { runReviewCustomPrompt } = await import("./commands/review-custom-prompt.js");
|
|
2624
|
+
runReviewCustomPrompt(argv);
|
|
2625
|
+
return;
|
|
2626
|
+
}
|
|
2627
|
+
// ─── Review Diff Context Command ───────────────────────────────────
|
|
2628
|
+
if (args.command === "review-diff-context") {
|
|
2629
|
+
const { runReviewDiffContext } = await import("./commands/review-diff-context.js");
|
|
2630
|
+
runReviewDiffContext(argv);
|
|
2631
|
+
return;
|
|
2632
|
+
}
|
|
2633
|
+
// ─── Review CI Status Command ──────────────────────────────────────
|
|
2634
|
+
if (args.command === "review-ci-status") {
|
|
2635
|
+
const { runReviewCiStatus } = await import("./commands/review-ci-status.js");
|
|
2636
|
+
runReviewCiStatus(argv);
|
|
2637
|
+
return;
|
|
2638
|
+
}
|
|
2639
|
+
// ─── Review Team Summary Command ───────────────────────────────────
|
|
2640
|
+
if (args.command === "review-team-summary") {
|
|
2641
|
+
const { runReviewTeamSummary } = await import("./commands/review-team-summary.js");
|
|
2642
|
+
runReviewTeamSummary(argv);
|
|
2643
|
+
return;
|
|
2644
|
+
}
|
|
2645
|
+
// ─── Finding Auto Fix Command ─────────────────────────────────────
|
|
2646
|
+
if (args.command === "finding-auto-fix") {
|
|
2647
|
+
const { runFindingAutoFix } = await import("./commands/finding-auto-fix.js");
|
|
2648
|
+
runFindingAutoFix(argv);
|
|
2649
|
+
return;
|
|
2650
|
+
}
|
|
2651
|
+
// ─── Review History Search Command ────────────────────────────────
|
|
2652
|
+
if (args.command === "review-history-search") {
|
|
2653
|
+
const { runReviewHistorySearch } = await import("./commands/review-history-search.js");
|
|
2654
|
+
runReviewHistorySearch(argv);
|
|
2655
|
+
return;
|
|
2656
|
+
}
|
|
2657
|
+
// ─── Review Language Stats Command ────────────────────────────────
|
|
2658
|
+
if (args.command === "review-language-stats") {
|
|
2659
|
+
const { runReviewLanguageStats } = await import("./commands/review-language-stats.js");
|
|
2660
|
+
runReviewLanguageStats(argv);
|
|
2661
|
+
return;
|
|
2662
|
+
}
|
|
2663
|
+
// ─── Review Coverage Map Command ──────────────────────────────────
|
|
2664
|
+
if (args.command === "review-coverage-map") {
|
|
2665
|
+
const { runReviewCoverageMap } = await import("./commands/review-coverage-map.js");
|
|
2666
|
+
runReviewCoverageMap(argv);
|
|
2667
|
+
return;
|
|
2668
|
+
}
|
|
2669
|
+
// ─── Review Rollback Command ──────────────────────────────────────
|
|
2670
|
+
if (args.command === "review-rollback") {
|
|
2671
|
+
const { runReviewRollback } = await import("./commands/review-rollback.js");
|
|
2672
|
+
runReviewRollback(argv);
|
|
2673
|
+
return;
|
|
2674
|
+
}
|
|
2675
|
+
// ─── Review Onboard Command ───────────────────────────────────────
|
|
2676
|
+
if (args.command === "review-onboard") {
|
|
2677
|
+
const { runReviewOnboard } = await import("./commands/review-onboard.js");
|
|
2678
|
+
runReviewOnboard(argv);
|
|
2679
|
+
return;
|
|
2680
|
+
}
|
|
2681
|
+
// ─── Review Parallel Command ──────────────────────────────────────
|
|
2682
|
+
if (args.command === "review-parallel") {
|
|
2683
|
+
const { runReviewParallel } = await import("./commands/review-parallel.js");
|
|
2684
|
+
runReviewParallel(argv);
|
|
2685
|
+
return;
|
|
2686
|
+
}
|
|
2687
|
+
// ─── Finding Context Command ──────────────────────────────────────
|
|
2688
|
+
if (args.command === "finding-context") {
|
|
2689
|
+
const { runFindingContext } = await import("./commands/finding-context.js");
|
|
2690
|
+
runFindingContext(argv);
|
|
2691
|
+
return;
|
|
2692
|
+
}
|
|
2581
2693
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
2582
2694
|
if (args.command === "tune") {
|
|
2583
2695
|
const { runTune } = await import("./commands/tune.js");
|