@kevinrabun/judges 3.100.0 → 3.102.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-batch-suppress.d.ts +5 -0
- package/dist/commands/finding-batch-suppress.d.ts.map +1 -0
- package/dist/commands/finding-batch-suppress.js +86 -0
- package/dist/commands/finding-batch-suppress.js.map +1 -0
- package/dist/commands/finding-dependency-link.d.ts +5 -0
- package/dist/commands/finding-dependency-link.d.ts.map +1 -0
- package/dist/commands/finding-dependency-link.js +74 -0
- package/dist/commands/finding-dependency-link.js.map +1 -0
- package/dist/commands/finding-ownership-assign.d.ts +5 -0
- package/dist/commands/finding-ownership-assign.d.ts.map +1 -0
- package/dist/commands/finding-ownership-assign.js +102 -0
- package/dist/commands/finding-ownership-assign.js.map +1 -0
- package/dist/commands/finding-recurrence-detect.d.ts +5 -0
- package/dist/commands/finding-recurrence-detect.d.ts.map +1 -0
- package/dist/commands/finding-recurrence-detect.js +78 -0
- package/dist/commands/finding-recurrence-detect.js.map +1 -0
- package/dist/commands/finding-search-index.d.ts +5 -0
- package/dist/commands/finding-search-index.d.ts.map +1 -0
- package/dist/commands/finding-search-index.js +100 -0
- package/dist/commands/finding-search-index.js.map +1 -0
- package/dist/commands/finding-severity-drift.d.ts +5 -0
- package/dist/commands/finding-severity-drift.d.ts.map +1 -0
- package/dist/commands/finding-severity-drift.js +93 -0
- package/dist/commands/finding-severity-drift.js.map +1 -0
- package/dist/commands/review-access-log.d.ts +5 -0
- package/dist/commands/review-access-log.d.ts.map +1 -0
- package/dist/commands/review-access-log.js +66 -0
- package/dist/commands/review-access-log.js.map +1 -0
- package/dist/commands/review-archive-search.d.ts +5 -0
- package/dist/commands/review-archive-search.d.ts.map +1 -0
- package/dist/commands/review-archive-search.js +71 -0
- package/dist/commands/review-archive-search.js.map +1 -0
- package/dist/commands/review-branch-policy.d.ts +5 -0
- package/dist/commands/review-branch-policy.d.ts.map +1 -0
- package/dist/commands/review-branch-policy.js +103 -0
- package/dist/commands/review-branch-policy.js.map +1 -0
- package/dist/commands/review-custom-judge-config.d.ts +5 -0
- package/dist/commands/review-custom-judge-config.d.ts.map +1 -0
- package/dist/commands/review-custom-judge-config.js +104 -0
- package/dist/commands/review-custom-judge-config.js.map +1 -0
- package/dist/commands/review-incident-link.d.ts +5 -0
- package/dist/commands/review-incident-link.d.ts.map +1 -0
- package/dist/commands/review-incident-link.js +94 -0
- package/dist/commands/review-incident-link.js.map +1 -0
- package/dist/commands/review-integration-health.d.ts +5 -0
- package/dist/commands/review-integration-health.d.ts.map +1 -0
- package/dist/commands/review-integration-health.js +85 -0
- package/dist/commands/review-integration-health.js.map +1 -0
- package/dist/commands/review-metric-export.d.ts +5 -0
- package/dist/commands/review-metric-export.d.ts.map +1 -0
- package/dist/commands/review-metric-export.js +63 -0
- package/dist/commands/review-metric-export.js.map +1 -0
- package/dist/commands/review-notification-digest.d.ts +5 -0
- package/dist/commands/review-notification-digest.d.ts.map +1 -0
- package/dist/commands/review-notification-digest.js +65 -0
- package/dist/commands/review-notification-digest.js.map +1 -0
- package/dist/commands/review-pr-comment-gen.d.ts +5 -0
- package/dist/commands/review-pr-comment-gen.d.ts.map +1 -0
- package/dist/commands/review-pr-comment-gen.js +63 -0
- package/dist/commands/review-pr-comment-gen.js.map +1 -0
- package/dist/commands/review-quality-trend.d.ts +5 -0
- package/dist/commands/review-quality-trend.d.ts.map +1 -0
- package/dist/commands/review-quality-trend.js +58 -0
- package/dist/commands/review-quality-trend.js.map +1 -0
- package/dist/commands/review-role-assignment.d.ts +5 -0
- package/dist/commands/review-role-assignment.d.ts.map +1 -0
- package/dist/commands/review-role-assignment.js +99 -0
- package/dist/commands/review-role-assignment.js.map +1 -0
- package/dist/commands/review-tag-manager.d.ts +5 -0
- package/dist/commands/review-tag-manager.d.ts.map +1 -0
- package/dist/commands/review-tag-manager.js +129 -0
- package/dist/commands/review-tag-manager.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.102.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Quality trend tracking: review-quality-trend
|
|
9
|
+
- Batch finding suppression: finding-batch-suppress
|
|
10
|
+
- Severity drift detection: finding-severity-drift
|
|
11
|
+
- PR comment generation: review-pr-comment-gen
|
|
12
|
+
- Finding dependency linking: finding-dependency-link
|
|
13
|
+
- Reviewer role assignment: review-role-assignment
|
|
14
|
+
- Archived review search: review-archive-search
|
|
15
|
+
- Incident linking: review-incident-link
|
|
16
|
+
- Finding search index: finding-search-index
|
|
17
|
+
|
|
18
|
+
## [3.101.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Configure custom judge settings per project: review-custom-judge-config
|
|
22
|
+
- Manage branch-level review policies: review-branch-policy
|
|
23
|
+
- Detect recurring findings across review runs: finding-recurrence-detect
|
|
24
|
+
- Check health of Judges integrations: review-integration-health
|
|
25
|
+
- Export review metrics for external dashboards: review-metric-export
|
|
26
|
+
- Assign ownership of findings to team members: finding-ownership-assign
|
|
27
|
+
- Generate notification digests for review activity: review-notification-digest
|
|
28
|
+
- View and manage review access logs: review-access-log
|
|
29
|
+
- Manage tags for reviews and findings: review-tag-manager
|
|
30
|
+
|
|
5
31
|
## [3.100.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;AAg8BH;;;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,CAo1I1D"}
|
package/dist/cli.js
CHANGED
|
@@ -769,6 +769,24 @@ USAGE:
|
|
|
769
769
|
judges review-multi-repo-sync Multi-repo config sync
|
|
770
770
|
judges review-session-replay Replay past sessions
|
|
771
771
|
judges finding-context-enrich Enrich finding context
|
|
772
|
+
judges review-custom-judge-config Custom judge settings
|
|
773
|
+
judges review-branch-policy Branch review policies
|
|
774
|
+
judges finding-recurrence-detect Detect recurring findings
|
|
775
|
+
judges review-integration-health Check integration health
|
|
776
|
+
judges review-metric-export Export review metrics
|
|
777
|
+
judges finding-ownership-assign Assign finding ownership
|
|
778
|
+
judges review-notification-digest Notification digests
|
|
779
|
+
judges review-access-log View access logs
|
|
780
|
+
judges review-tag-manager Manage review tags
|
|
781
|
+
judges review-quality-trend Track quality trends
|
|
782
|
+
judges finding-batch-suppress Batch suppress findings
|
|
783
|
+
judges finding-severity-drift Detect severity changes
|
|
784
|
+
judges review-pr-comment-gen Generate PR comments
|
|
785
|
+
judges finding-dependency-link Link findings to deps
|
|
786
|
+
judges review-role-assignment Manage reviewer roles
|
|
787
|
+
judges review-archive-search Search archived reviews
|
|
788
|
+
judges review-incident-link Link findings to incidents
|
|
789
|
+
judges finding-search-index Build/search findings index
|
|
772
790
|
judges tune Analyze project and suggest optimal config
|
|
773
791
|
judges list List all available judges
|
|
774
792
|
judges version Show version information
|
|
@@ -4468,6 +4486,114 @@ export async function runCli(argv) {
|
|
|
4468
4486
|
runFindingContextEnrich(argv);
|
|
4469
4487
|
return;
|
|
4470
4488
|
}
|
|
4489
|
+
// ─── Review Custom Judge Config Command ─────────────────────────────
|
|
4490
|
+
if (args.command === "review-custom-judge-config") {
|
|
4491
|
+
const { runReviewCustomJudgeConfig } = await import("./commands/review-custom-judge-config.js");
|
|
4492
|
+
runReviewCustomJudgeConfig(argv);
|
|
4493
|
+
return;
|
|
4494
|
+
}
|
|
4495
|
+
// ─── Review Branch Policy Command ───────────────────────────────────
|
|
4496
|
+
if (args.command === "review-branch-policy") {
|
|
4497
|
+
const { runReviewBranchPolicy } = await import("./commands/review-branch-policy.js");
|
|
4498
|
+
runReviewBranchPolicy(argv);
|
|
4499
|
+
return;
|
|
4500
|
+
}
|
|
4501
|
+
// ─── Finding Recurrence Detect Command ──────────────────────────────
|
|
4502
|
+
if (args.command === "finding-recurrence-detect") {
|
|
4503
|
+
const { runFindingRecurrenceDetect } = await import("./commands/finding-recurrence-detect.js");
|
|
4504
|
+
runFindingRecurrenceDetect(argv);
|
|
4505
|
+
return;
|
|
4506
|
+
}
|
|
4507
|
+
// ─── Review Integration Health Command ──────────────────────────────
|
|
4508
|
+
if (args.command === "review-integration-health") {
|
|
4509
|
+
const { runReviewIntegrationHealth } = await import("./commands/review-integration-health.js");
|
|
4510
|
+
runReviewIntegrationHealth(argv);
|
|
4511
|
+
return;
|
|
4512
|
+
}
|
|
4513
|
+
// ─── Review Metric Export Command ───────────────────────────────────
|
|
4514
|
+
if (args.command === "review-metric-export") {
|
|
4515
|
+
const { runReviewMetricExport } = await import("./commands/review-metric-export.js");
|
|
4516
|
+
runReviewMetricExport(argv);
|
|
4517
|
+
return;
|
|
4518
|
+
}
|
|
4519
|
+
// ─── Finding Ownership Assign Command ───────────────────────────────
|
|
4520
|
+
if (args.command === "finding-ownership-assign") {
|
|
4521
|
+
const { runFindingOwnershipAssign } = await import("./commands/finding-ownership-assign.js");
|
|
4522
|
+
runFindingOwnershipAssign(argv);
|
|
4523
|
+
return;
|
|
4524
|
+
}
|
|
4525
|
+
// ─── Review Notification Digest Command ─────────────────────────────
|
|
4526
|
+
if (args.command === "review-notification-digest") {
|
|
4527
|
+
const { runReviewNotificationDigest } = await import("./commands/review-notification-digest.js");
|
|
4528
|
+
runReviewNotificationDigest(argv);
|
|
4529
|
+
return;
|
|
4530
|
+
}
|
|
4531
|
+
// ─── Review Access Log Command ─────────────────────────────────────
|
|
4532
|
+
if (args.command === "review-access-log") {
|
|
4533
|
+
const { runReviewAccessLog } = await import("./commands/review-access-log.js");
|
|
4534
|
+
runReviewAccessLog(argv);
|
|
4535
|
+
return;
|
|
4536
|
+
}
|
|
4537
|
+
// ─── Review Tag Manager Command ────────────────────────────────────
|
|
4538
|
+
if (args.command === "review-tag-manager") {
|
|
4539
|
+
const { runReviewTagManager } = await import("./commands/review-tag-manager.js");
|
|
4540
|
+
runReviewTagManager(argv);
|
|
4541
|
+
return;
|
|
4542
|
+
}
|
|
4543
|
+
// ─── Review Quality Trend Command ───────────────────────────────────
|
|
4544
|
+
if (args.command === "review-quality-trend") {
|
|
4545
|
+
const { runReviewQualityTrend } = await import("./commands/review-quality-trend.js");
|
|
4546
|
+
runReviewQualityTrend(argv);
|
|
4547
|
+
return;
|
|
4548
|
+
}
|
|
4549
|
+
// ─── Finding Batch Suppress Command ─────────────────────────────────
|
|
4550
|
+
if (args.command === "finding-batch-suppress") {
|
|
4551
|
+
const { runFindingBatchSuppress } = await import("./commands/finding-batch-suppress.js");
|
|
4552
|
+
runFindingBatchSuppress(argv);
|
|
4553
|
+
return;
|
|
4554
|
+
}
|
|
4555
|
+
// ─── Finding Severity Drift Command ─────────────────────────────────
|
|
4556
|
+
if (args.command === "finding-severity-drift") {
|
|
4557
|
+
const { runFindingSeverityDrift } = await import("./commands/finding-severity-drift.js");
|
|
4558
|
+
runFindingSeverityDrift(argv);
|
|
4559
|
+
return;
|
|
4560
|
+
}
|
|
4561
|
+
// ─── Review PR Comment Gen Command ──────────────────────────────────
|
|
4562
|
+
if (args.command === "review-pr-comment-gen") {
|
|
4563
|
+
const { runReviewPrCommentGen } = await import("./commands/review-pr-comment-gen.js");
|
|
4564
|
+
runReviewPrCommentGen(argv);
|
|
4565
|
+
return;
|
|
4566
|
+
}
|
|
4567
|
+
// ─── Finding Dependency Link Command ────────────────────────────────
|
|
4568
|
+
if (args.command === "finding-dependency-link") {
|
|
4569
|
+
const { runFindingDependencyLink } = await import("./commands/finding-dependency-link.js");
|
|
4570
|
+
runFindingDependencyLink(argv);
|
|
4571
|
+
return;
|
|
4572
|
+
}
|
|
4573
|
+
// ─── Review Role Assignment Command ─────────────────────────────────
|
|
4574
|
+
if (args.command === "review-role-assignment") {
|
|
4575
|
+
const { runReviewRoleAssignment } = await import("./commands/review-role-assignment.js");
|
|
4576
|
+
runReviewRoleAssignment(argv);
|
|
4577
|
+
return;
|
|
4578
|
+
}
|
|
4579
|
+
// ─── Review Archive Search Command ──────────────────────────────────
|
|
4580
|
+
if (args.command === "review-archive-search") {
|
|
4581
|
+
const { runReviewArchiveSearch } = await import("./commands/review-archive-search.js");
|
|
4582
|
+
runReviewArchiveSearch(argv);
|
|
4583
|
+
return;
|
|
4584
|
+
}
|
|
4585
|
+
// ─── Review Incident Link Command ───────────────────────────────────
|
|
4586
|
+
if (args.command === "review-incident-link") {
|
|
4587
|
+
const { runReviewIncidentLink } = await import("./commands/review-incident-link.js");
|
|
4588
|
+
runReviewIncidentLink(argv);
|
|
4589
|
+
return;
|
|
4590
|
+
}
|
|
4591
|
+
// ─── Finding Search Index Command ───────────────────────────────────
|
|
4592
|
+
if (args.command === "finding-search-index") {
|
|
4593
|
+
const { runFindingSearchIndex } = await import("./commands/finding-search-index.js");
|
|
4594
|
+
runFindingSearchIndex(argv);
|
|
4595
|
+
return;
|
|
4596
|
+
}
|
|
4471
4597
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4472
4598
|
if (args.command === "tune") {
|
|
4473
4599
|
const { runTune } = await import("./commands/tune.js");
|