@intentsolutions/jrig-cli 0.1.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/LICENSE +202 -0
- package/README.md +82 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4234 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@intentsolutions/jrig-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "J-Rig seven-layer binary eval CLI for Claude Skills — the `j-rig` command: package integrity, trigger/functional/regression/baseline scoring, optimizer, and rollout-gate evidence. Self-contained (bundles the internal eval engine).",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"j-rig",
|
|
8
|
+
"jrig",
|
|
9
|
+
"intent-eval",
|
|
10
|
+
"eval",
|
|
11
|
+
"skill",
|
|
12
|
+
"claude",
|
|
13
|
+
"claude-code",
|
|
14
|
+
"cli",
|
|
15
|
+
"skill-eval"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/jeremylongshore/j-rig-skill-binary-eval/tree/main/packages/cli",
|
|
18
|
+
"bugs": "https://github.com/jeremylongshore/j-rig-skill-binary-eval/issues",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/jeremylongshore/j-rig-skill-binary-eval.git",
|
|
22
|
+
"directory": "packages/cli"
|
|
23
|
+
},
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"author": "Jeremy Longshore <jeremy@intentsolutions.io>",
|
|
26
|
+
"type": "module",
|
|
27
|
+
"bin": {
|
|
28
|
+
"j-rig": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"main": "./dist/index.js",
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"import": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=20"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public",
|
|
43
|
+
"provenance": true,
|
|
44
|
+
"registry": "https://registry.npmjs.org/"
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"dist",
|
|
48
|
+
"README.md"
|
|
49
|
+
],
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@intentsolutions/core": "0.9.0",
|
|
52
|
+
"@intentsolutions/refiner": "^0.2.0",
|
|
53
|
+
"@opentelemetry/api": "^1.9.1",
|
|
54
|
+
"@opentelemetry/sdk-trace-base": "^2.8.0",
|
|
55
|
+
"better-sqlite3": "^12.11.1",
|
|
56
|
+
"chalk": "^5.4.0",
|
|
57
|
+
"commander": "^15.0.0",
|
|
58
|
+
"drizzle-orm": "^0.45.2",
|
|
59
|
+
"gray-matter": "^4.0.3",
|
|
60
|
+
"yaml": "^2.9.0",
|
|
61
|
+
"zod": "^4.4.3"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@j-rig/core": "2.1.0",
|
|
65
|
+
"@j-rig/db": "2.1.0",
|
|
66
|
+
"@j-rig/migrate": "2.1.0"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsup",
|
|
70
|
+
"clean": "rm -rf dist",
|
|
71
|
+
"typecheck": "tsc --noEmit"
|
|
72
|
+
}
|
|
73
|
+
}
|