@kevinrabun/judges 3.20.11 → 3.20.12

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 CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to **@kevinrabun/judges** are documented here.
4
4
 
5
+ ## [3.20.12] — 2026-03-03
6
+
7
+ ### Changed
8
+ - **VS Code extension — Layer 2 progress feedback** — Replaced silent full-response buffering with two-phase streaming and granular progress indicators so users see real-time status during the AI deep review instead of a blank screen for 30–60 seconds:
9
+ - **Chat participant (`/deepreview`)**: Added progress messages at each stage (preparing prompt, selecting model, sending request, AI analyzing, streaming results); LLM response now streams incrementally to the chat after the first 500 chars clear the content-policy refusal check — user sees text appearing in real-time instead of a single wall of text at the end
10
+ - **Command palette (`Judges: Deep Review`)**: `withProgress` notification now shows phase-specific messages via a new `onProgress` callback passed into `deepReview()` — Layer 1 analysis, model selection, request sending, AI analysis, retry status all reported in the notification area
11
+ - **Retry path**: Content-policy retry also uses two-phase streaming and granular progress instead of silent buffering
12
+
13
+ ### Tests
14
+ - 1666 tests, 0 failures
15
+
5
16
  ## [3.20.11] — 2026-03-03
6
17
 
7
18
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevinrabun/judges",
3
- "version": "3.20.11",
3
+ "version": "3.20.12",
4
4
  "description": "37 specialized judges that evaluate AI-generated code for security, cost, and quality.",
5
5
  "mcpName": "io.github.KevinRabun/judges",
6
6
  "type": "module",
package/server.json CHANGED
@@ -7,12 +7,12 @@
7
7
  "url": "https://github.com/kevinrabun/judges",
8
8
  "source": "github"
9
9
  },
10
- "version": "3.20.11",
10
+ "version": "3.20.12",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@kevinrabun/judges",
15
- "version": "3.20.11",
15
+ "version": "3.20.12",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }