@kevinrabun/judges 3.7.2 → 3.8.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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to **@kevinrabun/judges** are documented here.
4
4
 
5
+ ## [3.8.0] — 2026-03-01
6
+
7
+ ### Added
8
+ - **MCP server auto-configuration** — VS Code extension now registers the Judges MCP server automatically via `McpServerDefinitionProvider`. Users install the extension and Layer 2 (35 expert-persona LLM prompts) is immediately available to Copilot — zero manual setup.
9
+ - **`Judges: Configure MCP Server` command** — writes the MCP server definition to `.vscode/mcp.json` for users who prefer explicit workspace config.
10
+ - Extension engine bumped to VS Code `^1.99.0` for MCP API support.
11
+
12
+ ## [3.7.3] — 2026-03-01
13
+
14
+ ### Fixed
15
+ - Fixed CI workflow race condition: extension install failed because `@kevinrabun/judges@^3.7.2` wasn't propagated on npm yet.
16
+ - Workflow now uses local tarball (`npm pack`) for the extension build instead of relying on npm registry propagation.
17
+ - Removed dependency version sync from the extension publish step; `^3.7.1` semver range covers all 3.x patches.
18
+
5
19
  ## [3.7.2] — 2026-03-01
6
20
 
7
21
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevinrabun/judges",
3
- "version": "3.7.2",
3
+ "version": "3.8.0",
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.7.2",
10
+ "version": "3.8.0",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@kevinrabun/judges",
15
- "version": "3.7.2",
15
+ "version": "3.8.0",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }