@kevinrabun/judges 3.8.1 → 3.8.3
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 +13 -0
- package/README.md +25 -12
- package/package.json +1 -1
- package/server.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to **@kevinrabun/judges** are documented here.
|
|
4
4
|
|
|
5
|
+
## [3.8.3] — 2026-03-01
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Extension README: rewrote to lead with auto-configured MCP, added Marketplace install instructions, added missing commands to table, updated Layer 2 section to emphasize it is enabled automatically.
|
|
9
|
+
- Extension `package.json` description updated to mention auto-configured MCP.
|
|
10
|
+
- Root README: rewrote “Connect to Your Editor” section — VS Code extension is now the recommended zero-config path; manual MCP configs updated to use `npx` instead of absolute paths; added Cursor and generic MCP client examples.
|
|
11
|
+
|
|
12
|
+
## [3.8.2] — 2026-03-01
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Added `workflow_dispatch` trigger to publish workflow for manual re-runs.
|
|
16
|
+
- Fixed tag-push not triggering CI when pushed alongside branch updates.
|
|
17
|
+
|
|
5
18
|
## [3.8.1] — 2026-03-01
|
|
6
19
|
|
|
7
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -287,41 +287,54 @@ Runs automated tests covering all judges, AST parsers, markdown formatters, and
|
|
|
287
287
|
|
|
288
288
|
### 4. Connect to Your Editor
|
|
289
289
|
|
|
290
|
-
|
|
290
|
+
#### VS Code (recommended — zero config)
|
|
291
291
|
|
|
292
|
-
**
|
|
292
|
+
Install the **[Judges Panel](https://marketplace.visualstudio.com/items?itemName=kevinrabun.judges-panel)** extension from the Marketplace. It auto-configures the MCP server on activation — Copilot and other LMs can immediately use all 35 expert-persona prompts with no manual setup.
|
|
293
|
+
|
|
294
|
+
```bash
|
|
295
|
+
code --install-extension kevinrabun.judges-panel
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
#### VS Code — manual MCP config
|
|
299
|
+
|
|
300
|
+
If you prefer explicit workspace config (or want teammates without the extension to benefit), create `.vscode/mcp.json`:
|
|
293
301
|
|
|
294
302
|
```json
|
|
295
303
|
{
|
|
296
304
|
"servers": {
|
|
297
305
|
"judges": {
|
|
298
|
-
"command": "
|
|
299
|
-
"args": ["/
|
|
306
|
+
"command": "npx",
|
|
307
|
+
"args": ["-y", "@kevinrabun/judges"]
|
|
300
308
|
}
|
|
301
309
|
}
|
|
302
310
|
}
|
|
303
311
|
```
|
|
304
312
|
|
|
305
|
-
|
|
313
|
+
#### Claude Desktop
|
|
314
|
+
|
|
315
|
+
Add to `claude_desktop_config.json`:
|
|
306
316
|
|
|
307
317
|
```json
|
|
308
318
|
{
|
|
309
319
|
"mcpServers": {
|
|
310
320
|
"judges": {
|
|
311
|
-
"command": "
|
|
312
|
-
"args": ["/
|
|
321
|
+
"command": "npx",
|
|
322
|
+
"args": ["-y", "@kevinrabun/judges"]
|
|
313
323
|
}
|
|
314
324
|
}
|
|
315
325
|
}
|
|
316
326
|
```
|
|
317
327
|
|
|
318
|
-
|
|
328
|
+
#### Cursor / other MCP clients
|
|
319
329
|
|
|
320
|
-
|
|
321
|
-
npm install -g @kevinrabun/judges
|
|
322
|
-
```
|
|
330
|
+
Use the same `npx` command for any MCP-compatible client:
|
|
323
331
|
|
|
324
|
-
|
|
332
|
+
```json
|
|
333
|
+
{
|
|
334
|
+
"command": "npx",
|
|
335
|
+
"args": ["-y", "@kevinrabun/judges"]
|
|
336
|
+
}
|
|
337
|
+
```
|
|
325
338
|
|
|
326
339
|
### 5. Use Judges in GitHub Copilot PR Reviews
|
|
327
340
|
|
package/package.json
CHANGED
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.8.
|
|
10
|
+
"version": "3.8.3",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "@kevinrabun/judges",
|
|
15
|
-
"version": "3.8.
|
|
15
|
+
"version": "3.8.3",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
18
18
|
}
|