@proxysoul/soulforge 2.14.11 → 2.15.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/dist/index.js +32424 -46681
- package/dist/workers/intelligence.worker.js +20 -0
- package/dist/workers/io.worker.js +4 -2
- package/package.json +1 -1
|
@@ -26971,6 +26971,23 @@ class RepoMap {
|
|
|
26971
26971
|
return 0;
|
|
26972
26972
|
return this.db.query("SELECT COUNT(DISTINCT source_file_id) AS c FROM edges WHERE target_file_id = ?").get(fileRow.id)?.c ?? 0;
|
|
26973
26973
|
}
|
|
26974
|
+
getFileIdByPath(relPath) {
|
|
26975
|
+
if (!this.ready)
|
|
26976
|
+
return null;
|
|
26977
|
+
const row = this.db.query("SELECT id FROM files WHERE path = ?").get(relPath);
|
|
26978
|
+
return row?.id ?? null;
|
|
26979
|
+
}
|
|
26980
|
+
getFilePathById(id) {
|
|
26981
|
+
if (!this.ready)
|
|
26982
|
+
return null;
|
|
26983
|
+
const row = this.db.query("SELECT path FROM files WHERE id = ?").get(id);
|
|
26984
|
+
return row?.path ?? null;
|
|
26985
|
+
}
|
|
26986
|
+
getFileBlastRadiusById(id) {
|
|
26987
|
+
if (!this.ready)
|
|
26988
|
+
return 0;
|
|
26989
|
+
return this.db.query("SELECT COUNT(DISTINCT source_file_id) AS c FROM edges WHERE target_file_id = ?").get(id)?.c ?? 0;
|
|
26990
|
+
}
|
|
26974
26991
|
extractTokenSignatures(fileId, symbols, content) {
|
|
26975
26992
|
const lines = content.split(`
|
|
26976
26993
|
`);
|
|
@@ -280753,6 +280770,9 @@ var handlers = {
|
|
|
280753
280770
|
getFileCoChanges: (relPath) => requireRepoMap().getFileCoChanges(relPath),
|
|
280754
280771
|
getFileExportCount: (relPath) => requireRepoMap().getFileExportCount(relPath),
|
|
280755
280772
|
getFileBlastRadius: (relPath) => requireRepoMap().getFileBlastRadius(relPath),
|
|
280773
|
+
getFileIdByPath: (relPath) => requireRepoMap().getFileIdByPath(relPath),
|
|
280774
|
+
getFilePathById: (id) => requireRepoMap().getFilePathById(id),
|
|
280775
|
+
getFileBlastRadiusById: (id) => requireRepoMap().getFileBlastRadiusById(id),
|
|
280756
280776
|
getFileDiffBlock: (relPath) => requireRepoMap().getFileDiffBlock(relPath),
|
|
280757
280777
|
getFilesByPackage: (pkg) => requireRepoMap().getFilesByPackage(pkg),
|
|
280758
280778
|
listDirectory: (dirPath) => requireRepoMap().listDirectory(dirPath),
|
|
@@ -41837,6 +41837,7 @@ var init_ui = __esm(() => {
|
|
|
41837
41837
|
mcpSettings: false,
|
|
41838
41838
|
hearthSettings: false,
|
|
41839
41839
|
tabNamePopup: false,
|
|
41840
|
+
memoryBrowser: false,
|
|
41840
41841
|
uiDemo: false
|
|
41841
41842
|
};
|
|
41842
41843
|
useUIStore = create()(subscribeWithSelector((set2) => ({
|
|
@@ -43484,11 +43485,12 @@ async function checkProviders() {
|
|
|
43484
43485
|
listener(results);
|
|
43485
43486
|
return results;
|
|
43486
43487
|
}
|
|
43487
|
-
var cachedStatuses = null, providerStatusListeners;
|
|
43488
|
+
var cachedStatuses = null, providerStatusListeners, providerSwitchListeners;
|
|
43488
43489
|
var init_provider = __esm(() => {
|
|
43489
43490
|
init_secrets();
|
|
43490
43491
|
init_providers();
|
|
43491
43492
|
providerStatusListeners = new Set;
|
|
43493
|
+
providerSwitchListeners = new Set;
|
|
43492
43494
|
});
|
|
43493
43495
|
|
|
43494
43496
|
// src/core/llm/providers/codex/auth.ts
|
|
@@ -49520,7 +49522,7 @@ var package_default;
|
|
|
49520
49522
|
var init_package = __esm(() => {
|
|
49521
49523
|
package_default = {
|
|
49522
49524
|
name: "@proxysoul/soulforge",
|
|
49523
|
-
version: "2.
|
|
49525
|
+
version: "2.15.0",
|
|
49524
49526
|
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
49525
49527
|
repository: {
|
|
49526
49528
|
type: "git",
|