@swarmvaultai/engine 3.14.0 → 3.14.1
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/chunk-DAJAZPPO.js +26865 -0
- package/dist/index.js +3 -3
- package/dist/memory-TQ46BGCI.js +32 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -128,7 +128,7 @@ import {
|
|
|
128
128
|
writeGuidedSourceSession,
|
|
129
129
|
writeRetrievalManifest,
|
|
130
130
|
writeWatchStatusArtifact
|
|
131
|
-
} from "./chunk-
|
|
131
|
+
} from "./chunk-DAJAZPPO.js";
|
|
132
132
|
import {
|
|
133
133
|
LocalWhisperProviderAdapter,
|
|
134
134
|
SWARMVAULT_OUT_ENV,
|
|
@@ -5441,7 +5441,7 @@ import path12 from "path";
|
|
|
5441
5441
|
import { McpServer, ResourceTemplate } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
5442
5442
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
5443
5443
|
import { z } from "zod";
|
|
5444
|
-
var SERVER_VERSION = "3.14.
|
|
5444
|
+
var SERVER_VERSION = "3.14.1";
|
|
5445
5445
|
var codeLanguageSchema = z.enum([
|
|
5446
5446
|
"javascript",
|
|
5447
5447
|
"jsx",
|
|
@@ -6321,7 +6321,7 @@ function asToolText(value) {
|
|
|
6321
6321
|
content: [
|
|
6322
6322
|
{
|
|
6323
6323
|
type: "text",
|
|
6324
|
-
text: JSON.stringify(value, null, 2)
|
|
6324
|
+
text: JSON.stringify(value, (_key, item) => item === void 0 ? null : item, 2) ?? "null"
|
|
6325
6325
|
}
|
|
6326
6326
|
]
|
|
6327
6327
|
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
buildMemoryGraphElements,
|
|
3
|
+
ensureMemoryLedger,
|
|
4
|
+
estimateMemoryTaskTokens,
|
|
5
|
+
finishMemoryTask,
|
|
6
|
+
listMemoryTasks,
|
|
7
|
+
loadMemoryTaskPages,
|
|
8
|
+
memoryTaskHashes,
|
|
9
|
+
memoryTaskPageRecord,
|
|
10
|
+
readMemoryTask,
|
|
11
|
+
renderMemoryTaskMarkdown,
|
|
12
|
+
resumeMemoryTask,
|
|
13
|
+
startMemoryTask,
|
|
14
|
+
updateMemoryTask
|
|
15
|
+
} from "./chunk-DAJAZPPO.js";
|
|
16
|
+
import "./chunk-75BU5TQ6.js";
|
|
17
|
+
import "./chunk-NAIERP4C.js";
|
|
18
|
+
export {
|
|
19
|
+
buildMemoryGraphElements,
|
|
20
|
+
ensureMemoryLedger,
|
|
21
|
+
estimateMemoryTaskTokens,
|
|
22
|
+
finishMemoryTask,
|
|
23
|
+
listMemoryTasks,
|
|
24
|
+
loadMemoryTaskPages,
|
|
25
|
+
memoryTaskHashes,
|
|
26
|
+
memoryTaskPageRecord,
|
|
27
|
+
readMemoryTask,
|
|
28
|
+
renderMemoryTaskMarkdown,
|
|
29
|
+
resumeMemoryTask,
|
|
30
|
+
startMemoryTask,
|
|
31
|
+
updateMemoryTask
|
|
32
|
+
};
|