@appchy/jarvis 0.1.40 → 0.1.41

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/dist/bin.js CHANGED
@@ -9594,7 +9594,7 @@ import WebSocket from "ws";
9594
9594
  import { createRequire as createRequire2 } from "module";
9595
9595
  var _require = createRequire2(import.meta.url);
9596
9596
  var VERSION2 = _require("../package.json").version ?? "0.0.0";
9597
- var SHA = "8651453";
9597
+ var SHA = "606b8d4";
9598
9598
  var BUILT = "2026-09-07";
9599
9599
  var BUILD = SHA ?? "source";
9600
9600
  var BUILD_LABEL = SHA ? `${VERSION2} (${SHA}${BUILT ? ` ${BUILT}` : ""})` : `${VERSION2} (source)`;
package/harness/work.py CHANGED
File without changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@appchy/jarvis",
3
- "version": "0.1.40",
4
- "description": "Jarvis \u2014 local AI coding assistant CLI",
3
+ "version": "0.1.41",
4
+ "description": "Jarvis local AI coding assistant CLI",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "main": "./dist/bin.js",
@@ -24,15 +24,6 @@
24
24
  "!harness/**/__pycache__",
25
25
  "!harness/**/*.pyc"
26
26
  ],
27
- "scripts": {
28
- "dev": "tsx watch src/bin.ts start --foreground",
29
- "build": "tsup",
30
- "build:tsc": "tsc",
31
- "start": "node dist/bin.js start",
32
- "type-check": "tsc --noEmit",
33
- "prepublishOnly": "pnpm build",
34
- "test:run": "vitest run"
35
- },
36
27
  "publishConfig": {
37
28
  "access": "public"
38
29
  },
@@ -54,18 +45,26 @@
54
45
  "zod": "^3.25.76"
55
46
  },
56
47
  "devDependencies": {
57
- "@jarvis/agents": "workspace:*",
58
- "@jarvis/anthropic": "workspace:*",
59
- "@jarvis/board": "workspace:*",
60
- "@jarvis/data": "workspace:*",
61
- "@jarvis/logger": "workspace:*",
62
- "@jarvis/rpc": "workspace:*",
63
- "@jarvis/types": "workspace:*",
64
- "@jarvis/typescript-config": "workspace:*",
65
- "@jarvis/vitest-config": "workspace:*",
66
48
  "@types/ws": "^8.5.0",
67
49
  "tsup": "^8.5.1",
68
50
  "typescript": "^5.7.0",
69
- "vitest": "^2.1.0"
51
+ "vitest": "^2.1.0",
52
+ "@jarvis/agents": "1.0.0",
53
+ "@jarvis/anthropic": "1.0.0",
54
+ "@jarvis/data": "0.1.0",
55
+ "@jarvis/logger": "1.0.0",
56
+ "@jarvis/rpc": "1.0.0",
57
+ "@jarvis/types": "1.0.0",
58
+ "@jarvis/board": "0.1.0",
59
+ "@jarvis/typescript-config": "1.0.0",
60
+ "@jarvis/vitest-config": "1.0.0"
61
+ },
62
+ "scripts": {
63
+ "dev": "tsx watch src/bin.ts start --foreground",
64
+ "build": "tsup",
65
+ "build:tsc": "tsc",
66
+ "start": "node dist/bin.js start",
67
+ "type-check": "tsc --noEmit",
68
+ "test:run": "vitest run"
70
69
  }
71
- }
70
+ }