@swarmvaultai/engine 3.5.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 +3 -0
- package/dist/chunk-5GEPTIZE.js +26010 -0
- package/dist/chunk-7O2HJSWQ.js +1686 -0
- package/dist/chunk-V7KX3AQD.js +26010 -0
- package/dist/hooks/claude.js +53 -5
- package/dist/hooks/codex.js +13 -3
- package/dist/hooks/copilot.js +13 -3
- package/dist/hooks/gemini.js +13 -3
- package/dist/index.d.ts +55 -5
- package/dist/index.js +152 -80
- package/dist/memory-FVIBFROA.js +32 -0
- package/dist/memory-HE6VWUPV.js +32 -0
- package/dist/registry-NMXDBYIZ.js +12 -0
- package/package.json +2 -1
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);
|