@kevinrabun/judges 3.98.0 → 3.100.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-auto-suppress.d.ts +5 -0
- package/dist/commands/finding-auto-suppress.d.ts.map +1 -0
- package/dist/commands/finding-auto-suppress.js +127 -0
- package/dist/commands/finding-auto-suppress.js.map +1 -0
- package/dist/commands/finding-auto-triage.d.ts +5 -0
- package/dist/commands/finding-auto-triage.d.ts.map +1 -0
- package/dist/commands/finding-auto-triage.js +109 -0
- package/dist/commands/finding-auto-triage.js.map +1 -0
- package/dist/commands/finding-change-impact.d.ts +5 -0
- package/dist/commands/finding-change-impact.d.ts.map +1 -0
- package/dist/commands/finding-change-impact.js +108 -0
- package/dist/commands/finding-change-impact.js.map +1 -0
- package/dist/commands/finding-context-enrich.d.ts +5 -0
- package/dist/commands/finding-context-enrich.d.ts.map +1 -0
- package/dist/commands/finding-context-enrich.js +90 -0
- package/dist/commands/finding-context-enrich.js.map +1 -0
- package/dist/commands/finding-dismiss-workflow.d.ts +5 -0
- package/dist/commands/finding-dismiss-workflow.d.ts.map +1 -0
- package/dist/commands/finding-dismiss-workflow.js +120 -0
- package/dist/commands/finding-dismiss-workflow.js.map +1 -0
- package/dist/commands/finding-false-positive-learn.d.ts +5 -0
- package/dist/commands/finding-false-positive-learn.d.ts.map +1 -0
- package/dist/commands/finding-false-positive-learn.js +86 -0
- package/dist/commands/finding-false-positive-learn.js.map +1 -0
- package/dist/commands/finding-reachability-check.d.ts +5 -0
- package/dist/commands/finding-reachability-check.d.ts.map +1 -0
- package/dist/commands/finding-reachability-check.js +103 -0
- package/dist/commands/finding-reachability-check.js.map +1 -0
- package/dist/commands/review-audit-export.d.ts +5 -0
- package/dist/commands/review-audit-export.d.ts.map +1 -0
- package/dist/commands/review-audit-export.js +94 -0
- package/dist/commands/review-audit-export.js.map +1 -0
- package/dist/commands/review-data-retention.d.ts +5 -0
- package/dist/commands/review-data-retention.d.ts.map +1 -0
- package/dist/commands/review-data-retention.js +120 -0
- package/dist/commands/review-data-retention.js.map +1 -0
- package/dist/commands/review-deployment-gate.d.ts +5 -0
- package/dist/commands/review-deployment-gate.d.ts.map +1 -0
- package/dist/commands/review-deployment-gate.js +95 -0
- package/dist/commands/review-deployment-gate.js.map +1 -0
- package/dist/commands/review-environment-config.d.ts +5 -0
- package/dist/commands/review-environment-config.d.ts.map +1 -0
- package/dist/commands/review-environment-config.js +103 -0
- package/dist/commands/review-environment-config.js.map +1 -0
- package/dist/commands/review-multi-repo-sync.d.ts +5 -0
- package/dist/commands/review-multi-repo-sync.d.ts.map +1 -0
- package/dist/commands/review-multi-repo-sync.js +116 -0
- package/dist/commands/review-multi-repo-sync.js.map +1 -0
- package/dist/commands/review-permission-model.d.ts +5 -0
- package/dist/commands/review-permission-model.d.ts.map +1 -0
- package/dist/commands/review-permission-model.js +150 -0
- package/dist/commands/review-permission-model.js.map +1 -0
- package/dist/commands/review-pipeline-status.d.ts +5 -0
- package/dist/commands/review-pipeline-status.d.ts.map +1 -0
- package/dist/commands/review-pipeline-status.js +55 -0
- package/dist/commands/review-pipeline-status.js.map +1 -0
- package/dist/commands/review-repo-onboard.d.ts +5 -0
- package/dist/commands/review-repo-onboard.d.ts.map +1 -0
- package/dist/commands/review-repo-onboard.js +115 -0
- package/dist/commands/review-repo-onboard.js.map +1 -0
- package/dist/commands/review-review-comments.d.ts +5 -0
- package/dist/commands/review-review-comments.d.ts.map +1 -0
- package/dist/commands/review-review-comments.js +85 -0
- package/dist/commands/review-review-comments.js.map +1 -0
- package/dist/commands/review-session-replay.d.ts +5 -0
- package/dist/commands/review-session-replay.d.ts.map +1 -0
- package/dist/commands/review-session-replay.js +82 -0
- package/dist/commands/review-session-replay.js.map +1 -0
- package/dist/commands/review-stakeholder-report.d.ts +5 -0
- package/dist/commands/review-stakeholder-report.d.ts.map +1 -0
- package/dist/commands/review-stakeholder-report.js +76 -0
- package/dist/commands/review-stakeholder-report.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.100.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Auto-triage findings by severity, confidence, and rules: finding-auto-triage
|
|
9
|
+
- Generate stakeholder-facing summaries from review verdicts: review-stakeholder-report
|
|
10
|
+
- Assess impact of code changes on existing findings: finding-change-impact
|
|
11
|
+
- Configure deployment gates with threshold-based blocking: review-deployment-gate
|
|
12
|
+
- Manage per-environment review configurations: review-environment-config
|
|
13
|
+
- Track and learn from false positive patterns: finding-false-positive-learn
|
|
14
|
+
- Synchronize review configs across multiple repositories: review-multi-repo-sync
|
|
15
|
+
- Replay and inspect past review sessions: review-session-replay
|
|
16
|
+
- Enrich findings with surrounding code context: finding-context-enrich
|
|
17
|
+
|
|
18
|
+
## [3.99.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Auto-suppress findings matching criteria: finding-auto-suppress
|
|
22
|
+
- Generate structured review comments from findings: review-review-comments
|
|
23
|
+
- Role-based permission management for review workflows: review-permission-model
|
|
24
|
+
- Onboard a repository to Judges with config and baseline: review-repo-onboard
|
|
25
|
+
- Manage finding dismissals with reasons and audit trail: finding-dismiss-workflow
|
|
26
|
+
- Configure local data retention policies and cleanup: review-data-retention
|
|
27
|
+
- Check if findings reference reachable code paths: finding-reachability-check
|
|
28
|
+
- Export audit data in JSON/CSV for compliance: review-audit-export
|
|
29
|
+
- Monitor review pipeline and integration status: review-pipeline-status
|
|
30
|
+
|
|
5
31
|
## [3.98.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;AA86BH;;;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,CAstI1D"}
|
package/dist/cli.js
CHANGED
|
@@ -751,6 +751,24 @@ USAGE:
|
|
|
751
751
|
judges finding-priority-matrix Urgency x impact priority matrix
|
|
752
752
|
judges review-sla-config Configure SLA targets
|
|
753
753
|
judges review-report-archive Archive review reports
|
|
754
|
+
judges finding-auto-suppress Auto-suppress findings
|
|
755
|
+
judges review-review-comments Generate review comments
|
|
756
|
+
judges review-permission-model Role-based permissions
|
|
757
|
+
judges review-repo-onboard Onboard repository
|
|
758
|
+
judges finding-dismiss-workflow Manage finding dismissals
|
|
759
|
+
judges review-data-retention Configure data retention
|
|
760
|
+
judges finding-reachability-check Check finding reachability
|
|
761
|
+
judges review-audit-export Export audit data
|
|
762
|
+
judges review-pipeline-status Monitor pipeline status
|
|
763
|
+
judges finding-auto-triage Auto-triage findings
|
|
764
|
+
judges review-stakeholder-report Stakeholder summaries
|
|
765
|
+
judges finding-change-impact Assess change impact
|
|
766
|
+
judges review-deployment-gate Deployment gate checks
|
|
767
|
+
judges review-environment-config Per-environment config
|
|
768
|
+
judges finding-false-positive-learn Track false positives
|
|
769
|
+
judges review-multi-repo-sync Multi-repo config sync
|
|
770
|
+
judges review-session-replay Replay past sessions
|
|
771
|
+
judges finding-context-enrich Enrich finding context
|
|
754
772
|
judges tune Analyze project and suggest optimal config
|
|
755
773
|
judges list List all available judges
|
|
756
774
|
judges version Show version information
|
|
@@ -4342,6 +4360,114 @@ export async function runCli(argv) {
|
|
|
4342
4360
|
runReviewReportArchive(argv);
|
|
4343
4361
|
return;
|
|
4344
4362
|
}
|
|
4363
|
+
// ─── Finding Auto Suppress Command ─────────────────────────────────
|
|
4364
|
+
if (args.command === "finding-auto-suppress") {
|
|
4365
|
+
const { runFindingAutoSuppress } = await import("./commands/finding-auto-suppress.js");
|
|
4366
|
+
runFindingAutoSuppress(argv);
|
|
4367
|
+
return;
|
|
4368
|
+
}
|
|
4369
|
+
// ─── Review Review Comments Command ─────────────────────────────────
|
|
4370
|
+
if (args.command === "review-review-comments") {
|
|
4371
|
+
const { runReviewReviewComments } = await import("./commands/review-review-comments.js");
|
|
4372
|
+
runReviewReviewComments(argv);
|
|
4373
|
+
return;
|
|
4374
|
+
}
|
|
4375
|
+
// ─── Review Permission Model Command ─────────────────────────────────
|
|
4376
|
+
if (args.command === "review-permission-model") {
|
|
4377
|
+
const { runReviewPermissionModel } = await import("./commands/review-permission-model.js");
|
|
4378
|
+
runReviewPermissionModel(argv);
|
|
4379
|
+
return;
|
|
4380
|
+
}
|
|
4381
|
+
// ─── Review Repo Onboard Command ─────────────────────────────────
|
|
4382
|
+
if (args.command === "review-repo-onboard") {
|
|
4383
|
+
const { runReviewRepoOnboard } = await import("./commands/review-repo-onboard.js");
|
|
4384
|
+
runReviewRepoOnboard(argv);
|
|
4385
|
+
return;
|
|
4386
|
+
}
|
|
4387
|
+
// ─── Finding Dismiss Workflow Command ─────────────────────────────────
|
|
4388
|
+
if (args.command === "finding-dismiss-workflow") {
|
|
4389
|
+
const { runFindingDismissWorkflow } = await import("./commands/finding-dismiss-workflow.js");
|
|
4390
|
+
runFindingDismissWorkflow(argv);
|
|
4391
|
+
return;
|
|
4392
|
+
}
|
|
4393
|
+
// ─── Review Data Retention Command ─────────────────────────────────
|
|
4394
|
+
if (args.command === "review-data-retention") {
|
|
4395
|
+
const { runReviewDataRetention } = await import("./commands/review-data-retention.js");
|
|
4396
|
+
runReviewDataRetention(argv);
|
|
4397
|
+
return;
|
|
4398
|
+
}
|
|
4399
|
+
// ─── Finding Reachability Check Command ─────────────────────────────────
|
|
4400
|
+
if (args.command === "finding-reachability-check") {
|
|
4401
|
+
const { runFindingReachabilityCheck } = await import("./commands/finding-reachability-check.js");
|
|
4402
|
+
runFindingReachabilityCheck(argv);
|
|
4403
|
+
return;
|
|
4404
|
+
}
|
|
4405
|
+
// ─── Review Audit Export Command ─────────────────────────────────
|
|
4406
|
+
if (args.command === "review-audit-export") {
|
|
4407
|
+
const { runReviewAuditExport } = await import("./commands/review-audit-export.js");
|
|
4408
|
+
runReviewAuditExport(argv);
|
|
4409
|
+
return;
|
|
4410
|
+
}
|
|
4411
|
+
// ─── Review Pipeline Status Command ─────────────────────────────────
|
|
4412
|
+
if (args.command === "review-pipeline-status") {
|
|
4413
|
+
const { runReviewPipelineStatus } = await import("./commands/review-pipeline-status.js");
|
|
4414
|
+
runReviewPipelineStatus(argv);
|
|
4415
|
+
return;
|
|
4416
|
+
}
|
|
4417
|
+
// ─── Finding Auto Triage Command ────────────────────────────────────
|
|
4418
|
+
if (args.command === "finding-auto-triage") {
|
|
4419
|
+
const { runFindingAutoTriage } = await import("./commands/finding-auto-triage.js");
|
|
4420
|
+
runFindingAutoTriage(argv);
|
|
4421
|
+
return;
|
|
4422
|
+
}
|
|
4423
|
+
// ─── Review Stakeholder Report Command ──────────────────────────────
|
|
4424
|
+
if (args.command === "review-stakeholder-report") {
|
|
4425
|
+
const { runReviewStakeholderReport } = await import("./commands/review-stakeholder-report.js");
|
|
4426
|
+
runReviewStakeholderReport(argv);
|
|
4427
|
+
return;
|
|
4428
|
+
}
|
|
4429
|
+
// ─── Finding Change Impact Command ──────────────────────────────────
|
|
4430
|
+
if (args.command === "finding-change-impact") {
|
|
4431
|
+
const { runFindingChangeImpact } = await import("./commands/finding-change-impact.js");
|
|
4432
|
+
runFindingChangeImpact(argv);
|
|
4433
|
+
return;
|
|
4434
|
+
}
|
|
4435
|
+
// ─── Review Deployment Gate Command ─────────────────────────────────
|
|
4436
|
+
if (args.command === "review-deployment-gate") {
|
|
4437
|
+
const { runReviewDeploymentGate } = await import("./commands/review-deployment-gate.js");
|
|
4438
|
+
runReviewDeploymentGate(argv);
|
|
4439
|
+
return;
|
|
4440
|
+
}
|
|
4441
|
+
// ─── Review Environment Config Command ──────────────────────────────
|
|
4442
|
+
if (args.command === "review-environment-config") {
|
|
4443
|
+
const { runReviewEnvironmentConfig } = await import("./commands/review-environment-config.js");
|
|
4444
|
+
runReviewEnvironmentConfig(argv);
|
|
4445
|
+
return;
|
|
4446
|
+
}
|
|
4447
|
+
// ─── Finding False Positive Learn Command ───────────────────────────
|
|
4448
|
+
if (args.command === "finding-false-positive-learn") {
|
|
4449
|
+
const { runFindingFalsePositiveLearn } = await import("./commands/finding-false-positive-learn.js");
|
|
4450
|
+
runFindingFalsePositiveLearn(argv);
|
|
4451
|
+
return;
|
|
4452
|
+
}
|
|
4453
|
+
// ─── Review Multi Repo Sync Command ─────────────────────────────────
|
|
4454
|
+
if (args.command === "review-multi-repo-sync") {
|
|
4455
|
+
const { runReviewMultiRepoSync } = await import("./commands/review-multi-repo-sync.js");
|
|
4456
|
+
runReviewMultiRepoSync(argv);
|
|
4457
|
+
return;
|
|
4458
|
+
}
|
|
4459
|
+
// ─── Review Session Replay Command ──────────────────────────────────
|
|
4460
|
+
if (args.command === "review-session-replay") {
|
|
4461
|
+
const { runReviewSessionReplay } = await import("./commands/review-session-replay.js");
|
|
4462
|
+
runReviewSessionReplay(argv);
|
|
4463
|
+
return;
|
|
4464
|
+
}
|
|
4465
|
+
// ─── Finding Context Enrich Command ─────────────────────────────────
|
|
4466
|
+
if (args.command === "finding-context-enrich") {
|
|
4467
|
+
const { runFindingContextEnrich } = await import("./commands/finding-context-enrich.js");
|
|
4468
|
+
runFindingContextEnrich(argv);
|
|
4469
|
+
return;
|
|
4470
|
+
}
|
|
4345
4471
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4346
4472
|
if (args.command === "tune") {
|
|
4347
4473
|
const { runTune } = await import("./commands/tune.js");
|