zephex 2.0.14 → 2.0.15
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/index.js +19831 -11881
- package/dist/tools/architecture/index.js +5 -2
- package/dist/tools/context/index.js +5 -2
- package/dist/tools/reader/readCode.js +1012 -107
- package/dist/tools/scope_task/index.js +54 -4
- package/dist/tools/search/findCode.js +66 -7
- package/dist/tools/server.js +1072 -141
- package/dist/tools/thinking/index.js +5 -2
- package/package.json +2 -1
|
@@ -25412,10 +25412,13 @@ function getSupabaseClient() {
|
|
|
25412
25412
|
},
|
|
25413
25413
|
global: {
|
|
25414
25414
|
fetch: (url3, options = {}) => {
|
|
25415
|
+
const controller = new AbortController;
|
|
25416
|
+
const timeout = setTimeout(() => controller.abort(), 8000);
|
|
25415
25417
|
return fetch(url3, {
|
|
25416
25418
|
...options,
|
|
25417
|
-
keepalive: true
|
|
25418
|
-
|
|
25419
|
+
keepalive: true,
|
|
25420
|
+
signal: controller.signal
|
|
25421
|
+
}).finally(() => clearTimeout(timeout));
|
|
25419
25422
|
},
|
|
25420
25423
|
headers: {
|
|
25421
25424
|
Connection: "keep-alive",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zephex",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.15",
|
|
4
4
|
"description": "Zephex MCP — codebase intelligence tools for AI coding agents. stdio server that runs locally, reads your project files, and proxies AI calls to the Zephex backend.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/cli.js",
|
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"puppeteer-core": "^24.40.0",
|
|
75
75
|
"resend": "^6.9.4",
|
|
76
76
|
"sanitize-html": "^2.17.2",
|
|
77
|
+
"undici": "^8.2.0",
|
|
77
78
|
"zod": "^4.3.6"
|
|
78
79
|
},
|
|
79
80
|
"devDependencies": {
|