@swarmvaultai/engine 3.14.2 → 3.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/chunk-JJDJF2P3.js +27012 -0
- package/dist/chunk-NUWZUYE7.js +1701 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3 -3
- package/dist/memory-PK55JUKG.js +32 -0
- package/dist/registry-ILDEBNCW.js +12 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -540,6 +540,11 @@ interface IngestOptions {
|
|
|
540
540
|
* redaction entirely for this run.
|
|
541
541
|
*/
|
|
542
542
|
redact?: boolean;
|
|
543
|
+
/**
|
|
544
|
+
* Emit bounded human progress to stderr for interactive CLI runs. Defaults
|
|
545
|
+
* to false so JSON, MCP, watch, and library callers stay quiet.
|
|
546
|
+
*/
|
|
547
|
+
progress?: boolean;
|
|
543
548
|
}
|
|
544
549
|
interface DirectoryIngestSkip {
|
|
545
550
|
path: string;
|
|
@@ -1332,6 +1337,7 @@ interface InitOptions {
|
|
|
1332
1337
|
obsidian?: boolean;
|
|
1333
1338
|
profile?: string;
|
|
1334
1339
|
lite?: boolean;
|
|
1340
|
+
installAgentRules?: boolean;
|
|
1335
1341
|
}
|
|
1336
1342
|
interface CompileResult {
|
|
1337
1343
|
graphPath: string;
|
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-JJDJF2P3.js";
|
|
132
132
|
import {
|
|
133
133
|
LocalWhisperProviderAdapter,
|
|
134
134
|
SWARMVAULT_OUT_ENV,
|
|
@@ -155,7 +155,7 @@ import {
|
|
|
155
155
|
truncate,
|
|
156
156
|
uniqueBy,
|
|
157
157
|
writeJsonFile
|
|
158
|
-
} from "./chunk-
|
|
158
|
+
} from "./chunk-NUWZUYE7.js";
|
|
159
159
|
import {
|
|
160
160
|
estimatePageTokens,
|
|
161
161
|
estimateTokens,
|
|
@@ -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.
|
|
5444
|
+
var SERVER_VERSION = "3.15.0";
|
|
5445
5445
|
var codeLanguageSchema = z.enum([
|
|
5446
5446
|
"javascript",
|
|
5447
5447
|
"jsx",
|
|
@@ -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-JJDJF2P3.js";
|
|
16
|
+
import "./chunk-NUWZUYE7.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
|
+
};
|