@kevinrabun/judges 3.99.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 +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-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-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/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-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,19 @@
|
|
|
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
|
+
|
|
5
18
|
## [3.99.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;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
|
@@ -760,6 +760,15 @@ USAGE:
|
|
|
760
760
|
judges finding-reachability-check Check finding reachability
|
|
761
761
|
judges review-audit-export Export audit data
|
|
762
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
|
|
763
772
|
judges tune Analyze project and suggest optimal config
|
|
764
773
|
judges list List all available judges
|
|
765
774
|
judges version Show version information
|
|
@@ -4405,6 +4414,60 @@ export async function runCli(argv) {
|
|
|
4405
4414
|
runReviewPipelineStatus(argv);
|
|
4406
4415
|
return;
|
|
4407
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
|
+
}
|
|
4408
4471
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4409
4472
|
if (args.command === "tune") {
|
|
4410
4473
|
const { runTune } = await import("./commands/tune.js");
|