@kevinrabun/judges 3.114.0 → 3.115.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/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@kevinrabun/judges",
3
- "version": "3.114.0",
3
+ "version": "3.115.0",
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",
7
7
  "main": "dist/index.js",
8
+ "bin": {
9
+ "judges": "packages/judges-cli/bin/judges.js"
10
+ },
8
11
  "exports": {
9
12
  ".": {
10
13
  "import": "./dist/api.js",
@@ -0,0 +1,24 @@
1
+ # @kevinrabun/judges-cli
2
+
3
+ Standalone CLI package for Judges.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @kevinrabun/judges-cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ judges eval src/app.ts
15
+ judges list
16
+ judges hook install
17
+
18
+ # Agentic skills
19
+ judges skill ai-code-review --file src/app.ts
20
+ judges skill security-review --file src/api.ts --format json
21
+ judges skills # list available skills
22
+ ```
23
+
24
+ Use `@kevinrabun/judges` when you need the MCP server or programmatic API.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ import { runCli } from "../dist/cli.js";
4
+
5
+ runCli(process.argv).catch((error) => {
6
+ console.error("CLI error:", error);
7
+ process.exit(1);
8
+ });
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.114.0",
10
+ "version": "3.115.0",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@kevinrabun/judges",
15
- "version": "3.114.0",
15
+ "version": "3.115.0",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  }