@swarmvaultai/engine 3.4.0 → 3.6.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 CHANGED
@@ -61,6 +61,7 @@ import {
61
61
  queryVault,
62
62
  readContextPack,
63
63
  readMemoryTask,
64
+ refreshGraphClusters,
64
65
  rebuildRetrievalIndex,
65
66
  reloadManagedSources,
66
67
  resumeMemoryTask,
@@ -107,6 +108,7 @@ import {
107
108
  queryGraphVault,
108
109
  queryVault,
109
110
  readContextPack,
111
+ refreshGraphClusters,
110
112
  rebuildRetrievalIndex,
111
113
  resumeMemoryTask,
112
114
  reloadManagedSources,
@@ -160,6 +162,7 @@ console.log(await doctorRetrieval(rootDir));
160
162
 
161
163
  const graphQuery = await queryGraphVault(rootDir, "Which nodes bridge the biggest communities?");
162
164
  console.log(graphQuery.summary);
165
+ console.log(await refreshGraphClusters(rootDir, { resolution: 1 }));
163
166
 
164
167
  const exploration = await exploreVault(rootDir, { question: "What should I investigate next?", steps: 3, format: "report" });
165
168
  console.log(exploration.hubPath);