@kevinrabun/judges 3.82.0 → 3.83.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 +13 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +63 -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-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-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/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-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-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,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.83.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Finding link: review-finding-link (link related findings together)
|
|
9
|
+
- Team assign: review-team-assign (assign findings to team members)
|
|
10
|
+
- Compare runs: finding-compare-runs (compare findings across runs)
|
|
11
|
+
- Skip list: review-skip-list (manage review skip list)
|
|
12
|
+
- Hotfix suggest: finding-hotfix-suggest (suggest quick hotfixes)
|
|
13
|
+
- Approval gate: review-approval-gate (configurable quality gates)
|
|
14
|
+
- Changelog entry: review-changelog-entry (generate changelog from findings)
|
|
15
|
+
- Branch compare: review-branch-compare (compare reviews between branches)
|
|
16
|
+
- Category stats: finding-category-stats (category statistics)
|
|
17
|
+
|
|
5
18
|
## [3.82.0] — 2026-03-14
|
|
6
19
|
|
|
7
20
|
### 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;AAqxBH;;;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,CAuqG1D"}
|
package/dist/cli.js
CHANGED
|
@@ -607,6 +607,15 @@ 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
|
|
610
619
|
judges tune Analyze project and suggest optimal config
|
|
611
620
|
judges list List all available judges
|
|
612
621
|
judges version Show version information
|
|
@@ -3334,6 +3343,60 @@ export async function runCli(argv) {
|
|
|
3334
3343
|
runReviewCodeOwner(argv);
|
|
3335
3344
|
return;
|
|
3336
3345
|
}
|
|
3346
|
+
// ─── Review Finding Link Command ────────────────────────────────
|
|
3347
|
+
if (args.command === "review-finding-link") {
|
|
3348
|
+
const { runReviewFindingLink } = await import("./commands/review-finding-link.js");
|
|
3349
|
+
runReviewFindingLink(argv);
|
|
3350
|
+
return;
|
|
3351
|
+
}
|
|
3352
|
+
// ─── Review Team Assign Command ─────────────────────────────────
|
|
3353
|
+
if (args.command === "review-team-assign") {
|
|
3354
|
+
const { runReviewTeamAssign } = await import("./commands/review-team-assign.js");
|
|
3355
|
+
runReviewTeamAssign(argv);
|
|
3356
|
+
return;
|
|
3357
|
+
}
|
|
3358
|
+
// ─── Finding Compare Runs Command ───────────────────────────────
|
|
3359
|
+
if (args.command === "finding-compare-runs") {
|
|
3360
|
+
const { runFindingCompareRuns } = await import("./commands/finding-compare-runs.js");
|
|
3361
|
+
runFindingCompareRuns(argv);
|
|
3362
|
+
return;
|
|
3363
|
+
}
|
|
3364
|
+
// ─── Review Skip List Command ───────────────────────────────────
|
|
3365
|
+
if (args.command === "review-skip-list") {
|
|
3366
|
+
const { runReviewSkipList } = await import("./commands/review-skip-list.js");
|
|
3367
|
+
runReviewSkipList(argv);
|
|
3368
|
+
return;
|
|
3369
|
+
}
|
|
3370
|
+
// ─── Finding Hotfix Suggest Command ─────────────────────────────
|
|
3371
|
+
if (args.command === "finding-hotfix-suggest") {
|
|
3372
|
+
const { runFindingHotfixSuggest } = await import("./commands/finding-hotfix-suggest.js");
|
|
3373
|
+
runFindingHotfixSuggest(argv);
|
|
3374
|
+
return;
|
|
3375
|
+
}
|
|
3376
|
+
// ─── Review Approval Gate Command ───────────────────────────────
|
|
3377
|
+
if (args.command === "review-approval-gate") {
|
|
3378
|
+
const { runReviewApprovalGate } = await import("./commands/review-approval-gate.js");
|
|
3379
|
+
runReviewApprovalGate(argv);
|
|
3380
|
+
return;
|
|
3381
|
+
}
|
|
3382
|
+
// ─── Review Changelog Entry Command ─────────────────────────────
|
|
3383
|
+
if (args.command === "review-changelog-entry") {
|
|
3384
|
+
const { runReviewChangelogEntry } = await import("./commands/review-changelog-entry.js");
|
|
3385
|
+
runReviewChangelogEntry(argv);
|
|
3386
|
+
return;
|
|
3387
|
+
}
|
|
3388
|
+
// ─── Review Branch Compare Command ──────────────────────────────
|
|
3389
|
+
if (args.command === "review-branch-compare") {
|
|
3390
|
+
const { runReviewBranchCompare } = await import("./commands/review-branch-compare.js");
|
|
3391
|
+
runReviewBranchCompare(argv);
|
|
3392
|
+
return;
|
|
3393
|
+
}
|
|
3394
|
+
// ─── Finding Category Stats Command ─────────────────────────────
|
|
3395
|
+
if (args.command === "finding-category-stats") {
|
|
3396
|
+
const { runFindingCategoryStats } = await import("./commands/finding-category-stats.js");
|
|
3397
|
+
runFindingCategoryStats(argv);
|
|
3398
|
+
return;
|
|
3399
|
+
}
|
|
3337
3400
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
3338
3401
|
if (args.command === "tune") {
|
|
3339
3402
|
const { runTune } = await import("./commands/tune.js");
|