@kevinrabun/judges 3.110.0 → 3.112.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-priority.d.ts +2 -0
- package/dist/commands/finding-auto-priority.d.ts.map +1 -0
- package/dist/commands/finding-auto-priority.js +101 -0
- package/dist/commands/finding-auto-priority.js.map +1 -0
- package/dist/commands/finding-cluster-summary.d.ts +2 -0
- package/dist/commands/finding-cluster-summary.d.ts.map +1 -0
- package/dist/commands/finding-cluster-summary.js +86 -0
- package/dist/commands/finding-cluster-summary.js.map +1 -0
- package/dist/commands/finding-context-link.d.ts +2 -0
- package/dist/commands/finding-context-link.d.ts.map +1 -0
- package/dist/commands/finding-context-link.js +95 -0
- package/dist/commands/finding-context-link.js.map +1 -0
- package/dist/commands/finding-dependency-impact.d.ts +2 -0
- package/dist/commands/finding-dependency-impact.d.ts.map +1 -0
- package/dist/commands/finding-dependency-impact.js +98 -0
- package/dist/commands/finding-dependency-impact.js.map +1 -0
- package/dist/commands/finding-fix-estimate.d.ts +2 -0
- package/dist/commands/finding-fix-estimate.d.ts.map +1 -0
- package/dist/commands/finding-fix-estimate.js +96 -0
- package/dist/commands/finding-fix-estimate.js.map +1 -0
- package/dist/commands/finding-noise-score.d.ts +2 -0
- package/dist/commands/finding-noise-score.d.ts.map +1 -0
- package/dist/commands/finding-noise-score.js +94 -0
- package/dist/commands/finding-noise-score.js.map +1 -0
- package/dist/commands/finding-repeat-detect.d.ts +2 -0
- package/dist/commands/finding-repeat-detect.d.ts.map +1 -0
- package/dist/commands/finding-repeat-detect.js +93 -0
- package/dist/commands/finding-repeat-detect.js.map +1 -0
- package/dist/commands/finding-resolution-workflow.d.ts +2 -0
- package/dist/commands/finding-resolution-workflow.d.ts.map +1 -0
- package/dist/commands/finding-resolution-workflow.js +92 -0
- package/dist/commands/finding-resolution-workflow.js.map +1 -0
- package/dist/commands/finding-scope-impact.d.ts +2 -0
- package/dist/commands/finding-scope-impact.d.ts.map +1 -0
- package/dist/commands/finding-scope-impact.js +84 -0
- package/dist/commands/finding-scope-impact.js.map +1 -0
- package/dist/commands/finding-top-offender.d.ts +2 -0
- package/dist/commands/finding-top-offender.d.ts.map +1 -0
- package/dist/commands/finding-top-offender.js +76 -0
- package/dist/commands/finding-top-offender.js.map +1 -0
- package/dist/commands/review-health-trend.d.ts +2 -0
- package/dist/commands/review-health-trend.d.ts.map +1 -0
- package/dist/commands/review-health-trend.js +108 -0
- package/dist/commands/review-health-trend.js.map +1 -0
- package/dist/commands/review-mentor-suggest.d.ts +2 -0
- package/dist/commands/review-mentor-suggest.d.ts.map +1 -0
- package/dist/commands/review-mentor-suggest.js +113 -0
- package/dist/commands/review-mentor-suggest.js.map +1 -0
- package/dist/commands/review-quality-baseline.d.ts +2 -0
- package/dist/commands/review-quality-baseline.d.ts.map +1 -0
- package/dist/commands/review-quality-baseline.js +135 -0
- package/dist/commands/review-quality-baseline.js.map +1 -0
- package/dist/commands/review-readiness-check.d.ts +2 -0
- package/dist/commands/review-readiness-check.d.ts.map +1 -0
- package/dist/commands/review-readiness-check.js +99 -0
- package/dist/commands/review-readiness-check.js.map +1 -0
- package/dist/commands/review-retrospective.d.ts +2 -0
- package/dist/commands/review-retrospective.d.ts.map +1 -0
- package/dist/commands/review-retrospective.js +119 -0
- package/dist/commands/review-retrospective.js.map +1 -0
- package/dist/commands/review-team-skill-map.d.ts +2 -0
- package/dist/commands/review-team-skill-map.d.ts.map +1 -0
- package/dist/commands/review-team-skill-map.js +103 -0
- package/dist/commands/review-team-skill-map.js.map +1 -0
- package/dist/commands/review-team-velocity.d.ts +2 -0
- package/dist/commands/review-team-velocity.d.ts.map +1 -0
- package/dist/commands/review-team-velocity.js +104 -0
- package/dist/commands/review-team-velocity.js.map +1 -0
- package/dist/commands/review-workflow-suggest.d.ts +2 -0
- package/dist/commands/review-workflow-suggest.d.ts.map +1 -0
- package/dist/commands/review-workflow-suggest.js +130 -0
- package/dist/commands/review-workflow-suggest.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.112.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **finding-scope-impact** — Analyse finding scope impact across domains (isolated, moderate, widespread, systemic)
|
|
9
|
+
- **review-health-trend** — Track review health over time with composite scoring and trend detection
|
|
10
|
+
- **finding-fix-estimate** — Estimate fix effort for each finding with time-boxed labels
|
|
11
|
+
- **review-readiness-check** — Assess codebase readiness for review with prerequisite checklist
|
|
12
|
+
- **finding-noise-score** — Score finding noise levels to identify low-signal findings
|
|
13
|
+
- **review-workflow-suggest** — Suggest optimal review workflows based on project characteristics
|
|
14
|
+
- **finding-top-offender** — Identify the most frequently triggered rules
|
|
15
|
+
- **review-team-skill-map** — Build team skill map from review history with expertise levels
|
|
16
|
+
- **finding-repeat-detect** — Detect findings that repeat across multiple reviews
|
|
17
|
+
|
|
18
|
+
## [3.111.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- **finding-resolution-workflow** — Guide through severity-based resolution workflows with step checklists
|
|
22
|
+
- **review-quality-baseline** — Compare current review quality against historical baseline
|
|
23
|
+
- **finding-context-link** — Link findings to relevant documentation via keyword matching
|
|
24
|
+
- **review-team-velocity** — Track team review velocity metrics with trend detection
|
|
25
|
+
- **finding-auto-priority** — Auto-prioritise findings with multi-factor scoring (P0–P4)
|
|
26
|
+
- **review-retrospective** — Generate review retrospective summaries (went well, needs improvement, action items)
|
|
27
|
+
- **finding-dependency-impact** — Show impact of dependency-related findings and blast radius
|
|
28
|
+
- **review-mentor-suggest** — Suggest mentor pairings based on expertise gaps in review history
|
|
29
|
+
- **finding-cluster-summary** — Summarise finding clusters by domain with severity breakdown
|
|
30
|
+
|
|
5
31
|
## [3.110.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;AA0hCH;;;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,CA08J1D"}
|
package/dist/cli.js
CHANGED
|
@@ -859,6 +859,24 @@ USAGE:
|
|
|
859
859
|
judges finding-patch-chain Patch chaining
|
|
860
860
|
judges review-engagement-score Engagement score
|
|
861
861
|
judges finding-effort-rank Effort ranking
|
|
862
|
+
judges finding-resolution-workflow Resolution workflow
|
|
863
|
+
judges review-quality-baseline Quality baseline
|
|
864
|
+
judges finding-context-link Context linking
|
|
865
|
+
judges review-team-velocity Team velocity
|
|
866
|
+
judges finding-auto-priority Auto prioritisation
|
|
867
|
+
judges review-retrospective Retrospective
|
|
868
|
+
judges finding-dependency-impact Dependency impact
|
|
869
|
+
judges review-mentor-suggest Mentor suggestions
|
|
870
|
+
judges finding-cluster-summary Cluster summary
|
|
871
|
+
judges finding-scope-impact Scope impact
|
|
872
|
+
judges review-health-trend Health trend
|
|
873
|
+
judges finding-fix-estimate Fix estimates
|
|
874
|
+
judges review-readiness-check Readiness check
|
|
875
|
+
judges finding-noise-score Noise scoring
|
|
876
|
+
judges review-workflow-suggest Workflow suggestions
|
|
877
|
+
judges finding-top-offender Top offenders
|
|
878
|
+
judges review-team-skill-map Team skill map
|
|
879
|
+
judges finding-repeat-detect Repeat detection
|
|
862
880
|
judges tune Analyze project and suggest optimal config
|
|
863
881
|
judges list List all available judges
|
|
864
882
|
judges version Show version information
|
|
@@ -5098,6 +5116,114 @@ export async function runCli(argv) {
|
|
|
5098
5116
|
runFindingEffortRank(argv);
|
|
5099
5117
|
return;
|
|
5100
5118
|
}
|
|
5119
|
+
// ─── Finding Resolution Workflow Command ─────────────────────────
|
|
5120
|
+
if (args.command === "finding-resolution-workflow") {
|
|
5121
|
+
const { runFindingResolutionWorkflow } = await import("./commands/finding-resolution-workflow.js");
|
|
5122
|
+
runFindingResolutionWorkflow(argv);
|
|
5123
|
+
return;
|
|
5124
|
+
}
|
|
5125
|
+
// ─── Review Quality Baseline Command ─────────────────────────────
|
|
5126
|
+
if (args.command === "review-quality-baseline") {
|
|
5127
|
+
const { runReviewQualityBaseline } = await import("./commands/review-quality-baseline.js");
|
|
5128
|
+
runReviewQualityBaseline(argv);
|
|
5129
|
+
return;
|
|
5130
|
+
}
|
|
5131
|
+
// ─── Finding Context Link Command ────────────────────────────────
|
|
5132
|
+
if (args.command === "finding-context-link") {
|
|
5133
|
+
const { runFindingContextLink } = await import("./commands/finding-context-link.js");
|
|
5134
|
+
runFindingContextLink(argv);
|
|
5135
|
+
return;
|
|
5136
|
+
}
|
|
5137
|
+
// ─── Review Team Velocity Command ────────────────────────────────
|
|
5138
|
+
if (args.command === "review-team-velocity") {
|
|
5139
|
+
const { runReviewTeamVelocity } = await import("./commands/review-team-velocity.js");
|
|
5140
|
+
runReviewTeamVelocity(argv);
|
|
5141
|
+
return;
|
|
5142
|
+
}
|
|
5143
|
+
// ─── Finding Auto Priority Command ───────────────────────────────
|
|
5144
|
+
if (args.command === "finding-auto-priority") {
|
|
5145
|
+
const { runFindingAutoPriority } = await import("./commands/finding-auto-priority.js");
|
|
5146
|
+
runFindingAutoPriority(argv);
|
|
5147
|
+
return;
|
|
5148
|
+
}
|
|
5149
|
+
// ─── Review Retrospective Command ────────────────────────────────
|
|
5150
|
+
if (args.command === "review-retrospective") {
|
|
5151
|
+
const { runReviewRetrospective } = await import("./commands/review-retrospective.js");
|
|
5152
|
+
runReviewRetrospective(argv);
|
|
5153
|
+
return;
|
|
5154
|
+
}
|
|
5155
|
+
// ─── Finding Dependency Impact Command ───────────────────────────
|
|
5156
|
+
if (args.command === "finding-dependency-impact") {
|
|
5157
|
+
const { runFindingDependencyImpact } = await import("./commands/finding-dependency-impact.js");
|
|
5158
|
+
runFindingDependencyImpact(argv);
|
|
5159
|
+
return;
|
|
5160
|
+
}
|
|
5161
|
+
// ─── Review Mentor Suggest Command ───────────────────────────────
|
|
5162
|
+
if (args.command === "review-mentor-suggest") {
|
|
5163
|
+
const { runReviewMentorSuggest } = await import("./commands/review-mentor-suggest.js");
|
|
5164
|
+
runReviewMentorSuggest(argv);
|
|
5165
|
+
return;
|
|
5166
|
+
}
|
|
5167
|
+
// ─── Finding Cluster Summary Command ─────────────────────────────
|
|
5168
|
+
if (args.command === "finding-cluster-summary") {
|
|
5169
|
+
const { runFindingClusterSummary } = await import("./commands/finding-cluster-summary.js");
|
|
5170
|
+
runFindingClusterSummary(argv);
|
|
5171
|
+
return;
|
|
5172
|
+
}
|
|
5173
|
+
// ─── Finding Scope Impact Command ────────────────────────────────
|
|
5174
|
+
if (args.command === "finding-scope-impact") {
|
|
5175
|
+
const { runFindingScopeImpact } = await import("./commands/finding-scope-impact.js");
|
|
5176
|
+
runFindingScopeImpact(argv);
|
|
5177
|
+
return;
|
|
5178
|
+
}
|
|
5179
|
+
// ─── Review Health Trend Command ─────────────────────────────────
|
|
5180
|
+
if (args.command === "review-health-trend") {
|
|
5181
|
+
const { runReviewHealthTrend } = await import("./commands/review-health-trend.js");
|
|
5182
|
+
runReviewHealthTrend(argv);
|
|
5183
|
+
return;
|
|
5184
|
+
}
|
|
5185
|
+
// ─── Finding Fix Estimate Command ────────────────────────────────
|
|
5186
|
+
if (args.command === "finding-fix-estimate") {
|
|
5187
|
+
const { runFindingFixEstimate } = await import("./commands/finding-fix-estimate.js");
|
|
5188
|
+
runFindingFixEstimate(argv);
|
|
5189
|
+
return;
|
|
5190
|
+
}
|
|
5191
|
+
// ─── Review Readiness Check Command ──────────────────────────────
|
|
5192
|
+
if (args.command === "review-readiness-check") {
|
|
5193
|
+
const { runReviewReadinessCheck } = await import("./commands/review-readiness-check.js");
|
|
5194
|
+
runReviewReadinessCheck(argv);
|
|
5195
|
+
return;
|
|
5196
|
+
}
|
|
5197
|
+
// ─── Finding Noise Score Command ─────────────────────────────────
|
|
5198
|
+
if (args.command === "finding-noise-score") {
|
|
5199
|
+
const { runFindingNoiseScore } = await import("./commands/finding-noise-score.js");
|
|
5200
|
+
runFindingNoiseScore(argv);
|
|
5201
|
+
return;
|
|
5202
|
+
}
|
|
5203
|
+
// ─── Review Workflow Suggest Command ──────────────────────────────
|
|
5204
|
+
if (args.command === "review-workflow-suggest") {
|
|
5205
|
+
const { runReviewWorkflowSuggest } = await import("./commands/review-workflow-suggest.js");
|
|
5206
|
+
runReviewWorkflowSuggest(argv);
|
|
5207
|
+
return;
|
|
5208
|
+
}
|
|
5209
|
+
// ─── Finding Top Offender Command ────────────────────────────────
|
|
5210
|
+
if (args.command === "finding-top-offender") {
|
|
5211
|
+
const { runFindingTopOffender } = await import("./commands/finding-top-offender.js");
|
|
5212
|
+
runFindingTopOffender(argv);
|
|
5213
|
+
return;
|
|
5214
|
+
}
|
|
5215
|
+
// ─── Review Team Skill Map Command ───────────────────────────────
|
|
5216
|
+
if (args.command === "review-team-skill-map") {
|
|
5217
|
+
const { runReviewTeamSkillMap } = await import("./commands/review-team-skill-map.js");
|
|
5218
|
+
runReviewTeamSkillMap(argv);
|
|
5219
|
+
return;
|
|
5220
|
+
}
|
|
5221
|
+
// ─── Finding Repeat Detect Command ───────────────────────────────
|
|
5222
|
+
if (args.command === "finding-repeat-detect") {
|
|
5223
|
+
const { runFindingRepeatDetect } = await import("./commands/finding-repeat-detect.js");
|
|
5224
|
+
runFindingRepeatDetect(argv);
|
|
5225
|
+
return;
|
|
5226
|
+
}
|
|
5101
5227
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
5102
5228
|
if (args.command === "tune") {
|
|
5103
5229
|
const { runTune } = await import("./commands/tune.js");
|