@kevinrabun/judges 3.93.0 → 3.95.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-code-context.d.ts +5 -0
- package/dist/commands/finding-code-context.d.ts.map +1 -0
- package/dist/commands/finding-code-context.js +97 -0
- package/dist/commands/finding-code-context.js.map +1 -0
- package/dist/commands/finding-correlation-map.d.ts +5 -0
- package/dist/commands/finding-correlation-map.d.ts.map +1 -0
- package/dist/commands/finding-correlation-map.js +102 -0
- package/dist/commands/finding-correlation-map.js.map +1 -0
- package/dist/commands/finding-dedup-cross.d.ts +5 -0
- package/dist/commands/finding-dedup-cross.d.ts.map +1 -0
- package/dist/commands/finding-dedup-cross.js +91 -0
- package/dist/commands/finding-dedup-cross.js.map +1 -0
- package/dist/commands/finding-explain.d.ts +5 -0
- package/dist/commands/finding-explain.d.ts.map +1 -0
- package/dist/commands/finding-explain.js +94 -0
- package/dist/commands/finding-explain.js.map +1 -0
- package/dist/commands/finding-filter-view.d.ts +5 -0
- package/dist/commands/finding-filter-view.d.ts.map +1 -0
- package/dist/commands/finding-filter-view.js +108 -0
- package/dist/commands/finding-filter-view.js.map +1 -0
- package/dist/commands/finding-groupby-file.d.ts +5 -0
- package/dist/commands/finding-groupby-file.d.ts.map +1 -0
- package/dist/commands/finding-groupby-file.js +95 -0
- package/dist/commands/finding-groupby-file.js.map +1 -0
- package/dist/commands/finding-resolution-track.d.ts +5 -0
- package/dist/commands/finding-resolution-track.d.ts.map +1 -0
- package/dist/commands/finding-resolution-track.js +151 -0
- package/dist/commands/finding-resolution-track.js.map +1 -0
- package/dist/commands/review-api-export.d.ts +5 -0
- package/dist/commands/review-api-export.d.ts.map +1 -0
- package/dist/commands/review-api-export.js +99 -0
- package/dist/commands/review-api-export.js.map +1 -0
- package/dist/commands/review-ide-sync.d.ts +5 -0
- package/dist/commands/review-ide-sync.d.ts.map +1 -0
- package/dist/commands/review-ide-sync.js +92 -0
- package/dist/commands/review-ide-sync.js.map +1 -0
- package/dist/commands/review-interactive.d.ts +5 -0
- package/dist/commands/review-interactive.d.ts.map +1 -0
- package/dist/commands/review-interactive.js +86 -0
- package/dist/commands/review-interactive.js.map +1 -0
- package/dist/commands/review-merge-request.d.ts +5 -0
- package/dist/commands/review-merge-request.d.ts.map +1 -0
- package/dist/commands/review-merge-request.js +96 -0
- package/dist/commands/review-merge-request.js.map +1 -0
- package/dist/commands/review-notification-config.d.ts +5 -0
- package/dist/commands/review-notification-config.d.ts.map +1 -0
- package/dist/commands/review-notification-config.js +123 -0
- package/dist/commands/review-notification-config.js.map +1 -0
- package/dist/commands/review-onboard-checklist.d.ts +5 -0
- package/dist/commands/review-onboard-checklist.d.ts.map +1 -0
- package/dist/commands/review-onboard-checklist.js +120 -0
- package/dist/commands/review-onboard-checklist.js.map +1 -0
- package/dist/commands/review-quickstart.d.ts +5 -0
- package/dist/commands/review-quickstart.d.ts.map +1 -0
- package/dist/commands/review-quickstart.js +108 -0
- package/dist/commands/review-quickstart.js.map +1 -0
- package/dist/commands/review-scope-select.d.ts +5 -0
- package/dist/commands/review-scope-select.d.ts.map +1 -0
- package/dist/commands/review-scope-select.js +99 -0
- package/dist/commands/review-scope-select.js.map +1 -0
- package/dist/commands/review-summary-dashboard.d.ts +5 -0
- package/dist/commands/review-summary-dashboard.d.ts.map +1 -0
- package/dist/commands/review-summary-dashboard.js +97 -0
- package/dist/commands/review-summary-dashboard.js.map +1 -0
- package/dist/commands/review-template-library.d.ts +5 -0
- package/dist/commands/review-template-library.d.ts.map +1 -0
- package/dist/commands/review-template-library.js +156 -0
- package/dist/commands/review-template-library.js.map +1 -0
- package/dist/commands/review-tenant-config.d.ts +5 -0
- package/dist/commands/review-tenant-config.d.ts.map +1 -0
- package/dist/commands/review-tenant-config.js +117 -0
- package/dist/commands/review-tenant-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.95.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Aggregate review dashboard with key metrics: review-summary-dashboard
|
|
9
|
+
- Format findings for merge/pull request comments: review-merge-request
|
|
10
|
+
- Group findings by source file path: finding-groupby-file
|
|
11
|
+
- Deduplicate findings across multiple review files: finding-dedup-cross
|
|
12
|
+
- Select review scope by path patterns and extensions: review-scope-select
|
|
13
|
+
- Export review data in API-compatible JSON format: review-api-export
|
|
14
|
+
- Map correlations between related findings: finding-correlation-map
|
|
15
|
+
- Library of reusable review templates: review-template-library
|
|
16
|
+
- Configure notification preferences for review results: review-notification-config
|
|
17
|
+
|
|
18
|
+
## [3.94.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Interactive quickstart guide for new users: review-quickstart
|
|
22
|
+
- Step-by-step finding walkthrough sessions: review-interactive
|
|
23
|
+
- Detailed finding explanations with context: finding-explain
|
|
24
|
+
- Sync review results to IDE formats (VSCode/JetBrains): review-ide-sync
|
|
25
|
+
- Multi-criteria finding filtering and viewing: finding-filter-view
|
|
26
|
+
- Per-tenant/team configuration profiles: review-tenant-config
|
|
27
|
+
- Surrounding code context for findings: finding-code-context
|
|
28
|
+
- Finding resolution status tracking over time: finding-resolution-track
|
|
29
|
+
- Team onboarding checklists for adoption: review-onboard-checklist
|
|
30
|
+
|
|
5
31
|
## [3.93.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;AAi4BH;;;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,CA25H1D"}
|
package/dist/cli.js
CHANGED
|
@@ -706,6 +706,24 @@ USAGE:
|
|
|
706
706
|
judges finding-link-graph Build finding relationship graph
|
|
707
707
|
judges review-audit-trail Maintain review audit trail
|
|
708
708
|
judges review-compliance-report Generate compliance reports
|
|
709
|
+
judges review-quickstart Interactive quickstart guide
|
|
710
|
+
judges review-interactive Step-by-step finding walkthrough
|
|
711
|
+
judges finding-explain Explain findings in detail
|
|
712
|
+
judges review-ide-sync Sync results to IDE format
|
|
713
|
+
judges finding-filter-view Filter findings by criteria
|
|
714
|
+
judges review-tenant-config Manage team config profiles
|
|
715
|
+
judges finding-code-context Show code context for findings
|
|
716
|
+
judges finding-resolution-track Track finding resolution status
|
|
717
|
+
judges review-onboard-checklist Team onboarding checklist
|
|
718
|
+
judges review-summary-dashboard Aggregate review dashboard
|
|
719
|
+
judges review-merge-request Format findings for MR/PR comments
|
|
720
|
+
judges finding-groupby-file Group findings by source file
|
|
721
|
+
judges finding-dedup-cross Deduplicate findings across reviews
|
|
722
|
+
judges review-scope-select Select review scope by path
|
|
723
|
+
judges review-api-export Export review data in API format
|
|
724
|
+
judges finding-correlation-map Map finding correlations
|
|
725
|
+
judges review-template-library Reusable review templates
|
|
726
|
+
judges review-notification-config Configure notification preferences
|
|
709
727
|
judges tune Analyze project and suggest optimal config
|
|
710
728
|
judges list List all available judges
|
|
711
729
|
judges version Show version information
|
|
@@ -4027,6 +4045,114 @@ export async function runCli(argv) {
|
|
|
4027
4045
|
runReviewComplianceReport(argv);
|
|
4028
4046
|
return;
|
|
4029
4047
|
}
|
|
4048
|
+
// ─── Review Quickstart Command ────────────────────────────────────
|
|
4049
|
+
if (args.command === "review-quickstart") {
|
|
4050
|
+
const { runReviewQuickstart } = await import("./commands/review-quickstart.js");
|
|
4051
|
+
runReviewQuickstart(argv);
|
|
4052
|
+
return;
|
|
4053
|
+
}
|
|
4054
|
+
// ─── Review Interactive Command ───────────────────────────────────
|
|
4055
|
+
if (args.command === "review-interactive") {
|
|
4056
|
+
const { runReviewInteractive } = await import("./commands/review-interactive.js");
|
|
4057
|
+
runReviewInteractive(argv);
|
|
4058
|
+
return;
|
|
4059
|
+
}
|
|
4060
|
+
// ─── Finding Explain Command ──────────────────────────────────────
|
|
4061
|
+
if (args.command === "finding-explain") {
|
|
4062
|
+
const { runFindingExplain } = await import("./commands/finding-explain.js");
|
|
4063
|
+
runFindingExplain(argv);
|
|
4064
|
+
return;
|
|
4065
|
+
}
|
|
4066
|
+
// ─── Review IDE Sync Command ──────────────────────────────────────
|
|
4067
|
+
if (args.command === "review-ide-sync") {
|
|
4068
|
+
const { runReviewIdeSync } = await import("./commands/review-ide-sync.js");
|
|
4069
|
+
runReviewIdeSync(argv);
|
|
4070
|
+
return;
|
|
4071
|
+
}
|
|
4072
|
+
// ─── Finding Filter View Command ──────────────────────────────────
|
|
4073
|
+
if (args.command === "finding-filter-view") {
|
|
4074
|
+
const { runFindingFilterView } = await import("./commands/finding-filter-view.js");
|
|
4075
|
+
runFindingFilterView(argv);
|
|
4076
|
+
return;
|
|
4077
|
+
}
|
|
4078
|
+
// ─── Review Tenant Config Command ─────────────────────────────────
|
|
4079
|
+
if (args.command === "review-tenant-config") {
|
|
4080
|
+
const { runReviewTenantConfig } = await import("./commands/review-tenant-config.js");
|
|
4081
|
+
runReviewTenantConfig(argv);
|
|
4082
|
+
return;
|
|
4083
|
+
}
|
|
4084
|
+
// ─── Finding Code Context Command ─────────────────────────────────
|
|
4085
|
+
if (args.command === "finding-code-context") {
|
|
4086
|
+
const { runFindingCodeContext } = await import("./commands/finding-code-context.js");
|
|
4087
|
+
runFindingCodeContext(argv);
|
|
4088
|
+
return;
|
|
4089
|
+
}
|
|
4090
|
+
// ─── Finding Resolution Track Command ─────────────────────────────
|
|
4091
|
+
if (args.command === "finding-resolution-track") {
|
|
4092
|
+
const { runFindingResolutionTrack } = await import("./commands/finding-resolution-track.js");
|
|
4093
|
+
runFindingResolutionTrack(argv);
|
|
4094
|
+
return;
|
|
4095
|
+
}
|
|
4096
|
+
// ─── Review Onboard Checklist Command ─────────────────────────────
|
|
4097
|
+
if (args.command === "review-onboard-checklist") {
|
|
4098
|
+
const { runReviewOnboardChecklist } = await import("./commands/review-onboard-checklist.js");
|
|
4099
|
+
runReviewOnboardChecklist(argv);
|
|
4100
|
+
return;
|
|
4101
|
+
}
|
|
4102
|
+
// ─── Review Summary Dashboard Command ─────────────────────────────
|
|
4103
|
+
if (args.command === "review-summary-dashboard") {
|
|
4104
|
+
const { runReviewSummaryDashboard } = await import("./commands/review-summary-dashboard.js");
|
|
4105
|
+
runReviewSummaryDashboard(argv);
|
|
4106
|
+
return;
|
|
4107
|
+
}
|
|
4108
|
+
// ─── Review Merge Request Command ─────────────────────────────────
|
|
4109
|
+
if (args.command === "review-merge-request") {
|
|
4110
|
+
const { runReviewMergeRequest } = await import("./commands/review-merge-request.js");
|
|
4111
|
+
runReviewMergeRequest(argv);
|
|
4112
|
+
return;
|
|
4113
|
+
}
|
|
4114
|
+
// ─── Finding Groupby File Command ─────────────────────────────────
|
|
4115
|
+
if (args.command === "finding-groupby-file") {
|
|
4116
|
+
const { runFindingGroupbyFile } = await import("./commands/finding-groupby-file.js");
|
|
4117
|
+
runFindingGroupbyFile(argv);
|
|
4118
|
+
return;
|
|
4119
|
+
}
|
|
4120
|
+
// ─── Finding Dedup Cross Command ──────────────────────────────────
|
|
4121
|
+
if (args.command === "finding-dedup-cross") {
|
|
4122
|
+
const { runFindingDedupCross } = await import("./commands/finding-dedup-cross.js");
|
|
4123
|
+
runFindingDedupCross(argv);
|
|
4124
|
+
return;
|
|
4125
|
+
}
|
|
4126
|
+
// ─── Review Scope Select Command ──────────────────────────────────
|
|
4127
|
+
if (args.command === "review-scope-select") {
|
|
4128
|
+
const { runReviewScopeSelect } = await import("./commands/review-scope-select.js");
|
|
4129
|
+
runReviewScopeSelect(argv);
|
|
4130
|
+
return;
|
|
4131
|
+
}
|
|
4132
|
+
// ─── Review API Export Command ────────────────────────────────────
|
|
4133
|
+
if (args.command === "review-api-export") {
|
|
4134
|
+
const { runReviewApiExport } = await import("./commands/review-api-export.js");
|
|
4135
|
+
runReviewApiExport(argv);
|
|
4136
|
+
return;
|
|
4137
|
+
}
|
|
4138
|
+
// ─── Finding Correlation Map Command ──────────────────────────────
|
|
4139
|
+
if (args.command === "finding-correlation-map") {
|
|
4140
|
+
const { runFindingCorrelationMap } = await import("./commands/finding-correlation-map.js");
|
|
4141
|
+
runFindingCorrelationMap(argv);
|
|
4142
|
+
return;
|
|
4143
|
+
}
|
|
4144
|
+
// ─── Review Template Library Command ──────────────────────────────
|
|
4145
|
+
if (args.command === "review-template-library") {
|
|
4146
|
+
const { runReviewTemplateLibrary } = await import("./commands/review-template-library.js");
|
|
4147
|
+
runReviewTemplateLibrary(argv);
|
|
4148
|
+
return;
|
|
4149
|
+
}
|
|
4150
|
+
// ─── Review Notification Config Command ───────────────────────────
|
|
4151
|
+
if (args.command === "review-notification-config") {
|
|
4152
|
+
const { runReviewNotificationConfig } = await import("./commands/review-notification-config.js");
|
|
4153
|
+
runReviewNotificationConfig(argv);
|
|
4154
|
+
return;
|
|
4155
|
+
}
|
|
4030
4156
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
4031
4157
|
if (args.command === "tune") {
|
|
4032
4158
|
const { runTune } = await import("./commands/tune.js");
|