zen-code 4.6.1 → 4.6.2
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/MultiLineTextInput-e7hD79Wp.mjs +24631 -0
- package/dist/app-Cynj004J.mjs +16204 -0
- package/dist/checkpoint-1sAx_j1E-DMtqyBT9.mjs +318 -0
- package/dist/checkpoint-DxiUsHMy-DqfBiLDW.mjs +394 -0
- package/dist/cli.mjs +17 -17
- package/dist/devtools-CzaVuYnh.mjs +2667 -0
- package/dist/graphBuilder-mpLrx9tk.mjs +49189 -0
- package/dist/{index-DEcMgCTj.mjs → index-B6kFMamn.mjs} +1 -1
- package/dist/index-BW3-KScB.mjs +463 -0
- package/dist/index-FHDPQ2Qk.mjs +211 -0
- package/dist/load-Cjl9cJ0o.mjs +105 -0
- package/dist/{memories-rSGKIPk5.mjs → memories-DirsFRdm.mjs} +1 -1
- package/dist/nonInteractive.mjs +6 -7
- package/dist/pg-adapter-BFtir1GE-BbUXBpaX.mjs +60 -0
- package/dist/queue-Cu_nO_wt-DVTcONlE.mjs +106 -0
- package/dist/remote-threads-CrG03ZS7-C9duTCnB.mjs +157 -0
- package/dist/shallow-BQy_8shO.mjs +331 -0
- package/dist/sqlite-adapter-BKOLSdoL-5XOA6_0i.mjs +71 -0
- package/dist/{subTasks-5KLIr9iy.mjs → subTasks-Bt97OwvY.mjs} +2 -2
- package/dist/zen-code.mjs +2 -8654
- package/dist/zen-keyboard.mjs +6 -7
- package/package.json +10 -7
- package/dist/MultiLineTextInput-B4NEXnFm.mjs +0 -23343
- package/dist/devtools-BHqoL8a6.mjs +0 -11653
- package/dist/graphBuilder-B3IJ7dB2.mjs +0 -2641
package/dist/zen-keyboard.mjs
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { r as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const [r, u] = l(`Press any key...
|
|
1
|
+
import { r as a, j as n, a as c, u as f, T as x } from "./MultiLineTextInput-e7hD79Wp.mjs";
|
|
2
|
+
a(/* @__PURE__ */ n.jsx(l, {}));
|
|
3
|
+
function l() {
|
|
4
|
+
const [r, u] = c.useState(`Press any key...
|
|
6
5
|
`);
|
|
7
|
-
return
|
|
6
|
+
return f((i, o, p) => {
|
|
8
7
|
const t = ["\x1B[2J\x1B[H", "input:", JSON.stringify(i), "", "key:"], e = Object.entries(o).filter(([, s]) => s === !0);
|
|
9
8
|
for (const [s] of e)
|
|
10
9
|
t.push(` ${s}: true`);
|
|
11
10
|
e.length === 0 && t.push(" (no true values)"), t.push(JSON.stringify(p, null, 2)), u(t.join(`
|
|
12
11
|
`));
|
|
13
|
-
}), /* @__PURE__ */ n.jsx(
|
|
12
|
+
}), /* @__PURE__ */ n.jsx(x, { children: r });
|
|
14
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zen-code",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/cli.mjs",
|
|
6
6
|
"bin": "./dist/cli.mjs",
|
|
@@ -17,12 +17,17 @@
|
|
|
17
17
|
"@langchain/core": "1.1.15",
|
|
18
18
|
"@langchain/google-genai": "^2.1.18",
|
|
19
19
|
"@langchain/langgraph": "^1.1.0",
|
|
20
|
+
"@langchain/mcp-adapters": "^1.1.1",
|
|
20
21
|
"@langchain/openai": "1.1.3",
|
|
21
22
|
"@langgraph-js/pure-graph": "^3.1.2",
|
|
22
23
|
"chalk": "^5.6.2",
|
|
24
|
+
"diff-match-patch": "^1.0.5",
|
|
23
25
|
"execa": "^9.6.1",
|
|
24
26
|
"extract-zip": "^2.0.1",
|
|
25
27
|
"fs-extra": "^11.3.3",
|
|
28
|
+
"kysely": "^0.28.11",
|
|
29
|
+
"kysely-bun-worker": "^1.2.1",
|
|
30
|
+
"kysely-wasm": "^1.2.1",
|
|
26
31
|
"langchain": "1.1.1",
|
|
27
32
|
"lowdb": "^7.0.1",
|
|
28
33
|
"marked": "^16.4.2",
|
|
@@ -37,15 +42,13 @@
|
|
|
37
42
|
"xdg-basedir": "^5.1.0",
|
|
38
43
|
"yaml": "^2.8.2",
|
|
39
44
|
"zod": "^4.3.5",
|
|
40
|
-
"diff-match-patch": "^1.0.5",
|
|
41
|
-
"@langchain/mcp-adapters": "^1.1.1",
|
|
42
45
|
"@langgraph-js/standard-agent": "1.1.0"
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
45
|
-
"@
|
|
48
|
+
"@inkjs/ui": "^2.0.0",
|
|
46
49
|
"@langgraph-js/sdk": "^4.6.3",
|
|
47
50
|
"@nanostores/react": "^1.0.0",
|
|
48
|
-
"@
|
|
51
|
+
"@tanstack/react-query": "^5.90.21",
|
|
49
52
|
"@testing-library/react": "^16.3.2",
|
|
50
53
|
"@testing-library/user-event": "^14.6.1",
|
|
51
54
|
"@types/diff-match-patch": "^1.0.36",
|
|
@@ -64,8 +67,8 @@
|
|
|
64
67
|
"vite-bundle-analyzer": "^1.3.2",
|
|
65
68
|
"vite-plugin-static-copy": "^3.1.4",
|
|
66
69
|
"vitest": "^4.0.18",
|
|
67
|
-
"@codegraph/agent": "1.0.0",
|
|
68
70
|
"@codegraph/union-client": "1.0.0",
|
|
71
|
+
"@codegraph/agent": "1.0.0",
|
|
69
72
|
"@codegraph/config": "1.0.0",
|
|
70
73
|
"ink-pro": "1.1.0"
|
|
71
74
|
},
|
|
@@ -75,7 +78,7 @@
|
|
|
75
78
|
]
|
|
76
79
|
},
|
|
77
80
|
"scripts": {
|
|
78
|
-
"dev": "bun run src/
|
|
81
|
+
"dev": "bun run src/cli.ts",
|
|
79
82
|
"build": "vite build",
|
|
80
83
|
"prepublish": "pnpm build",
|
|
81
84
|
"test": "vitest",
|