@kevinrabun/judges 3.97.0 → 3.99.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-cwe-lookup.d.ts +5 -0
- package/dist/commands/finding-cwe-lookup.d.ts.map +1 -0
- package/dist/commands/finding-cwe-lookup.js +149 -0
- package/dist/commands/finding-cwe-lookup.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-duplicate-detect.d.ts +5 -0
- package/dist/commands/finding-duplicate-detect.d.ts.map +1 -0
- package/dist/commands/finding-duplicate-detect.js +114 -0
- package/dist/commands/finding-duplicate-detect.js.map +1 -0
- package/dist/commands/finding-patch-preview.d.ts +5 -0
- package/dist/commands/finding-patch-preview.d.ts.map +1 -0
- package/dist/commands/finding-patch-preview.js +104 -0
- package/dist/commands/finding-patch-preview.js.map +1 -0
- package/dist/commands/finding-priority-matrix.d.ts +5 -0
- package/dist/commands/finding-priority-matrix.d.ts.map +1 -0
- package/dist/commands/finding-priority-matrix.js +103 -0
- package/dist/commands/finding-priority-matrix.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-cicd-integrate.d.ts +5 -0
- package/dist/commands/review-cicd-integrate.d.ts.map +1 -0
- package/dist/commands/review-cicd-integrate.js +123 -0
- package/dist/commands/review-cicd-integrate.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-language-profile.d.ts +5 -0
- package/dist/commands/review-language-profile.d.ts.map +1 -0
- package/dist/commands/review-language-profile.js +73 -0
- package/dist/commands/review-language-profile.js.map +1 -0
- package/dist/commands/review-org-dashboard.d.ts +5 -0
- package/dist/commands/review-org-dashboard.d.ts.map +1 -0
- package/dist/commands/review-org-dashboard.js +69 -0
- package/dist/commands/review-org-dashboard.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-report-archive.d.ts +5 -0
- package/dist/commands/review-report-archive.d.ts.map +1 -0
- package/dist/commands/review-report-archive.js +101 -0
- package/dist/commands/review-report-archive.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-sla-config.d.ts +5 -0
- package/dist/commands/review-sla-config.d.ts.map +1 -0
- package/dist/commands/review-sla-config.js +89 -0
- package/dist/commands/review-sla-config.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.99.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Auto-suppress findings matching criteria: finding-auto-suppress
|
|
9
|
+
- Generate structured review comments from findings: review-review-comments
|
|
10
|
+
- Role-based permission management for review workflows: review-permission-model
|
|
11
|
+
- Onboard a repository to Judges with config and baseline: review-repo-onboard
|
|
12
|
+
- Manage finding dismissals with reasons and audit trail: finding-dismiss-workflow
|
|
13
|
+
- Configure local data retention policies and cleanup: review-data-retention
|
|
14
|
+
- Check if findings reference reachable code paths: finding-reachability-check
|
|
15
|
+
- Export audit data in JSON/CSV for compliance: review-audit-export
|
|
16
|
+
- Monitor review pipeline and integration status: review-pipeline-status
|
|
17
|
+
|
|
18
|
+
## [3.98.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Analyze review findings distribution by language: review-language-profile
|
|
22
|
+
- Look up CWE details for finding rule IDs: finding-cwe-lookup
|
|
23
|
+
- Generate CI/CD integration configs (GitHub Actions, GitLab, Azure Pipelines, Jenkins): review-cicd-integrate
|
|
24
|
+
- Preview how patches would modify source files: finding-patch-preview
|
|
25
|
+
- Organization-wide review dashboard: review-org-dashboard
|
|
26
|
+
- Detect duplicate or near-duplicate findings: finding-duplicate-detect
|
|
27
|
+
- Create urgency x impact priority matrix: finding-priority-matrix
|
|
28
|
+
- Configure SLA targets for review resolution: review-sla-config
|
|
29
|
+
- Archive and manage historical review reports: review-report-archive
|
|
30
|
+
|
|
5
31
|
## [3.97.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;AAq6BH;;;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,CAupI1D"}
|
package/dist/cli.js
CHANGED
|
@@ -742,6 +742,24 @@ USAGE:
|
|
|
742
742
|
judges review-rollout-plan Generate phased rollout plan
|
|
743
743
|
judges finding-annotation-layer Add annotations to findings
|
|
744
744
|
judges review-gate-config Configure quality gates
|
|
745
|
+
judges review-language-profile Analyze findings by language
|
|
746
|
+
judges finding-cwe-lookup Look up CWE details for findings
|
|
747
|
+
judges review-cicd-integrate Generate CI/CD integration configs
|
|
748
|
+
judges finding-patch-preview Preview patch modifications
|
|
749
|
+
judges review-org-dashboard Organization review dashboard
|
|
750
|
+
judges finding-duplicate-detect Detect duplicate findings
|
|
751
|
+
judges finding-priority-matrix Urgency x impact priority matrix
|
|
752
|
+
judges review-sla-config Configure SLA targets
|
|
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
|
|
745
763
|
judges tune Analyze project and suggest optimal config
|
|
746
764
|
judges list List all available judges
|
|
747
765
|
judges version Show version information
|
|
@@ -4279,6 +4297,114 @@ export async function runCli(argv) {
|
|
|
4279
4297
|
runReviewGateConfig(argv);
|
|
4280
4298
|
return;
|
|
4281
4299
|
}
|
|
4300
|
+
// ─── Review Language Profile Command ─────────────────────────────
|
|
4301
|
+
if (args.command === "review-language-profile") {
|
|
4302
|
+
const { runReviewLanguageProfile } = await import("./commands/review-language-profile.js");
|
|
4303
|
+
runReviewLanguageProfile(argv);
|
|
4304
|
+
return;
|
|
4305
|
+
}
|
|
4306
|
+
// ─── Finding CWE Lookup Command ─────────────────────────────────
|
|
4307
|
+
if (args.command === "finding-cwe-lookup") {
|
|
4308
|
+
const { runFindingCweLookup } = await import("./commands/finding-cwe-lookup.js");
|
|
4309
|
+
runFindingCweLookup(argv);
|
|
4310
|
+
return;
|
|
4311
|
+
}
|
|
4312
|
+
// ─── Review CICD Integrate Command ──────────────────────────────
|
|
4313
|
+
if (args.command === "review-cicd-integrate") {
|
|
4314
|
+
const { runReviewCicdIntegrate } = await import("./commands/review-cicd-integrate.js");
|
|
4315
|
+
runReviewCicdIntegrate(argv);
|
|
4316
|
+
return;
|
|
4317
|
+
}
|
|
4318
|
+
// ─── Finding Patch Preview Command ──────────────────────────────
|
|
4319
|
+
if (args.command === "finding-patch-preview") {
|
|
4320
|
+
const { runFindingPatchPreview } = await import("./commands/finding-patch-preview.js");
|
|
4321
|
+
runFindingPatchPreview(argv);
|
|
4322
|
+
return;
|
|
4323
|
+
}
|
|
4324
|
+
// ─── Review Org Dashboard Command ───────────────────────────────
|
|
4325
|
+
if (args.command === "review-org-dashboard") {
|
|
4326
|
+
const { runReviewOrgDashboard } = await import("./commands/review-org-dashboard.js");
|
|
4327
|
+
runReviewOrgDashboard(argv);
|
|
4328
|
+
return;
|
|
4329
|
+
}
|
|
4330
|
+
// ─── Finding Duplicate Detect Command ───────────────────────────
|
|
4331
|
+
if (args.command === "finding-duplicate-detect") {
|
|
4332
|
+
const { runFindingDuplicateDetect } = await import("./commands/finding-duplicate-detect.js");
|
|
4333
|
+
runFindingDuplicateDetect(argv);
|
|
4334
|
+
return;
|
|
4335
|
+
}
|
|
4336
|
+
// ─── Finding Priority Matrix Command ────────────────────────────
|
|
4337
|
+
if (args.command === "finding-priority-matrix") {
|
|
4338
|
+
const { runFindingPriorityMatrix } = await import("./commands/finding-priority-matrix.js");
|
|
4339
|
+
runFindingPriorityMatrix(argv);
|
|
4340
|
+
return;
|
|
4341
|
+
}
|
|
4342
|
+
// ─── Review SLA Config Command ──────────────────────────────────
|
|
4343
|
+
if (args.command === "review-sla-config") {
|
|
4344
|
+
const { runReviewSlaConfig } = await import("./commands/review-sla-config.js");
|
|
4345
|
+
runReviewSlaConfig(argv);
|
|
4346
|
+
return;
|
|
4347
|
+
}
|
|
4348
|
+
// ─── Review Report Archive Command ──────────────────────────────
|
|
4349
|
+
if (args.command === "review-report-archive") {
|
|
4350
|
+
const { runReviewReportArchive } = await import("./commands/review-report-archive.js");
|
|
4351
|
+
runReviewReportArchive(argv);
|
|
4352
|
+
return;
|
|
4353
|
+
}
|
|
4354
|
+
// ─── Finding Auto Suppress Command ─────────────────────────────────
|
|
4355
|
+
if (args.command === "finding-auto-suppress") {
|
|
4356
|
+
const { runFindingAutoSuppress } = await import("./commands/finding-auto-suppress.js");
|
|
4357
|
+
runFindingAutoSuppress(argv);
|
|
4358
|
+
return;
|
|
4359
|
+
}
|
|
4360
|
+
// ─── Review Review Comments Command ─────────────────────────────────
|
|
4361
|
+
if (args.command === "review-review-comments") {
|
|
4362
|
+
const { runReviewReviewComments } = await import("./commands/review-review-comments.js");
|
|
4363
|
+
runReviewReviewComments(argv);
|
|
4364
|
+
return;
|
|
4365
|
+
}
|
|
4366
|
+
// ─── Review Permission Model Command ─────────────────────────────────
|
|
4367
|
+
if (args.command === "review-permission-model") {
|
|
4368
|
+
const { runReviewPermissionModel } = await import("./commands/review-permission-model.js");
|
|
4369
|
+
runReviewPermissionModel(argv);
|
|
4370
|
+
return;
|
|
4371
|
+
}
|
|
4372
|
+
// ─── Review Repo Onboard Command ─────────────────────────────────
|
|
4373
|
+
if (args.command === "review-repo-onboard") {
|
|
4374
|
+
const { runReviewRepoOnboard } = await import("./commands/review-repo-onboard.js");
|
|
4375
|
+
runReviewRepoOnboard(argv);
|
|
4376
|
+
return;
|
|
4377
|
+
}
|
|
4378
|
+
// ─── Finding Dismiss Workflow Command ─────────────────────────────────
|
|
4379
|
+
if (args.command === "finding-dismiss-workflow") {
|
|
4380
|
+
const { runFindingDismissWorkflow } = await import("./commands/finding-dismiss-workflow.js");
|
|
4381
|
+
runFindingDismissWorkflow(argv);
|
|
4382
|
+
return;
|
|
4383
|
+
}
|
|
4384
|
+
// ─── Review Data Retention Command ─────────────────────────────────
|
|
4385
|
+
if (args.command === "review-data-retention") {
|
|
4386
|
+
const { runReviewDataRetention } = await import("./commands/review-data-retention.js");
|
|
4387
|
+
runReviewDataRetention(argv);
|
|
4388
|
+
return;
|
|
4389
|
+
}
|
|
4390
|
+
// ─── Finding Reachability Check Command ─────────────────────────────────
|
|
4391
|
+
if (args.command === "finding-reachability-check") {
|
|
4392
|
+
const { runFindingReachabilityCheck } = await import("./commands/finding-reachability-check.js");
|
|
4393
|
+
runFindingReachabilityCheck(argv);
|
|
4394
|
+
return;
|
|
4395
|
+
}
|
|
4396
|
+
// ─── Review Audit Export Command ─────────────────────────────────
|
|
4397
|
+
if (args.command === "review-audit-export") {
|
|
4398
|
+
const { runReviewAuditExport } = await import("./commands/review-audit-export.js");
|
|
4399
|
+
runReviewAuditExport(argv);
|
|
4400
|
+
return;
|
|
4401
|
+
}
|
|
4402
|
+
// ─── Review Pipeline Status Command ─────────────────────────────────
|
|
4403
|
+
if (args.command === "review-pipeline-status") {
|
|
4404
|
+
const { runReviewPipelineStatus } = await import("./commands/review-pipeline-status.js");
|
|
4405
|
+
runReviewPipelineStatus(argv);
|
|
4406
|
+
return;
|
|
4407
|
+
}
|
|
4282
4408
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4283
4409
|
if (args.command === "tune") {
|
|
4284
4410
|
const { runTune } = await import("./commands/tune.js");
|