@kevinrabun/judges 3.83.0 → 3.85.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-cluster-analysis.d.ts +5 -0
- package/dist/commands/finding-cluster-analysis.d.ts.map +1 -0
- package/dist/commands/finding-cluster-analysis.js +134 -0
- package/dist/commands/finding-cluster-analysis.js.map +1 -0
- package/dist/commands/finding-cve-lookup.d.ts +5 -0
- package/dist/commands/finding-cve-lookup.d.ts.map +1 -0
- package/dist/commands/finding-cve-lookup.js +98 -0
- package/dist/commands/finding-cve-lookup.js.map +1 -0
- package/dist/commands/finding-dependency-risk.d.ts +5 -0
- package/dist/commands/finding-dependency-risk.d.ts.map +1 -0
- package/dist/commands/finding-dependency-risk.js +118 -0
- package/dist/commands/finding-dependency-risk.js.map +1 -0
- package/dist/commands/finding-evidence-chain.d.ts +5 -0
- package/dist/commands/finding-evidence-chain.d.ts.map +1 -0
- package/dist/commands/finding-evidence-chain.js +148 -0
- package/dist/commands/finding-evidence-chain.js.map +1 -0
- package/dist/commands/finding-fix-priority.d.ts +5 -0
- package/dist/commands/finding-fix-priority.d.ts.map +1 -0
- package/dist/commands/finding-fix-priority.js +99 -0
- package/dist/commands/finding-fix-priority.js.map +1 -0
- package/dist/commands/finding-noise-filter.d.ts +8 -0
- package/dist/commands/finding-noise-filter.d.ts.map +1 -0
- package/dist/commands/finding-noise-filter.js +141 -0
- package/dist/commands/finding-noise-filter.js.map +1 -0
- package/dist/commands/finding-security-hotspot.d.ts +5 -0
- package/dist/commands/finding-security-hotspot.d.ts.map +1 -0
- package/dist/commands/finding-security-hotspot.js +176 -0
- package/dist/commands/finding-security-hotspot.js.map +1 -0
- package/dist/commands/finding-suppression-log.d.ts +5 -0
- package/dist/commands/finding-suppression-log.d.ts.map +1 -0
- package/dist/commands/finding-suppression-log.js +175 -0
- package/dist/commands/finding-suppression-log.js.map +1 -0
- package/dist/commands/finding-timeline-view.d.ts +5 -0
- package/dist/commands/finding-timeline-view.d.ts.map +1 -0
- package/dist/commands/finding-timeline-view.js +99 -0
- package/dist/commands/finding-timeline-view.js.map +1 -0
- package/dist/commands/finding-trend-report.d.ts +5 -0
- package/dist/commands/finding-trend-report.d.ts.map +1 -0
- package/dist/commands/finding-trend-report.js +108 -0
- package/dist/commands/finding-trend-report.js.map +1 -0
- package/dist/commands/review-batch-run.d.ts +5 -0
- package/dist/commands/review-batch-run.d.ts.map +1 -0
- package/dist/commands/review-batch-run.js +150 -0
- package/dist/commands/review-batch-run.js.map +1 -0
- package/dist/commands/review-commit-hook.d.ts +8 -0
- package/dist/commands/review-commit-hook.d.ts.map +1 -0
- package/dist/commands/review-commit-hook.js +135 -0
- package/dist/commands/review-commit-hook.js.map +1 -0
- package/dist/commands/review-diff-highlight.d.ts +5 -0
- package/dist/commands/review-diff-highlight.d.ts.map +1 -0
- package/dist/commands/review-diff-highlight.js +180 -0
- package/dist/commands/review-diff-highlight.js.map +1 -0
- package/dist/commands/review-file-complexity.d.ts +5 -0
- package/dist/commands/review-file-complexity.d.ts.map +1 -0
- package/dist/commands/review-file-complexity.js +138 -0
- package/dist/commands/review-file-complexity.js.map +1 -0
- package/dist/commands/review-output-filter.d.ts +5 -0
- package/dist/commands/review-output-filter.d.ts.map +1 -0
- package/dist/commands/review-output-filter.js +113 -0
- package/dist/commands/review-output-filter.js.map +1 -0
- package/dist/commands/review-pr-template.d.ts +5 -0
- package/dist/commands/review-pr-template.d.ts.map +1 -0
- package/dist/commands/review-pr-template.js +105 -0
- package/dist/commands/review-pr-template.js.map +1 -0
- package/dist/commands/review-quota-check.d.ts +5 -0
- package/dist/commands/review-quota-check.d.ts.map +1 -0
- package/dist/commands/review-quota-check.js +98 -0
- package/dist/commands/review-quota-check.js.map +1 -0
- package/dist/commands/review-session-save.d.ts +5 -0
- package/dist/commands/review-session-save.d.ts.map +1 -0
- package/dist/commands/review-session-save.js +174 -0
- package/dist/commands/review-session-save.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.85.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Dependency risk: finding-dependency-risk (assess dependency risk levels)
|
|
9
|
+
- PR template: review-pr-template (generate PR templates from findings)
|
|
10
|
+
- Security hotspot: finding-security-hotspot (identify security-sensitive code)
|
|
11
|
+
- Suppression log: finding-suppression-log (log and track suppressed findings)
|
|
12
|
+
- Diff highlight: review-diff-highlight (highlight review differences)
|
|
13
|
+
- CVE lookup: finding-cve-lookup (extract CVE references from findings)
|
|
14
|
+
- Batch run: review-batch-run (run batch review on multiple files)
|
|
15
|
+
- Output filter: review-output-filter (filter and transform review output)
|
|
16
|
+
- Timeline view: finding-timeline-view (show findings on a timeline)
|
|
17
|
+
|
|
18
|
+
## [3.84.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Trend report: finding-trend-report (generate trend reports from historical findings)
|
|
22
|
+
- Commit hook: review-commit-hook (install/manage git commit hooks for reviews)
|
|
23
|
+
- Noise filter: finding-noise-filter (filter out noisy/low-value findings)
|
|
24
|
+
- Fix priority: finding-fix-priority (prioritize findings for fixing by impact)
|
|
25
|
+
- Quota check: review-quota-check (check review quotas and rate limits)
|
|
26
|
+
- Cluster analysis: finding-cluster-analysis (cluster findings by similarity)
|
|
27
|
+
- Session save: review-session-save (save and restore review sessions)
|
|
28
|
+
- Evidence chain: finding-evidence-chain (build evidence chains across findings)
|
|
29
|
+
- File complexity: review-file-complexity (analyze file complexity metrics)
|
|
30
|
+
|
|
5
31
|
## [3.83.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;AAuyBH;;;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,CAqyG1D"}
|
package/dist/cli.js
CHANGED
|
@@ -616,6 +616,24 @@ USAGE:
|
|
|
616
616
|
judges review-changelog-entry Generate changelog from findings
|
|
617
617
|
judges review-branch-compare Compare reviews between branches
|
|
618
618
|
judges finding-category-stats Finding category statistics
|
|
619
|
+
judges finding-trend-report Generate trend reports from findings
|
|
620
|
+
judges review-commit-hook Install/manage git commit hooks
|
|
621
|
+
judges finding-noise-filter Filter out noisy/low-value findings
|
|
622
|
+
judges finding-fix-priority Prioritize findings for fixing
|
|
623
|
+
judges review-quota-check Check review quotas and limits
|
|
624
|
+
judges finding-cluster-analysis Cluster findings by similarity
|
|
625
|
+
judges review-session-save Save/restore review sessions
|
|
626
|
+
judges finding-evidence-chain Build evidence chains across findings
|
|
627
|
+
judges review-file-complexity Analyze file complexity metrics
|
|
628
|
+
judges finding-dependency-risk Assess dependency risk levels
|
|
629
|
+
judges review-pr-template Generate PR templates from findings
|
|
630
|
+
judges finding-security-hotspot Identify security-sensitive code
|
|
631
|
+
judges finding-suppression-log Log and track suppressed findings
|
|
632
|
+
judges review-diff-highlight Highlight review differences
|
|
633
|
+
judges finding-cve-lookup Extract CVE references from findings
|
|
634
|
+
judges review-batch-run Run batch review on multiple files
|
|
635
|
+
judges review-output-filter Filter and transform review output
|
|
636
|
+
judges finding-timeline-view Show findings on a timeline
|
|
619
637
|
judges tune Analyze project and suggest optimal config
|
|
620
638
|
judges list List all available judges
|
|
621
639
|
judges version Show version information
|
|
@@ -3397,6 +3415,114 @@ export async function runCli(argv) {
|
|
|
3397
3415
|
runFindingCategoryStats(argv);
|
|
3398
3416
|
return;
|
|
3399
3417
|
}
|
|
3418
|
+
// ─── Finding Trend Report Command ─────────────────────────────────
|
|
3419
|
+
if (args.command === "finding-trend-report") {
|
|
3420
|
+
const { runFindingTrendReport } = await import("./commands/finding-trend-report.js");
|
|
3421
|
+
runFindingTrendReport(argv);
|
|
3422
|
+
return;
|
|
3423
|
+
}
|
|
3424
|
+
// ─── Review Commit Hook Command ───────────────────────────────────
|
|
3425
|
+
if (args.command === "review-commit-hook") {
|
|
3426
|
+
const { runReviewCommitHook } = await import("./commands/review-commit-hook.js");
|
|
3427
|
+
runReviewCommitHook(argv);
|
|
3428
|
+
return;
|
|
3429
|
+
}
|
|
3430
|
+
// ─── Finding Noise Filter Command ─────────────────────────────────
|
|
3431
|
+
if (args.command === "finding-noise-filter") {
|
|
3432
|
+
const { runFindingNoiseFilter } = await import("./commands/finding-noise-filter.js");
|
|
3433
|
+
runFindingNoiseFilter(argv);
|
|
3434
|
+
return;
|
|
3435
|
+
}
|
|
3436
|
+
// ─── Finding Fix Priority Command ─────────────────────────────────
|
|
3437
|
+
if (args.command === "finding-fix-priority") {
|
|
3438
|
+
const { runFindingFixPriority } = await import("./commands/finding-fix-priority.js");
|
|
3439
|
+
runFindingFixPriority(argv);
|
|
3440
|
+
return;
|
|
3441
|
+
}
|
|
3442
|
+
// ─── Review Quota Check Command ───────────────────────────────────
|
|
3443
|
+
if (args.command === "review-quota-check") {
|
|
3444
|
+
const { runReviewQuotaCheck } = await import("./commands/review-quota-check.js");
|
|
3445
|
+
runReviewQuotaCheck(argv);
|
|
3446
|
+
return;
|
|
3447
|
+
}
|
|
3448
|
+
// ─── Finding Cluster Analysis Command ─────────────────────────────
|
|
3449
|
+
if (args.command === "finding-cluster-analysis") {
|
|
3450
|
+
const { runFindingClusterAnalysis } = await import("./commands/finding-cluster-analysis.js");
|
|
3451
|
+
runFindingClusterAnalysis(argv);
|
|
3452
|
+
return;
|
|
3453
|
+
}
|
|
3454
|
+
// ─── Review Session Save Command ──────────────────────────────────
|
|
3455
|
+
if (args.command === "review-session-save") {
|
|
3456
|
+
const { runReviewSessionSave } = await import("./commands/review-session-save.js");
|
|
3457
|
+
runReviewSessionSave(argv);
|
|
3458
|
+
return;
|
|
3459
|
+
}
|
|
3460
|
+
// ─── Finding Evidence Chain Command ───────────────────────────────
|
|
3461
|
+
if (args.command === "finding-evidence-chain") {
|
|
3462
|
+
const { runFindingEvidenceChain } = await import("./commands/finding-evidence-chain.js");
|
|
3463
|
+
runFindingEvidenceChain(argv);
|
|
3464
|
+
return;
|
|
3465
|
+
}
|
|
3466
|
+
// ─── Review File Complexity Command ───────────────────────────────
|
|
3467
|
+
if (args.command === "review-file-complexity") {
|
|
3468
|
+
const { runReviewFileComplexity } = await import("./commands/review-file-complexity.js");
|
|
3469
|
+
runReviewFileComplexity(argv);
|
|
3470
|
+
return;
|
|
3471
|
+
}
|
|
3472
|
+
// ─── Finding Dependency Risk Command ──────────────────────────────
|
|
3473
|
+
if (args.command === "finding-dependency-risk") {
|
|
3474
|
+
const { runFindingDependencyRisk } = await import("./commands/finding-dependency-risk.js");
|
|
3475
|
+
runFindingDependencyRisk(argv);
|
|
3476
|
+
return;
|
|
3477
|
+
}
|
|
3478
|
+
// ─── Review PR Template Command ───────────────────────────────────
|
|
3479
|
+
if (args.command === "review-pr-template") {
|
|
3480
|
+
const { runReviewPrTemplate } = await import("./commands/review-pr-template.js");
|
|
3481
|
+
runReviewPrTemplate(argv);
|
|
3482
|
+
return;
|
|
3483
|
+
}
|
|
3484
|
+
// ─── Finding Security Hotspot Command ─────────────────────────────
|
|
3485
|
+
if (args.command === "finding-security-hotspot") {
|
|
3486
|
+
const { runFindingSecurityHotspot } = await import("./commands/finding-security-hotspot.js");
|
|
3487
|
+
runFindingSecurityHotspot(argv);
|
|
3488
|
+
return;
|
|
3489
|
+
}
|
|
3490
|
+
// ─── Finding Suppression Log Command ──────────────────────────────
|
|
3491
|
+
if (args.command === "finding-suppression-log") {
|
|
3492
|
+
const { runFindingSuppressionLog } = await import("./commands/finding-suppression-log.js");
|
|
3493
|
+
runFindingSuppressionLog(argv);
|
|
3494
|
+
return;
|
|
3495
|
+
}
|
|
3496
|
+
// ─── Review Diff Highlight Command ────────────────────────────────
|
|
3497
|
+
if (args.command === "review-diff-highlight") {
|
|
3498
|
+
const { runReviewDiffHighlight } = await import("./commands/review-diff-highlight.js");
|
|
3499
|
+
runReviewDiffHighlight(argv);
|
|
3500
|
+
return;
|
|
3501
|
+
}
|
|
3502
|
+
// ─── Finding CVE Lookup Command ───────────────────────────────────
|
|
3503
|
+
if (args.command === "finding-cve-lookup") {
|
|
3504
|
+
const { runFindingCveLookup } = await import("./commands/finding-cve-lookup.js");
|
|
3505
|
+
runFindingCveLookup(argv);
|
|
3506
|
+
return;
|
|
3507
|
+
}
|
|
3508
|
+
// ─── Review Batch Run Command ─────────────────────────────────────
|
|
3509
|
+
if (args.command === "review-batch-run") {
|
|
3510
|
+
const { runReviewBatchRun } = await import("./commands/review-batch-run.js");
|
|
3511
|
+
runReviewBatchRun(argv);
|
|
3512
|
+
return;
|
|
3513
|
+
}
|
|
3514
|
+
// ─── Review Output Filter Command ────────────────────────────────
|
|
3515
|
+
if (args.command === "review-output-filter") {
|
|
3516
|
+
const { runReviewOutputFilter } = await import("./commands/review-output-filter.js");
|
|
3517
|
+
runReviewOutputFilter(argv);
|
|
3518
|
+
return;
|
|
3519
|
+
}
|
|
3520
|
+
// ─── Finding Timeline View Command ───────────────────────────────
|
|
3521
|
+
if (args.command === "finding-timeline-view") {
|
|
3522
|
+
const { runFindingTimelineView } = await import("./commands/finding-timeline-view.js");
|
|
3523
|
+
runFindingTimelineView(argv);
|
|
3524
|
+
return;
|
|
3525
|
+
}
|
|
3400
3526
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3401
3527
|
if (args.command === "tune") {
|
|
3402
3528
|
const { runTune } = await import("./commands/tune.js");
|