@kevinrabun/judges 3.20.0 → 3.20.2

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,16 @@
2
2
 
3
3
  All notable changes to **@kevinrabun/judges** are documented here.
4
4
 
5
+ ## [3.20.2] — 2026-03-03
6
+
7
+ ### Fixed
8
+ - **"Auto" model fallback** — When the Copilot Chat model selector is set to "auto", `request.model` returns a pseudo-model with no real endpoint. Layer 2 now catches the `sendRequest` failure and falls back to `selectChatModels()` to find a working model. Applied to both `chat-participant.ts` (deep review) and `diagnostics.ts` (deep review + refinement).
9
+
10
+ ## [3.20.1] — 2026-03-03
11
+
12
+ ### Fixed
13
+ - **Layer 2 now uses user-selected model** — The `/deepreview` deep review and diagnostics Layer 2 no longer hardcode `gpt-4o`. In chat, it uses `request.model` (the model the user picked in the Copilot Chat model selector). In diagnostics, it uses `selectChatModels()` without a family filter, respecting whatever models are available.
14
+
5
15
  ## [3.20.0] — 2026-03-06
6
16
 
7
17
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevinrabun/judges",
3
- "version": "3.20.0",
3
+ "version": "3.20.2",
4
4
  "description": "35 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.0",
10
+ "version": "3.20.2",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@kevinrabun/judges",
15
- "version": "3.20.0",
15
+ "version": "3.20.2",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }