@kevinrabun/judges 3.111.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 +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-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-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-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-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-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,19 @@
|
|
|
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
|
+
|
|
5
18
|
## [3.111.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;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
|
@@ -868,6 +868,15 @@ USAGE:
|
|
|
868
868
|
judges finding-dependency-impact Dependency impact
|
|
869
869
|
judges review-mentor-suggest Mentor suggestions
|
|
870
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
|
|
871
880
|
judges tune Analyze project and suggest optimal config
|
|
872
881
|
judges list List all available judges
|
|
873
882
|
judges version Show version information
|
|
@@ -5161,6 +5170,60 @@ export async function runCli(argv) {
|
|
|
5161
5170
|
runFindingClusterSummary(argv);
|
|
5162
5171
|
return;
|
|
5163
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
|
+
}
|
|
5164
5227
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
5165
5228
|
if (args.command === "tune") {
|
|
5166
5229
|
const { runTune } = await import("./commands/tune.js");
|