@mk-co/neox-cli 2.0.91 → 2.0.97
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/cli/main.js +1568 -2552
- package/dist/prompts/gpt-agents-instructions.md +16 -35
- package/dist/sdk/index.js +1235 -704
- package/dist/server/main.js +2409 -2250
- package/dist/ui-electron/server/main.js +4324 -0
- package/package.json +13 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mk-co/neox-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.97",
|
|
4
4
|
"description": "Professional AI code assistant CLI powered by Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli/main.js",
|
|
@@ -23,10 +23,11 @@
|
|
|
23
23
|
"test:watch": "vitest",
|
|
24
24
|
"build:legacy": "tsc && chmod +x dist/cli/main.js",
|
|
25
25
|
"dev": "tsx src/cli/main.ts",
|
|
26
|
-
"electron:rebuild": "electron-rebuild -f -w node-pty",
|
|
27
|
-
"ui:build-electron": "tsc --project tsconfig.electron.json && node scripts/build-electron.js && cp src/ui/electron/preload.js dist/ui-electron/electron/ && node scripts/check-electron-runtime-deps.cjs",
|
|
26
|
+
"electron:rebuild": "electron-rebuild -f -w node-pty,better-sqlite3 && node scripts/fix-native-module-signatures.cjs",
|
|
27
|
+
"ui:build-electron": "npm run build && npm run electron:rebuild && tsc --project tsconfig.electron.json && node scripts/build-electron.js && cp src/ui/electron/preload.js dist/ui-electron/electron/ && node scripts/check-electron-runtime-deps.cjs",
|
|
28
28
|
"ui:dev": "lsof -ti:5180 | xargs kill -9 2>/dev/null; npm run ui:build-electron && concurrently -k -s first \"cross-env NODE_ENV=development VITE_DEV_SERVER_URL=http://127.0.0.1:5180 vite --config vite.config.ui.ts\" \"wait-on tcp:127.0.0.1:5180 && cross-env NODE_ENV=development VITE_DEV_SERVER_URL=http://127.0.0.1:5180 electron ./dist/ui-electron/electron/main.js\"",
|
|
29
|
-
"ui:build": "npm run ui:build-electron && cross-env NODE_ENV=production vite build --config vite.config.ui.ts",
|
|
29
|
+
"ui:build": "npm run ui:build-electron && cross-env NODE_ENV=production vite build --config vite.config.ui.ts && npm run ui:sync-renderer",
|
|
30
|
+
"ui:sync-renderer": "node scripts/sync-renderer-to-electron.cjs",
|
|
30
31
|
"ui:preview": "vite preview --config vite.config.ui.ts",
|
|
31
32
|
"ui:type-check": "tsc --project tsconfig.ui.json --noEmit",
|
|
32
33
|
"start": "node dist/cli/main.js",
|
|
@@ -35,7 +36,8 @@
|
|
|
35
36
|
"quality:hygiene": "tsx scripts/quality/hygiene-audit.ts",
|
|
36
37
|
"verify:electron-runtime-deps": "node scripts/check-electron-runtime-deps.cjs",
|
|
37
38
|
"prepublishOnly": "npm run clean && npm run build && npm run type-check",
|
|
38
|
-
"
|
|
39
|
+
"postinstall": "node scripts/rebuild-native.cjs",
|
|
40
|
+
"link": "npm run build && node scripts/rebuild-native.cjs && npm link",
|
|
39
41
|
"unlink": "npm unlink -g neox-cli",
|
|
40
42
|
"setup-java-debug": "bash scripts/download-java-debug.sh",
|
|
41
43
|
"demo:code-interpreter": "tsx examples/code-interpreter-demo.ts",
|
|
@@ -62,6 +64,9 @@
|
|
|
62
64
|
"@andresaya/edge-tts": "^1.8.0",
|
|
63
65
|
"@hono/node-server": "^1.19.9",
|
|
64
66
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
67
|
+
"@react-three/drei": "^10.7.7",
|
|
68
|
+
"@react-three/fiber": "^9.5.0",
|
|
69
|
+
"@types/js-yaml": "^4.0.9",
|
|
65
70
|
"@vscode/ripgrep": "^1.17.0",
|
|
66
71
|
"ajv": "^8.17.1",
|
|
67
72
|
"ansi-escapes": "^7.2.0",
|
|
@@ -83,6 +88,7 @@
|
|
|
83
88
|
"ink-spinner": "^5.0.0",
|
|
84
89
|
"ink-text-input": "^6.0.0",
|
|
85
90
|
"is-in-ci": "^2.0.0",
|
|
91
|
+
"js-yaml": "^4.1.1",
|
|
86
92
|
"marked": "^15.0.12",
|
|
87
93
|
"marked-terminal": "^7.3.0",
|
|
88
94
|
"node-pty": "^1.1.0",
|
|
@@ -101,9 +107,11 @@
|
|
|
101
107
|
"slice-ansi": "^7.1.2",
|
|
102
108
|
"stack-utils": "^2.0.6",
|
|
103
109
|
"string-width": "^8.1.0",
|
|
110
|
+
"three": "^0.183.2",
|
|
104
111
|
"uqr": "^0.1.2",
|
|
105
112
|
"widest-line": "^5.0.0",
|
|
106
113
|
"wrap-ansi": "^9.0.2",
|
|
114
|
+
"ws": "^8.19.0",
|
|
107
115
|
"yoga-layout": "^3.2.1",
|
|
108
116
|
"zod": "^3.22.4"
|
|
109
117
|
},
|