@kevinrabun/judges 3.96.0 → 3.98.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-annotation-layer.d.ts +5 -0
- package/dist/commands/finding-annotation-layer.d.ts.map +1 -0
- package/dist/commands/finding-annotation-layer.js +129 -0
- package/dist/commands/finding-annotation-layer.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-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-impact-rank.d.ts +5 -0
- package/dist/commands/finding-impact-rank.d.ts.map +1 -0
- package/dist/commands/finding-impact-rank.js +86 -0
- package/dist/commands/finding-impact-rank.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-risk-score.d.ts +5 -0
- package/dist/commands/finding-risk-score.d.ts.map +1 -0
- package/dist/commands/finding-risk-score.js +96 -0
- package/dist/commands/finding-risk-score.js.map +1 -0
- package/dist/commands/finding-trend-forecast.d.ts +5 -0
- package/dist/commands/finding-trend-forecast.d.ts.map +1 -0
- package/dist/commands/finding-trend-forecast.js +107 -0
- package/dist/commands/finding-trend-forecast.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-compliance-map.d.ts +5 -0
- package/dist/commands/review-compliance-map.d.ts.map +1 -0
- package/dist/commands/review-compliance-map.js +111 -0
- package/dist/commands/review-compliance-map.js.map +1 -0
- package/dist/commands/review-gate-config.d.ts +5 -0
- package/dist/commands/review-gate-config.d.ts.map +1 -0
- package/dist/commands/review-gate-config.js +154 -0
- package/dist/commands/review-gate-config.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-policy-engine.d.ts +5 -0
- package/dist/commands/review-policy-engine.d.ts.map +1 -0
- package/dist/commands/review-policy-engine.js +136 -0
- package/dist/commands/review-policy-engine.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-rollout-plan.d.ts +5 -0
- package/dist/commands/review-rollout-plan.d.ts.map +1 -0
- package/dist/commands/review-rollout-plan.js +124 -0
- package/dist/commands/review-rollout-plan.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/dist/commands/review-webhook-dispatch.d.ts +5 -0
- package/dist/commands/review-webhook-dispatch.d.ts.map +1 -0
- package/dist/commands/review-webhook-dispatch.js +100 -0
- package/dist/commands/review-webhook-dispatch.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.98.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Analyze review findings distribution by language: review-language-profile
|
|
9
|
+
- Look up CWE details for finding rule IDs: finding-cwe-lookup
|
|
10
|
+
- Generate CI/CD integration configs (GitHub Actions, GitLab, Azure Pipelines, Jenkins): review-cicd-integrate
|
|
11
|
+
- Preview how patches would modify source files: finding-patch-preview
|
|
12
|
+
- Organization-wide review dashboard: review-org-dashboard
|
|
13
|
+
- Detect duplicate or near-duplicate findings: finding-duplicate-detect
|
|
14
|
+
- Create urgency x impact priority matrix: finding-priority-matrix
|
|
15
|
+
- Configure SLA targets for review resolution: review-sla-config
|
|
16
|
+
- Archive and manage historical review reports: review-report-archive
|
|
17
|
+
|
|
18
|
+
## [3.97.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Define and enforce local code-review policies: review-policy-engine
|
|
22
|
+
- Configure webhook endpoints for review events: review-webhook-dispatch
|
|
23
|
+
- Calculate composite risk scores for findings: finding-risk-score
|
|
24
|
+
- Map findings to compliance frameworks (OWASP, CWE, PCI-DSS): review-compliance-map
|
|
25
|
+
- Forecast finding trends from historical data: finding-trend-forecast
|
|
26
|
+
- Rank findings by estimated business impact: finding-impact-rank
|
|
27
|
+
- Generate phased rollout plans for adoption: review-rollout-plan
|
|
28
|
+
- Add contextual annotations to findings: finding-annotation-layer
|
|
29
|
+
- Configure quality gates for review pipelines: review-gate-config
|
|
30
|
+
|
|
5
31
|
## [3.96.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;AA45BH;;;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,CAwlI1D"}
|
package/dist/cli.js
CHANGED
|
@@ -733,6 +733,24 @@ USAGE:
|
|
|
733
733
|
judges review-output-transform Transform output formats
|
|
734
734
|
judges review-adoption-metrics Track adoption metrics
|
|
735
735
|
judges review-workspace-init Initialize workspace for Judges
|
|
736
|
+
judges review-policy-engine Define and enforce review policies
|
|
737
|
+
judges review-webhook-dispatch Configure webhook dispatch
|
|
738
|
+
judges finding-risk-score Calculate finding risk scores
|
|
739
|
+
judges review-compliance-map Map findings to compliance frameworks
|
|
740
|
+
judges finding-trend-forecast Forecast finding trends
|
|
741
|
+
judges finding-impact-rank Rank findings by business impact
|
|
742
|
+
judges review-rollout-plan Generate phased rollout plan
|
|
743
|
+
judges finding-annotation-layer Add annotations to findings
|
|
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
|
|
736
754
|
judges tune Analyze project and suggest optimal config
|
|
737
755
|
judges list List all available judges
|
|
738
756
|
judges version Show version information
|
|
@@ -4216,6 +4234,114 @@ export async function runCli(argv) {
|
|
|
4216
4234
|
runReviewWorkspaceInit(argv);
|
|
4217
4235
|
return;
|
|
4218
4236
|
}
|
|
4237
|
+
// ─── Review Policy Engine Command ────────────────────────────────
|
|
4238
|
+
if (args.command === "review-policy-engine") {
|
|
4239
|
+
const { runReviewPolicyEngine } = await import("./commands/review-policy-engine.js");
|
|
4240
|
+
runReviewPolicyEngine(argv);
|
|
4241
|
+
return;
|
|
4242
|
+
}
|
|
4243
|
+
// ─── Review Webhook Dispatch Command ─────────────────────────────
|
|
4244
|
+
if (args.command === "review-webhook-dispatch") {
|
|
4245
|
+
const { runReviewWebhookDispatch } = await import("./commands/review-webhook-dispatch.js");
|
|
4246
|
+
runReviewWebhookDispatch(argv);
|
|
4247
|
+
return;
|
|
4248
|
+
}
|
|
4249
|
+
// ─── Finding Risk Score Command ──────────────────────────────────
|
|
4250
|
+
if (args.command === "finding-risk-score") {
|
|
4251
|
+
const { runFindingRiskScore } = await import("./commands/finding-risk-score.js");
|
|
4252
|
+
runFindingRiskScore(argv);
|
|
4253
|
+
return;
|
|
4254
|
+
}
|
|
4255
|
+
// ─── Review Compliance Map Command ───────────────────────────────
|
|
4256
|
+
if (args.command === "review-compliance-map") {
|
|
4257
|
+
const { runReviewComplianceMap } = await import("./commands/review-compliance-map.js");
|
|
4258
|
+
runReviewComplianceMap(argv);
|
|
4259
|
+
return;
|
|
4260
|
+
}
|
|
4261
|
+
// ─── Finding Trend Forecast Command ──────────────────────────────
|
|
4262
|
+
if (args.command === "finding-trend-forecast") {
|
|
4263
|
+
const { runFindingTrendForecast } = await import("./commands/finding-trend-forecast.js");
|
|
4264
|
+
runFindingTrendForecast(argv);
|
|
4265
|
+
return;
|
|
4266
|
+
}
|
|
4267
|
+
// ─── Finding Impact Rank Command ─────────────────────────────────
|
|
4268
|
+
if (args.command === "finding-impact-rank") {
|
|
4269
|
+
const { runFindingImpactRank } = await import("./commands/finding-impact-rank.js");
|
|
4270
|
+
runFindingImpactRank(argv);
|
|
4271
|
+
return;
|
|
4272
|
+
}
|
|
4273
|
+
// ─── Review Rollout Plan Command ─────────────────────────────────
|
|
4274
|
+
if (args.command === "review-rollout-plan") {
|
|
4275
|
+
const { runReviewRolloutPlan } = await import("./commands/review-rollout-plan.js");
|
|
4276
|
+
runReviewRolloutPlan(argv);
|
|
4277
|
+
return;
|
|
4278
|
+
}
|
|
4279
|
+
// ─── Finding Annotation Layer Command ────────────────────────────
|
|
4280
|
+
if (args.command === "finding-annotation-layer") {
|
|
4281
|
+
const { runFindingAnnotationLayer } = await import("./commands/finding-annotation-layer.js");
|
|
4282
|
+
runFindingAnnotationLayer(argv);
|
|
4283
|
+
return;
|
|
4284
|
+
}
|
|
4285
|
+
// ─── Review Gate Config Command ──────────────────────────────────
|
|
4286
|
+
if (args.command === "review-gate-config") {
|
|
4287
|
+
const { runReviewGateConfig } = await import("./commands/review-gate-config.js");
|
|
4288
|
+
runReviewGateConfig(argv);
|
|
4289
|
+
return;
|
|
4290
|
+
}
|
|
4291
|
+
// ─── Review Language Profile Command ─────────────────────────────
|
|
4292
|
+
if (args.command === "review-language-profile") {
|
|
4293
|
+
const { runReviewLanguageProfile } = await import("./commands/review-language-profile.js");
|
|
4294
|
+
runReviewLanguageProfile(argv);
|
|
4295
|
+
return;
|
|
4296
|
+
}
|
|
4297
|
+
// ─── Finding CWE Lookup Command ─────────────────────────────────
|
|
4298
|
+
if (args.command === "finding-cwe-lookup") {
|
|
4299
|
+
const { runFindingCweLookup } = await import("./commands/finding-cwe-lookup.js");
|
|
4300
|
+
runFindingCweLookup(argv);
|
|
4301
|
+
return;
|
|
4302
|
+
}
|
|
4303
|
+
// ─── Review CICD Integrate Command ──────────────────────────────
|
|
4304
|
+
if (args.command === "review-cicd-integrate") {
|
|
4305
|
+
const { runReviewCicdIntegrate } = await import("./commands/review-cicd-integrate.js");
|
|
4306
|
+
runReviewCicdIntegrate(argv);
|
|
4307
|
+
return;
|
|
4308
|
+
}
|
|
4309
|
+
// ─── Finding Patch Preview Command ──────────────────────────────
|
|
4310
|
+
if (args.command === "finding-patch-preview") {
|
|
4311
|
+
const { runFindingPatchPreview } = await import("./commands/finding-patch-preview.js");
|
|
4312
|
+
runFindingPatchPreview(argv);
|
|
4313
|
+
return;
|
|
4314
|
+
}
|
|
4315
|
+
// ─── Review Org Dashboard Command ───────────────────────────────
|
|
4316
|
+
if (args.command === "review-org-dashboard") {
|
|
4317
|
+
const { runReviewOrgDashboard } = await import("./commands/review-org-dashboard.js");
|
|
4318
|
+
runReviewOrgDashboard(argv);
|
|
4319
|
+
return;
|
|
4320
|
+
}
|
|
4321
|
+
// ─── Finding Duplicate Detect Command ───────────────────────────
|
|
4322
|
+
if (args.command === "finding-duplicate-detect") {
|
|
4323
|
+
const { runFindingDuplicateDetect } = await import("./commands/finding-duplicate-detect.js");
|
|
4324
|
+
runFindingDuplicateDetect(argv);
|
|
4325
|
+
return;
|
|
4326
|
+
}
|
|
4327
|
+
// ─── Finding Priority Matrix Command ────────────────────────────
|
|
4328
|
+
if (args.command === "finding-priority-matrix") {
|
|
4329
|
+
const { runFindingPriorityMatrix } = await import("./commands/finding-priority-matrix.js");
|
|
4330
|
+
runFindingPriorityMatrix(argv);
|
|
4331
|
+
return;
|
|
4332
|
+
}
|
|
4333
|
+
// ─── Review SLA Config Command ──────────────────────────────────
|
|
4334
|
+
if (args.command === "review-sla-config") {
|
|
4335
|
+
const { runReviewSlaConfig } = await import("./commands/review-sla-config.js");
|
|
4336
|
+
runReviewSlaConfig(argv);
|
|
4337
|
+
return;
|
|
4338
|
+
}
|
|
4339
|
+
// ─── Review Report Archive Command ──────────────────────────────
|
|
4340
|
+
if (args.command === "review-report-archive") {
|
|
4341
|
+
const { runReviewReportArchive } = await import("./commands/review-report-archive.js");
|
|
4342
|
+
runReviewReportArchive(argv);
|
|
4343
|
+
return;
|
|
4344
|
+
}
|
|
4219
4345
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4220
4346
|
if (args.command === "tune") {
|
|
4221
4347
|
const { runTune } = await import("./commands/tune.js");
|