@kevinrabun/judges 3.82.0 → 3.84.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-category-stats.d.ts +5 -0
- package/dist/commands/finding-category-stats.d.ts.map +1 -0
- package/dist/commands/finding-category-stats.js +105 -0
- package/dist/commands/finding-category-stats.js.map +1 -0
- 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-compare-runs.d.ts +5 -0
- package/dist/commands/finding-compare-runs.d.ts.map +1 -0
- package/dist/commands/finding-compare-runs.js +106 -0
- package/dist/commands/finding-compare-runs.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-hotfix-suggest.d.ts +8 -0
- package/dist/commands/finding-hotfix-suggest.d.ts.map +1 -0
- package/dist/commands/finding-hotfix-suggest.js +171 -0
- package/dist/commands/finding-hotfix-suggest.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-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-approval-gate.d.ts +8 -0
- package/dist/commands/review-approval-gate.d.ts.map +1 -0
- package/dist/commands/review-approval-gate.js +191 -0
- package/dist/commands/review-approval-gate.js.map +1 -0
- package/dist/commands/review-branch-compare.d.ts +5 -0
- package/dist/commands/review-branch-compare.d.ts.map +1 -0
- package/dist/commands/review-branch-compare.js +114 -0
- package/dist/commands/review-branch-compare.js.map +1 -0
- package/dist/commands/review-changelog-entry.d.ts +8 -0
- package/dist/commands/review-changelog-entry.d.ts.map +1 -0
- package/dist/commands/review-changelog-entry.js +110 -0
- package/dist/commands/review-changelog-entry.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-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-finding-link.d.ts +8 -0
- package/dist/commands/review-finding-link.d.ts.map +1 -0
- package/dist/commands/review-finding-link.js +116 -0
- package/dist/commands/review-finding-link.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/dist/commands/review-skip-list.d.ts +5 -0
- package/dist/commands/review-skip-list.d.ts.map +1 -0
- package/dist/commands/review-skip-list.js +136 -0
- package/dist/commands/review-skip-list.js.map +1 -0
- package/dist/commands/review-team-assign.d.ts +8 -0
- package/dist/commands/review-team-assign.d.ts.map +1 -0
- package/dist/commands/review-team-assign.js +212 -0
- package/dist/commands/review-team-assign.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.84.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Trend report: finding-trend-report (generate trend reports from historical findings)
|
|
9
|
+
- Commit hook: review-commit-hook (install/manage git commit hooks for reviews)
|
|
10
|
+
- Noise filter: finding-noise-filter (filter out noisy/low-value findings)
|
|
11
|
+
- Fix priority: finding-fix-priority (prioritize findings for fixing by impact)
|
|
12
|
+
- Quota check: review-quota-check (check review quotas and rate limits)
|
|
13
|
+
- Cluster analysis: finding-cluster-analysis (cluster findings by similarity)
|
|
14
|
+
- Session save: review-session-save (save and restore review sessions)
|
|
15
|
+
- Evidence chain: finding-evidence-chain (build evidence chains across findings)
|
|
16
|
+
- File complexity: review-file-complexity (analyze file complexity metrics)
|
|
17
|
+
|
|
18
|
+
## [3.83.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Finding link: review-finding-link (link related findings together)
|
|
22
|
+
- Team assign: review-team-assign (assign findings to team members)
|
|
23
|
+
- Compare runs: finding-compare-runs (compare findings across runs)
|
|
24
|
+
- Skip list: review-skip-list (manage review skip list)
|
|
25
|
+
- Hotfix suggest: finding-hotfix-suggest (suggest quick hotfixes)
|
|
26
|
+
- Approval gate: review-approval-gate (configurable quality gates)
|
|
27
|
+
- Changelog entry: review-changelog-entry (generate changelog from findings)
|
|
28
|
+
- Branch compare: review-branch-compare (compare reviews between branches)
|
|
29
|
+
- Category stats: finding-category-stats (category statistics)
|
|
30
|
+
|
|
5
31
|
## [3.82.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;AA8xBH;;;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,CAsuG1D"}
|
package/dist/cli.js
CHANGED
|
@@ -607,6 +607,24 @@ USAGE:
|
|
|
607
607
|
judges review-parallel-files Batch files for parallel review
|
|
608
608
|
judges finding-summary-digest Generate concise finding digests
|
|
609
609
|
judges review-code-owner Map findings to CODEOWNERS entries
|
|
610
|
+
judges review-finding-link Link related findings together
|
|
611
|
+
judges review-team-assign Assign findings to team members
|
|
612
|
+
judges finding-compare-runs Compare findings across review runs
|
|
613
|
+
judges review-skip-list Manage skip list for reviews
|
|
614
|
+
judges finding-hotfix-suggest Suggest quick hotfixes for findings
|
|
615
|
+
judges review-approval-gate Configurable review approval gates
|
|
616
|
+
judges review-changelog-entry Generate changelog from findings
|
|
617
|
+
judges review-branch-compare Compare reviews between branches
|
|
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
|
|
610
628
|
judges tune Analyze project and suggest optimal config
|
|
611
629
|
judges list List all available judges
|
|
612
630
|
judges version Show version information
|
|
@@ -3334,6 +3352,114 @@ export async function runCli(argv) {
|
|
|
3334
3352
|
runReviewCodeOwner(argv);
|
|
3335
3353
|
return;
|
|
3336
3354
|
}
|
|
3355
|
+
// ─── Review Finding Link Command ────────────────────────────────
|
|
3356
|
+
if (args.command === "review-finding-link") {
|
|
3357
|
+
const { runReviewFindingLink } = await import("./commands/review-finding-link.js");
|
|
3358
|
+
runReviewFindingLink(argv);
|
|
3359
|
+
return;
|
|
3360
|
+
}
|
|
3361
|
+
// ─── Review Team Assign Command ─────────────────────────────────
|
|
3362
|
+
if (args.command === "review-team-assign") {
|
|
3363
|
+
const { runReviewTeamAssign } = await import("./commands/review-team-assign.js");
|
|
3364
|
+
runReviewTeamAssign(argv);
|
|
3365
|
+
return;
|
|
3366
|
+
}
|
|
3367
|
+
// ─── Finding Compare Runs Command ───────────────────────────────
|
|
3368
|
+
if (args.command === "finding-compare-runs") {
|
|
3369
|
+
const { runFindingCompareRuns } = await import("./commands/finding-compare-runs.js");
|
|
3370
|
+
runFindingCompareRuns(argv);
|
|
3371
|
+
return;
|
|
3372
|
+
}
|
|
3373
|
+
// ─── Review Skip List Command ───────────────────────────────────
|
|
3374
|
+
if (args.command === "review-skip-list") {
|
|
3375
|
+
const { runReviewSkipList } = await import("./commands/review-skip-list.js");
|
|
3376
|
+
runReviewSkipList(argv);
|
|
3377
|
+
return;
|
|
3378
|
+
}
|
|
3379
|
+
// ─── Finding Hotfix Suggest Command ─────────────────────────────
|
|
3380
|
+
if (args.command === "finding-hotfix-suggest") {
|
|
3381
|
+
const { runFindingHotfixSuggest } = await import("./commands/finding-hotfix-suggest.js");
|
|
3382
|
+
runFindingHotfixSuggest(argv);
|
|
3383
|
+
return;
|
|
3384
|
+
}
|
|
3385
|
+
// ─── Review Approval Gate Command ───────────────────────────────
|
|
3386
|
+
if (args.command === "review-approval-gate") {
|
|
3387
|
+
const { runReviewApprovalGate } = await import("./commands/review-approval-gate.js");
|
|
3388
|
+
runReviewApprovalGate(argv);
|
|
3389
|
+
return;
|
|
3390
|
+
}
|
|
3391
|
+
// ─── Review Changelog Entry Command ─────────────────────────────
|
|
3392
|
+
if (args.command === "review-changelog-entry") {
|
|
3393
|
+
const { runReviewChangelogEntry } = await import("./commands/review-changelog-entry.js");
|
|
3394
|
+
runReviewChangelogEntry(argv);
|
|
3395
|
+
return;
|
|
3396
|
+
}
|
|
3397
|
+
// ─── Review Branch Compare Command ──────────────────────────────
|
|
3398
|
+
if (args.command === "review-branch-compare") {
|
|
3399
|
+
const { runReviewBranchCompare } = await import("./commands/review-branch-compare.js");
|
|
3400
|
+
runReviewBranchCompare(argv);
|
|
3401
|
+
return;
|
|
3402
|
+
}
|
|
3403
|
+
// ─── Finding Category Stats Command ─────────────────────────────
|
|
3404
|
+
if (args.command === "finding-category-stats") {
|
|
3405
|
+
const { runFindingCategoryStats } = await import("./commands/finding-category-stats.js");
|
|
3406
|
+
runFindingCategoryStats(argv);
|
|
3407
|
+
return;
|
|
3408
|
+
}
|
|
3409
|
+
// ─── Finding Trend Report Command ─────────────────────────────────
|
|
3410
|
+
if (args.command === "finding-trend-report") {
|
|
3411
|
+
const { runFindingTrendReport } = await import("./commands/finding-trend-report.js");
|
|
3412
|
+
runFindingTrendReport(argv);
|
|
3413
|
+
return;
|
|
3414
|
+
}
|
|
3415
|
+
// ─── Review Commit Hook Command ───────────────────────────────────
|
|
3416
|
+
if (args.command === "review-commit-hook") {
|
|
3417
|
+
const { runReviewCommitHook } = await import("./commands/review-commit-hook.js");
|
|
3418
|
+
runReviewCommitHook(argv);
|
|
3419
|
+
return;
|
|
3420
|
+
}
|
|
3421
|
+
// ─── Finding Noise Filter Command ─────────────────────────────────
|
|
3422
|
+
if (args.command === "finding-noise-filter") {
|
|
3423
|
+
const { runFindingNoiseFilter } = await import("./commands/finding-noise-filter.js");
|
|
3424
|
+
runFindingNoiseFilter(argv);
|
|
3425
|
+
return;
|
|
3426
|
+
}
|
|
3427
|
+
// ─── Finding Fix Priority Command ─────────────────────────────────
|
|
3428
|
+
if (args.command === "finding-fix-priority") {
|
|
3429
|
+
const { runFindingFixPriority } = await import("./commands/finding-fix-priority.js");
|
|
3430
|
+
runFindingFixPriority(argv);
|
|
3431
|
+
return;
|
|
3432
|
+
}
|
|
3433
|
+
// ─── Review Quota Check Command ───────────────────────────────────
|
|
3434
|
+
if (args.command === "review-quota-check") {
|
|
3435
|
+
const { runReviewQuotaCheck } = await import("./commands/review-quota-check.js");
|
|
3436
|
+
runReviewQuotaCheck(argv);
|
|
3437
|
+
return;
|
|
3438
|
+
}
|
|
3439
|
+
// ─── Finding Cluster Analysis Command ─────────────────────────────
|
|
3440
|
+
if (args.command === "finding-cluster-analysis") {
|
|
3441
|
+
const { runFindingClusterAnalysis } = await import("./commands/finding-cluster-analysis.js");
|
|
3442
|
+
runFindingClusterAnalysis(argv);
|
|
3443
|
+
return;
|
|
3444
|
+
}
|
|
3445
|
+
// ─── Review Session Save Command ──────────────────────────────────
|
|
3446
|
+
if (args.command === "review-session-save") {
|
|
3447
|
+
const { runReviewSessionSave } = await import("./commands/review-session-save.js");
|
|
3448
|
+
runReviewSessionSave(argv);
|
|
3449
|
+
return;
|
|
3450
|
+
}
|
|
3451
|
+
// ─── Finding Evidence Chain Command ───────────────────────────────
|
|
3452
|
+
if (args.command === "finding-evidence-chain") {
|
|
3453
|
+
const { runFindingEvidenceChain } = await import("./commands/finding-evidence-chain.js");
|
|
3454
|
+
runFindingEvidenceChain(argv);
|
|
3455
|
+
return;
|
|
3456
|
+
}
|
|
3457
|
+
// ─── Review File Complexity Command ───────────────────────────────
|
|
3458
|
+
if (args.command === "review-file-complexity") {
|
|
3459
|
+
const { runReviewFileComplexity } = await import("./commands/review-file-complexity.js");
|
|
3460
|
+
runReviewFileComplexity(argv);
|
|
3461
|
+
return;
|
|
3462
|
+
}
|
|
3337
3463
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3338
3464
|
if (args.command === "tune") {
|
|
3339
3465
|
const { runTune } = await import("./commands/tune.js");
|