@kevinrabun/judges 3.109.0 → 3.111.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-effort-rank.d.ts +2 -0
- package/dist/commands/finding-effort-rank.d.ts.map +1 -0
- package/dist/commands/finding-effort-rank.js +94 -0
- package/dist/commands/finding-effort-rank.js.map +1 -0
- package/dist/commands/finding-fix-chain.d.ts +2 -0
- package/dist/commands/finding-fix-chain.d.ts.map +1 -0
- package/dist/commands/finding-fix-chain.js +79 -0
- package/dist/commands/finding-fix-chain.js.map +1 -0
- package/dist/commands/finding-owner-notify.d.ts +2 -0
- package/dist/commands/finding-owner-notify.d.ts.map +1 -0
- package/dist/commands/finding-owner-notify.js +122 -0
- package/dist/commands/finding-owner-notify.js.map +1 -0
- package/dist/commands/finding-patch-chain.d.ts +2 -0
- package/dist/commands/finding-patch-chain.d.ts.map +1 -0
- package/dist/commands/finding-patch-chain.js +91 -0
- package/dist/commands/finding-patch-chain.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-risk-label.d.ts +2 -0
- package/dist/commands/finding-risk-label.d.ts.map +1 -0
- package/dist/commands/finding-risk-label.js +73 -0
- package/dist/commands/finding-risk-label.js.map +1 -0
- package/dist/commands/review-config-health.d.ts +2 -0
- package/dist/commands/review-config-health.d.ts.map +1 -0
- package/dist/commands/review-config-health.js +173 -0
- package/dist/commands/review-config-health.js.map +1 -0
- package/dist/commands/review-engagement-score.d.ts +2 -0
- package/dist/commands/review-engagement-score.d.ts.map +1 -0
- package/dist/commands/review-engagement-score.js +112 -0
- package/dist/commands/review-engagement-score.js.map +1 -0
- package/dist/commands/review-feedback-summary.d.ts +2 -0
- package/dist/commands/review-feedback-summary.d.ts.map +1 -0
- package/dist/commands/review-feedback-summary.js +131 -0
- package/dist/commands/review-feedback-summary.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-progress-report.d.ts +2 -0
- package/dist/commands/review-progress-report.d.ts.map +1 -0
- package/dist/commands/review-progress-report.js +96 -0
- package/dist/commands/review-progress-report.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-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-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/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.111.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **finding-resolution-workflow** — Guide through severity-based resolution workflows with step checklists
|
|
9
|
+
- **review-quality-baseline** — Compare current review quality against historical baseline
|
|
10
|
+
- **finding-context-link** — Link findings to relevant documentation via keyword matching
|
|
11
|
+
- **review-team-velocity** — Track team review velocity metrics with trend detection
|
|
12
|
+
- **finding-auto-priority** — Auto-prioritise findings with multi-factor scoring (P0–P4)
|
|
13
|
+
- **review-retrospective** — Generate review retrospective summaries (went well, needs improvement, action items)
|
|
14
|
+
- **finding-dependency-impact** — Show impact of dependency-related findings and blast radius
|
|
15
|
+
- **review-mentor-suggest** — Suggest mentor pairings based on expertise gaps in review history
|
|
16
|
+
- **finding-cluster-summary** — Summarise finding clusters by domain with severity breakdown
|
|
17
|
+
|
|
18
|
+
## [3.110.0] — 2026-03-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- **finding-risk-label** — Label findings with risk categories (exploitable, data-loss, compliance, etc.)
|
|
22
|
+
- **review-feedback-summary** — Summarize reviewer feedback trends from review history
|
|
23
|
+
- **finding-fix-chain** — Chain related fixes together for batch remediation
|
|
24
|
+
- **review-config-health** — Assess configuration health and suggest improvements
|
|
25
|
+
- **finding-owner-notify** — Generate ownership-based notification lists for findings
|
|
26
|
+
- **review-progress-report** — Generate progress reports from review history
|
|
27
|
+
- **finding-patch-chain** — Link and order patches for safe sequential application
|
|
28
|
+
- **review-engagement-score** — Score team engagement with code reviews
|
|
29
|
+
- **finding-effort-rank** — Rank findings by estimated fix effort
|
|
30
|
+
|
|
5
31
|
## [3.109.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;AAihCH;;;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,CA24J1D"}
|
package/dist/cli.js
CHANGED
|
@@ -850,6 +850,24 @@ USAGE:
|
|
|
850
850
|
judges finding-dedup-merge Dedup merge across runs
|
|
851
851
|
judges review-team-rotation Team rotation
|
|
852
852
|
judges review-goal-track Goal tracking
|
|
853
|
+
judges finding-risk-label Risk labeling
|
|
854
|
+
judges review-feedback-summary Feedback summary
|
|
855
|
+
judges finding-fix-chain Fix chaining
|
|
856
|
+
judges review-config-health Config health check
|
|
857
|
+
judges finding-owner-notify Owner notifications
|
|
858
|
+
judges review-progress-report Progress report
|
|
859
|
+
judges finding-patch-chain Patch chaining
|
|
860
|
+
judges review-engagement-score Engagement score
|
|
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
|
|
853
871
|
judges tune Analyze project and suggest optimal config
|
|
854
872
|
judges list List all available judges
|
|
855
873
|
judges version Show version information
|
|
@@ -5035,6 +5053,114 @@ export async function runCli(argv) {
|
|
|
5035
5053
|
runReviewGoalTrack(argv);
|
|
5036
5054
|
return;
|
|
5037
5055
|
}
|
|
5056
|
+
// ─── Finding Risk Label Command ──────────────────────────────────
|
|
5057
|
+
if (args.command === "finding-risk-label") {
|
|
5058
|
+
const { runFindingRiskLabel } = await import("./commands/finding-risk-label.js");
|
|
5059
|
+
runFindingRiskLabel(argv);
|
|
5060
|
+
return;
|
|
5061
|
+
}
|
|
5062
|
+
// ─── Review Feedback Summary Command ─────────────────────────────
|
|
5063
|
+
if (args.command === "review-feedback-summary") {
|
|
5064
|
+
const { runReviewFeedbackSummary } = await import("./commands/review-feedback-summary.js");
|
|
5065
|
+
runReviewFeedbackSummary(argv);
|
|
5066
|
+
return;
|
|
5067
|
+
}
|
|
5068
|
+
// ─── Finding Fix Chain Command ───────────────────────────────────
|
|
5069
|
+
if (args.command === "finding-fix-chain") {
|
|
5070
|
+
const { runFindingFixChain } = await import("./commands/finding-fix-chain.js");
|
|
5071
|
+
runFindingFixChain(argv);
|
|
5072
|
+
return;
|
|
5073
|
+
}
|
|
5074
|
+
// ─── Review Config Health Command ────────────────────────────────
|
|
5075
|
+
if (args.command === "review-config-health") {
|
|
5076
|
+
const { runReviewConfigHealth } = await import("./commands/review-config-health.js");
|
|
5077
|
+
runReviewConfigHealth(argv);
|
|
5078
|
+
return;
|
|
5079
|
+
}
|
|
5080
|
+
// ─── Finding Owner Notify Command ────────────────────────────────
|
|
5081
|
+
if (args.command === "finding-owner-notify") {
|
|
5082
|
+
const { runFindingOwnerNotify } = await import("./commands/finding-owner-notify.js");
|
|
5083
|
+
runFindingOwnerNotify(argv);
|
|
5084
|
+
return;
|
|
5085
|
+
}
|
|
5086
|
+
// ─── Review Progress Report Command ──────────────────────────────
|
|
5087
|
+
if (args.command === "review-progress-report") {
|
|
5088
|
+
const { runReviewProgressReport } = await import("./commands/review-progress-report.js");
|
|
5089
|
+
runReviewProgressReport(argv);
|
|
5090
|
+
return;
|
|
5091
|
+
}
|
|
5092
|
+
// ─── Finding Patch Chain Command ─────────────────────────────────
|
|
5093
|
+
if (args.command === "finding-patch-chain") {
|
|
5094
|
+
const { runFindingPatchChain } = await import("./commands/finding-patch-chain.js");
|
|
5095
|
+
runFindingPatchChain(argv);
|
|
5096
|
+
return;
|
|
5097
|
+
}
|
|
5098
|
+
// ─── Review Engagement Score Command ─────────────────────────────
|
|
5099
|
+
if (args.command === "review-engagement-score") {
|
|
5100
|
+
const { runReviewEngagementScore } = await import("./commands/review-engagement-score.js");
|
|
5101
|
+
runReviewEngagementScore(argv);
|
|
5102
|
+
return;
|
|
5103
|
+
}
|
|
5104
|
+
// ─── Finding Effort Rank Command ─────────────────────────────────
|
|
5105
|
+
if (args.command === "finding-effort-rank") {
|
|
5106
|
+
const { runFindingEffortRank } = await import("./commands/finding-effort-rank.js");
|
|
5107
|
+
runFindingEffortRank(argv);
|
|
5108
|
+
return;
|
|
5109
|
+
}
|
|
5110
|
+
// ─── Finding Resolution Workflow Command ─────────────────────────
|
|
5111
|
+
if (args.command === "finding-resolution-workflow") {
|
|
5112
|
+
const { runFindingResolutionWorkflow } = await import("./commands/finding-resolution-workflow.js");
|
|
5113
|
+
runFindingResolutionWorkflow(argv);
|
|
5114
|
+
return;
|
|
5115
|
+
}
|
|
5116
|
+
// ─── Review Quality Baseline Command ─────────────────────────────
|
|
5117
|
+
if (args.command === "review-quality-baseline") {
|
|
5118
|
+
const { runReviewQualityBaseline } = await import("./commands/review-quality-baseline.js");
|
|
5119
|
+
runReviewQualityBaseline(argv);
|
|
5120
|
+
return;
|
|
5121
|
+
}
|
|
5122
|
+
// ─── Finding Context Link Command ────────────────────────────────
|
|
5123
|
+
if (args.command === "finding-context-link") {
|
|
5124
|
+
const { runFindingContextLink } = await import("./commands/finding-context-link.js");
|
|
5125
|
+
runFindingContextLink(argv);
|
|
5126
|
+
return;
|
|
5127
|
+
}
|
|
5128
|
+
// ─── Review Team Velocity Command ────────────────────────────────
|
|
5129
|
+
if (args.command === "review-team-velocity") {
|
|
5130
|
+
const { runReviewTeamVelocity } = await import("./commands/review-team-velocity.js");
|
|
5131
|
+
runReviewTeamVelocity(argv);
|
|
5132
|
+
return;
|
|
5133
|
+
}
|
|
5134
|
+
// ─── Finding Auto Priority Command ───────────────────────────────
|
|
5135
|
+
if (args.command === "finding-auto-priority") {
|
|
5136
|
+
const { runFindingAutoPriority } = await import("./commands/finding-auto-priority.js");
|
|
5137
|
+
runFindingAutoPriority(argv);
|
|
5138
|
+
return;
|
|
5139
|
+
}
|
|
5140
|
+
// ─── Review Retrospective Command ────────────────────────────────
|
|
5141
|
+
if (args.command === "review-retrospective") {
|
|
5142
|
+
const { runReviewRetrospective } = await import("./commands/review-retrospective.js");
|
|
5143
|
+
runReviewRetrospective(argv);
|
|
5144
|
+
return;
|
|
5145
|
+
}
|
|
5146
|
+
// ─── Finding Dependency Impact Command ───────────────────────────
|
|
5147
|
+
if (args.command === "finding-dependency-impact") {
|
|
5148
|
+
const { runFindingDependencyImpact } = await import("./commands/finding-dependency-impact.js");
|
|
5149
|
+
runFindingDependencyImpact(argv);
|
|
5150
|
+
return;
|
|
5151
|
+
}
|
|
5152
|
+
// ─── Review Mentor Suggest Command ───────────────────────────────
|
|
5153
|
+
if (args.command === "review-mentor-suggest") {
|
|
5154
|
+
const { runReviewMentorSuggest } = await import("./commands/review-mentor-suggest.js");
|
|
5155
|
+
runReviewMentorSuggest(argv);
|
|
5156
|
+
return;
|
|
5157
|
+
}
|
|
5158
|
+
// ─── Finding Cluster Summary Command ─────────────────────────────
|
|
5159
|
+
if (args.command === "finding-cluster-summary") {
|
|
5160
|
+
const { runFindingClusterSummary } = await import("./commands/finding-cluster-summary.js");
|
|
5161
|
+
runFindingClusterSummary(argv);
|
|
5162
|
+
return;
|
|
5163
|
+
}
|
|
5038
5164
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
5039
5165
|
if (args.command === "tune") {
|
|
5040
5166
|
const { runTune } = await import("./commands/tune.js");
|