@kevinrabun/judges 3.73.0 → 3.75.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 +24 -0
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +112 -0
- package/dist/cli.js.map +1 -1
- package/dist/commands/finding-category.d.ts +5 -0
- package/dist/commands/finding-category.d.ts.map +1 -0
- package/dist/commands/finding-category.js +110 -0
- package/dist/commands/finding-category.js.map +1 -0
- package/dist/commands/finding-confidence-filter.d.ts +5 -0
- package/dist/commands/finding-confidence-filter.d.ts.map +1 -0
- package/dist/commands/finding-confidence-filter.js +78 -0
- package/dist/commands/finding-confidence-filter.js.map +1 -0
- package/dist/commands/finding-export-csv.d.ts +5 -0
- package/dist/commands/finding-export-csv.d.ts.map +1 -0
- package/dist/commands/finding-export-csv.js +79 -0
- package/dist/commands/finding-export-csv.js.map +1 -0
- package/dist/commands/finding-priority-queue.d.ts +5 -0
- package/dist/commands/finding-priority-queue.d.ts.map +1 -0
- package/dist/commands/finding-priority-queue.js +132 -0
- package/dist/commands/finding-priority-queue.js.map +1 -0
- package/dist/commands/finding-remediation-plan.d.ts +5 -0
- package/dist/commands/finding-remediation-plan.d.ts.map +1 -0
- package/dist/commands/finding-remediation-plan.js +108 -0
- package/dist/commands/finding-remediation-plan.js.map +1 -0
- package/dist/commands/finding-resolution.d.ts +5 -0
- package/dist/commands/finding-resolution.d.ts.map +1 -0
- package/dist/commands/finding-resolution.js +143 -0
- package/dist/commands/finding-resolution.js.map +1 -0
- package/dist/commands/review-checklist.d.ts +5 -0
- package/dist/commands/review-checklist.d.ts.map +1 -0
- package/dist/commands/review-checklist.js +145 -0
- package/dist/commands/review-checklist.js.map +1 -0
- package/dist/commands/review-config-validate.d.ts +5 -0
- package/dist/commands/review-config-validate.d.ts.map +1 -0
- package/dist/commands/review-config-validate.js +111 -0
- package/dist/commands/review-config-validate.js.map +1 -0
- package/dist/commands/review-diff-annotate.d.ts +5 -0
- package/dist/commands/review-diff-annotate.d.ts.map +1 -0
- package/dist/commands/review-diff-annotate.js +105 -0
- package/dist/commands/review-diff-annotate.js.map +1 -0
- package/dist/commands/review-lock.d.ts +5 -0
- package/dist/commands/review-lock.d.ts.map +1 -0
- package/dist/commands/review-lock.js +108 -0
- package/dist/commands/review-lock.js.map +1 -0
- package/dist/commands/review-note.d.ts +5 -0
- package/dist/commands/review-note.d.ts.map +1 -0
- package/dist/commands/review-note.js +105 -0
- package/dist/commands/review-note.js.map +1 -0
- package/dist/commands/review-owner.d.ts +5 -0
- package/dist/commands/review-owner.d.ts.map +1 -0
- package/dist/commands/review-owner.js +130 -0
- package/dist/commands/review-owner.js.map +1 -0
- package/dist/commands/review-rate-limit.d.ts +5 -0
- package/dist/commands/review-rate-limit.d.ts.map +1 -0
- package/dist/commands/review-rate-limit.js +131 -0
- package/dist/commands/review-rate-limit.js.map +1 -0
- package/dist/commands/review-skip-rule.d.ts +5 -0
- package/dist/commands/review-skip-rule.d.ts.map +1 -0
- package/dist/commands/review-skip-rule.js +106 -0
- package/dist/commands/review-skip-rule.js.map +1 -0
- package/dist/commands/review-snapshot-diff.d.ts +5 -0
- package/dist/commands/review-snapshot-diff.d.ts.map +1 -0
- package/dist/commands/review-snapshot-diff.js +101 -0
- package/dist/commands/review-snapshot-diff.js.map +1 -0
- package/dist/commands/review-timeline.d.ts +5 -0
- package/dist/commands/review-timeline.d.ts.map +1 -0
- package/dist/commands/review-timeline.js +77 -0
- package/dist/commands/review-timeline.js.map +1 -0
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.75.0] — 2026-03-14
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Review checklists: review-checklist (manage pre/post-review checklists)
|
|
9
|
+
- Finding categories: finding-category (categorize findings into custom groups)
|
|
10
|
+
- Review locking: review-lock (lock reviews to prevent re-runs)
|
|
11
|
+
- Priority queue: finding-priority-queue (queue findings by priority for triage)
|
|
12
|
+
- Diff annotation: review-diff-annotate (annotate diff hunks with findings)
|
|
13
|
+
- Remediation plans: finding-remediation-plan (generate remediation plans from findings)
|
|
14
|
+
- Config validation: review-config-validate (validate review configuration files)
|
|
15
|
+
- Rate limiting: review-rate-limit (control review execution frequency)
|
|
16
|
+
|
|
17
|
+
## [3.74.0] — 2026-03-14
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- Confidence filtering: finding-confidence-filter (filter findings by confidence level)
|
|
21
|
+
- Rule skipping: review-skip-rule (quick skip/disable specific rules)
|
|
22
|
+
- Review notes: review-note (attach notes to reviews)
|
|
23
|
+
- CSV export: finding-export-csv (export findings as CSV)
|
|
24
|
+
- Timeline: review-timeline (show review activity timeline)
|
|
25
|
+
- Snapshot diff: review-snapshot-diff (diff between review snapshots)
|
|
26
|
+
- Resolution tracking: finding-resolution (track finding resolution status)
|
|
27
|
+
- Review ownership: review-owner (assign review ownership to team members)
|
|
28
|
+
|
|
5
29
|
## [3.73.0] — 2026-03-14
|
|
6
30
|
|
|
7
31
|
### 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;AAgtBH;;;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,CAosF1D"}
|
package/dist/cli.js
CHANGED
|
@@ -531,6 +531,22 @@ USAGE:
|
|
|
531
531
|
judges finding-link Link related findings across files
|
|
532
532
|
judges review-compare-version Compare review results between versions
|
|
533
533
|
judges review-summary-email Generate email-ready review summaries
|
|
534
|
+
judges finding-confidence-filter Filter findings by confidence level
|
|
535
|
+
judges review-skip-rule Quick skip/disable specific rules
|
|
536
|
+
judges review-note Attach notes to reviews
|
|
537
|
+
judges finding-export-csv Export findings as CSV
|
|
538
|
+
judges review-timeline Show review activity timeline
|
|
539
|
+
judges review-snapshot-diff Diff between review snapshots
|
|
540
|
+
judges finding-resolution Track finding resolution status
|
|
541
|
+
judges review-owner Assign review ownership to team members
|
|
542
|
+
judges review-checklist Manage pre/post-review checklists
|
|
543
|
+
judges finding-category Categorize findings into custom groups
|
|
544
|
+
judges review-lock Lock reviews to prevent re-runs
|
|
545
|
+
judges finding-priority-queue Queue findings by priority for triage
|
|
546
|
+
judges review-diff-annotate Annotate diff hunks with findings
|
|
547
|
+
judges finding-remediation-plan Generate remediation plans from findings
|
|
548
|
+
judges review-config-validate Validate review configuration files
|
|
549
|
+
judges review-rate-limit Control review execution frequency
|
|
534
550
|
judges tune Analyze project and suggest optimal config
|
|
535
551
|
judges list List all available judges
|
|
536
552
|
judges version Show version information
|
|
@@ -2802,6 +2818,102 @@ export async function runCli(argv) {
|
|
|
2802
2818
|
runReviewSummaryEmail(argv);
|
|
2803
2819
|
return;
|
|
2804
2820
|
}
|
|
2821
|
+
// ─── Finding Confidence Filter Command ────────────────────────────
|
|
2822
|
+
if (args.command === "finding-confidence-filter") {
|
|
2823
|
+
const { runFindingConfidenceFilter } = await import("./commands/finding-confidence-filter.js");
|
|
2824
|
+
runFindingConfidenceFilter(argv);
|
|
2825
|
+
return;
|
|
2826
|
+
}
|
|
2827
|
+
// ─── Review Skip Rule Command ─────────────────────────────────────
|
|
2828
|
+
if (args.command === "review-skip-rule") {
|
|
2829
|
+
const { runReviewSkipRule } = await import("./commands/review-skip-rule.js");
|
|
2830
|
+
runReviewSkipRule(argv);
|
|
2831
|
+
return;
|
|
2832
|
+
}
|
|
2833
|
+
// ─── Review Note Command ──────────────────────────────────────────
|
|
2834
|
+
if (args.command === "review-note") {
|
|
2835
|
+
const { runReviewNote } = await import("./commands/review-note.js");
|
|
2836
|
+
runReviewNote(argv);
|
|
2837
|
+
return;
|
|
2838
|
+
}
|
|
2839
|
+
// ─── Finding Export CSV Command ───────────────────────────────────
|
|
2840
|
+
if (args.command === "finding-export-csv") {
|
|
2841
|
+
const { runFindingExportCsv } = await import("./commands/finding-export-csv.js");
|
|
2842
|
+
runFindingExportCsv(argv);
|
|
2843
|
+
return;
|
|
2844
|
+
}
|
|
2845
|
+
// ─── Review Timeline Command ──────────────────────────────────────
|
|
2846
|
+
if (args.command === "review-timeline") {
|
|
2847
|
+
const { runReviewTimeline } = await import("./commands/review-timeline.js");
|
|
2848
|
+
runReviewTimeline(argv);
|
|
2849
|
+
return;
|
|
2850
|
+
}
|
|
2851
|
+
// ─── Review Snapshot Diff Command ─────────────────────────────────
|
|
2852
|
+
if (args.command === "review-snapshot-diff") {
|
|
2853
|
+
const { runReviewSnapshotDiff } = await import("./commands/review-snapshot-diff.js");
|
|
2854
|
+
runReviewSnapshotDiff(argv);
|
|
2855
|
+
return;
|
|
2856
|
+
}
|
|
2857
|
+
// ─── Finding Resolution Command ───────────────────────────────────
|
|
2858
|
+
if (args.command === "finding-resolution") {
|
|
2859
|
+
const { runFindingResolution } = await import("./commands/finding-resolution.js");
|
|
2860
|
+
runFindingResolution(argv);
|
|
2861
|
+
return;
|
|
2862
|
+
}
|
|
2863
|
+
// ─── Review Owner Command ─────────────────────────────────────────
|
|
2864
|
+
if (args.command === "review-owner") {
|
|
2865
|
+
const { runReviewOwner } = await import("./commands/review-owner.js");
|
|
2866
|
+
runReviewOwner(argv);
|
|
2867
|
+
return;
|
|
2868
|
+
}
|
|
2869
|
+
// ─── Review Checklist Command ─────────────────────────────────────
|
|
2870
|
+
if (args.command === "review-checklist") {
|
|
2871
|
+
const { runReviewChecklist } = await import("./commands/review-checklist.js");
|
|
2872
|
+
runReviewChecklist(argv);
|
|
2873
|
+
return;
|
|
2874
|
+
}
|
|
2875
|
+
// ─── Finding Category Command ─────────────────────────────────────
|
|
2876
|
+
if (args.command === "finding-category") {
|
|
2877
|
+
const { runFindingCategory } = await import("./commands/finding-category.js");
|
|
2878
|
+
runFindingCategory(argv);
|
|
2879
|
+
return;
|
|
2880
|
+
}
|
|
2881
|
+
// ─── Review Lock Command ────────────────────────────────────────
|
|
2882
|
+
if (args.command === "review-lock") {
|
|
2883
|
+
const { runReviewLock } = await import("./commands/review-lock.js");
|
|
2884
|
+
runReviewLock(argv);
|
|
2885
|
+
return;
|
|
2886
|
+
}
|
|
2887
|
+
// ─── Finding Priority Queue Command ─────────────────────────────
|
|
2888
|
+
if (args.command === "finding-priority-queue") {
|
|
2889
|
+
const { runFindingPriorityQueue } = await import("./commands/finding-priority-queue.js");
|
|
2890
|
+
runFindingPriorityQueue(argv);
|
|
2891
|
+
return;
|
|
2892
|
+
}
|
|
2893
|
+
// ─── Review Diff Annotate Command ───────────────────────────────
|
|
2894
|
+
if (args.command === "review-diff-annotate") {
|
|
2895
|
+
const { runReviewDiffAnnotate } = await import("./commands/review-diff-annotate.js");
|
|
2896
|
+
runReviewDiffAnnotate(argv);
|
|
2897
|
+
return;
|
|
2898
|
+
}
|
|
2899
|
+
// ─── Finding Remediation Plan Command ───────────────────────────
|
|
2900
|
+
if (args.command === "finding-remediation-plan") {
|
|
2901
|
+
const { runFindingRemediationPlan } = await import("./commands/finding-remediation-plan.js");
|
|
2902
|
+
runFindingRemediationPlan(argv);
|
|
2903
|
+
return;
|
|
2904
|
+
}
|
|
2905
|
+
// ─── Review Config Validate Command ─────────────────────────────
|
|
2906
|
+
if (args.command === "review-config-validate") {
|
|
2907
|
+
const { runReviewConfigValidate } = await import("./commands/review-config-validate.js");
|
|
2908
|
+
runReviewConfigValidate(argv);
|
|
2909
|
+
return;
|
|
2910
|
+
}
|
|
2911
|
+
// ─── Review Rate Limit Command ──────────────────────────────────
|
|
2912
|
+
if (args.command === "review-rate-limit") {
|
|
2913
|
+
const { runReviewRateLimit } = await import("./commands/review-rate-limit.js");
|
|
2914
|
+
runReviewRateLimit(argv);
|
|
2915
|
+
return;
|
|
2916
|
+
}
|
|
2805
2917
|
// ─── Tune Command ─────────────────────────────────────────────────
|
|
2806
2918
|
if (args.command === "tune") {
|
|
2807
2919
|
const { runTune } = await import("./commands/tune.js");
|