@proxysoul/soulforge 2.9.3 → 2.10.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/README.md +113 -450
- package/dist/index.js +4324 -4056
- package/dist/workers/intelligence.worker.js +289 -268
- package/dist/workers/io.worker.js +30 -7
- package/package.json +6 -8
- package/dist/native/libopentui.so +0 -0
- package/dist/parser.worker.js +0 -891
|
@@ -1441,7 +1441,7 @@ See https://react.dev/link/invalid-hook-call for tips about how to debug and fix
|
|
|
1441
1441
|
exports.useTransition = function() {
|
|
1442
1442
|
return resolveDispatcher().useTransition();
|
|
1443
1443
|
};
|
|
1444
|
-
exports.version = "19.2.
|
|
1444
|
+
exports.version = "19.2.5";
|
|
1445
1445
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== "undefined" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop === "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
|
|
1446
1446
|
})();
|
|
1447
1447
|
});
|
|
@@ -1633,8 +1633,8 @@ var init_io_client = __esm(() => {
|
|
|
1633
1633
|
async buildConvoText(messages, charBudget) {
|
|
1634
1634
|
return this.call("buildConvoText", messages, charBudget);
|
|
1635
1635
|
}
|
|
1636
|
-
async saveSession(sessionDir, meta, tabEntries) {
|
|
1637
|
-
return this.call("saveSession", sessionDir, meta, tabEntries);
|
|
1636
|
+
async saveSession(sessionDir, meta, tabEntries, coreEntries) {
|
|
1637
|
+
return this.call("saveSession", sessionDir, meta, tabEntries, coreEntries ?? null);
|
|
1638
1638
|
}
|
|
1639
1639
|
async loadSession(sessionDir) {
|
|
1640
1640
|
return this.call("loadSession", sessionDir);
|
|
@@ -24064,7 +24064,7 @@ var import_oidc, import_oidc2, marker17 = "vercel.ai.gateway.error", symbol18, _
|
|
|
24064
24064
|
"ai-model-id": this.modelId
|
|
24065
24065
|
};
|
|
24066
24066
|
}
|
|
24067
|
-
}, gatewayRerankingResponseSchema, parallelSearchInputSchema, parallelSearchOutputSchema, parallelSearchToolFactory, parallelSearch = (config2 = {}) => parallelSearchToolFactory(config2), perplexitySearchInputSchema, perplexitySearchOutputSchema, perplexitySearchToolFactory, perplexitySearch = (config2 = {}) => perplexitySearchToolFactory(config2), gatewayTools, VERSION2 = "3.0.
|
|
24067
|
+
}, gatewayRerankingResponseSchema, parallelSearchInputSchema, parallelSearchOutputSchema, parallelSearchToolFactory, parallelSearch = (config2 = {}) => parallelSearchToolFactory(config2), perplexitySearchInputSchema, perplexitySearchOutputSchema, perplexitySearchToolFactory, perplexitySearch = (config2 = {}) => perplexitySearchToolFactory(config2), gatewayTools, VERSION2 = "3.0.94", AI_GATEWAY_PROTOCOL_VERSION = "0.0.1", gateway;
|
|
24068
24068
|
var init_dist4 = __esm(() => {
|
|
24069
24069
|
init_dist3();
|
|
24070
24070
|
init_dist();
|
|
@@ -28769,7 +28769,7 @@ var import_api, import_api2, __defProp2, __export2 = (target, all) => {
|
|
|
28769
28769
|
const bytes = typeof data === "string" ? convertBase64ToUint8Array(data) : data;
|
|
28770
28770
|
const id3Size = (bytes[6] & 127) << 21 | (bytes[7] & 127) << 14 | (bytes[8] & 127) << 7 | bytes[9] & 127;
|
|
28771
28771
|
return bytes.slice(id3Size + 10);
|
|
28772
|
-
}, VERSION3 = "6.0.
|
|
28772
|
+
}, VERSION3 = "6.0.154", download = async ({
|
|
28773
28773
|
url: url2,
|
|
28774
28774
|
maxBytes,
|
|
28775
28775
|
abortSignal
|
|
@@ -30905,7 +30905,7 @@ var handlers = {
|
|
|
30905
30905
|
} = await Promise.resolve().then(() => (init_summarize(), exports_summarize));
|
|
30906
30906
|
return buildFullConvoText2(messages, charBudget);
|
|
30907
30907
|
},
|
|
30908
|
-
saveSession: async (sessionDir, meta3, tabEntries) => {
|
|
30908
|
+
saveSession: async (sessionDir, meta3, tabEntries, coreEntries) => {
|
|
30909
30909
|
const dir = sessionDir;
|
|
30910
30910
|
const sessionMeta = meta3;
|
|
30911
30911
|
const entries = tabEntries;
|
|
@@ -30953,6 +30953,20 @@ var handlers = {
|
|
|
30953
30953
|
});
|
|
30954
30954
|
await rename(jsonlTmp, jsonlPath);
|
|
30955
30955
|
await rename(metaTmp, metaPath);
|
|
30956
|
+
const cores = coreEntries;
|
|
30957
|
+
if (cores && cores.length > 0) {
|
|
30958
|
+
const coreData = {};
|
|
30959
|
+
for (const [tabId, msgs] of cores) {
|
|
30960
|
+
coreData[tabId] = msgs;
|
|
30961
|
+
}
|
|
30962
|
+
const corePath = join3(dir, "core.json");
|
|
30963
|
+
const coreTmp = `${corePath}.${suffix}.tmp`;
|
|
30964
|
+
await writeFile(coreTmp, JSON.stringify(coreData), {
|
|
30965
|
+
encoding: "utf-8",
|
|
30966
|
+
mode: 384
|
|
30967
|
+
});
|
|
30968
|
+
await rename(coreTmp, corePath);
|
|
30969
|
+
}
|
|
30956
30970
|
},
|
|
30957
30971
|
loadSession: async (sessionDir) => {
|
|
30958
30972
|
const dir = sessionDir;
|
|
@@ -30985,9 +30999,18 @@ var handlers = {
|
|
|
30985
30999
|
} = tab.messageRange;
|
|
30986
31000
|
tabEntries.push([tab.id, allMessages.slice(startLine, endLine)]);
|
|
30987
31001
|
}
|
|
31002
|
+
const corePath = join3(dir, "core.json");
|
|
31003
|
+
let coreEntries;
|
|
31004
|
+
if (existsSync(corePath)) {
|
|
31005
|
+
try {
|
|
31006
|
+
const coreData = JSON.parse(readFileSync(corePath, "utf-8"));
|
|
31007
|
+
coreEntries = Object.entries(coreData);
|
|
31008
|
+
} catch {}
|
|
31009
|
+
}
|
|
30988
31010
|
return {
|
|
30989
31011
|
meta: meta3,
|
|
30990
|
-
tabEntries
|
|
31012
|
+
tabEntries,
|
|
31013
|
+
coreEntries
|
|
30991
31014
|
};
|
|
30992
31015
|
},
|
|
30993
31016
|
listSessions: (sessionsDir) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proxysoul/soulforge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"description": "Graph-powered code intelligence — multi-agent coding with codebase-aware AI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -71,21 +71,22 @@
|
|
|
71
71
|
"@ai-sdk/mcp": "^1.0.35",
|
|
72
72
|
"@ai-sdk/mistral": "^3.0.30",
|
|
73
73
|
"@ai-sdk/openai": "3.0.52",
|
|
74
|
-
"@ai-sdk/
|
|
75
|
-
"@
|
|
74
|
+
"@ai-sdk/openai-compatible": "^2.0.41",
|
|
75
|
+
"@ai-sdk/xai": "3.0.82",
|
|
76
|
+
"@anthropic-ai/sdk": "0.86.1",
|
|
76
77
|
"@llmgateway/ai-sdk-provider": "3.5.0",
|
|
77
78
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
78
79
|
"@mozilla/readability": "0.6.0",
|
|
79
80
|
"@openrouter/ai-sdk-provider": "2.5.0",
|
|
80
81
|
"@opentui/react": "0.1.97",
|
|
81
|
-
"ai": "6.0.
|
|
82
|
+
"ai": "6.0.154",
|
|
82
83
|
"ghostty-opentui": "1.4.10",
|
|
83
84
|
"isbinaryfile": "6.0.0",
|
|
84
85
|
"linkedom": "0.18.12",
|
|
85
86
|
"linkify-it": "5.0.0",
|
|
86
87
|
"marked": "17.0.5",
|
|
87
88
|
"neovim": "5.4.0",
|
|
88
|
-
"react": "19.2.
|
|
89
|
+
"react": "19.2.5",
|
|
89
90
|
"shiki": "4.0.2",
|
|
90
91
|
"strip-ansi": "7.2.0",
|
|
91
92
|
"tree-sitter-wasms": "0.1.13",
|
|
@@ -94,8 +95,5 @@
|
|
|
94
95
|
"web-tree-sitter": "0.25.10",
|
|
95
96
|
"zod": "4.3.6",
|
|
96
97
|
"zustand": "5.0.12"
|
|
97
|
-
},
|
|
98
|
-
"overrides": {
|
|
99
|
-
"@opentui/core": "0.1.96"
|
|
100
98
|
}
|
|
101
99
|
}
|
|
Binary file
|