@kevinrabun/judges 3.117.4 → 3.117.5

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/README.md CHANGED
@@ -15,7 +15,7 @@ An MCP (Model Context Protocol) server that provides a panel of **45 specialized
15
15
  [![npm](https://img.shields.io/npm/v/@kevinrabun/judges)](https://www.npmjs.com/package/@kevinrabun/judges)
16
16
  [![npm downloads](https://img.shields.io/npm/dw/@kevinrabun/judges)](https://www.npmjs.com/package/@kevinrabun/judges)
17
17
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
18
- [![Tests](https://img.shields.io/badge/tests-2370-brightgreen)](https://github.com/KevinRabun/judges/actions)
18
+ [![Tests](https://img.shields.io/badge/tests-2368-brightgreen)](https://github.com/KevinRabun/judges/actions)
19
19
 
20
20
  > 🔰 **Packages**
21
21
  > - **CLI**: `@kevinrabun/judges-cli` → binary `judges` (use `npx @kevinrabun/judges-cli eval --file app.ts`).
@@ -262,7 +262,7 @@ function handleAcceptance(conversation, ref) {
262
262
  const { unaddressed } = getOutstandingFindings(conversation);
263
263
  return `Finding **${ref}** accepted. ${unaddressed.length} finding(s) remaining.`;
264
264
  }
265
- function handleReEvaluateRequest(conversation, content) {
265
+ function handleReEvaluateRequest(conversation, _content) {
266
266
  return `Re-evaluation requested. The following developer context will be applied:\n\n${conversation.developerContext.additionalContext.map((c, i) => `${i + 1}. ${c}`).join("\n")}\n\nRe-run the evaluation with this conversation's context for updated results.`;
267
267
  }
268
268
  function handleFocusRequest(conversation, content) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kevinrabun/judges",
3
- "version": "3.117.4",
3
+ "version": "3.117.5",
4
4
  "description": "45 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.117.4",
10
+ "version": "3.117.5",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@kevinrabun/judges",
15
- "version": "3.117.4",
15
+ "version": "3.117.5",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }