@swarmvaultai/engine 3.7.2 → 3.7.3

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.d.ts CHANGED
@@ -3021,10 +3021,10 @@ declare function createSupersessionEdge(rootDir: string, oldPageIdOrPath: string
3021
3021
  declare function archiveCandidate(rootDir: string, target: string): Promise<CandidateRecord>;
3022
3022
  declare function initVault(rootDir: string, options?: InitOptions): Promise<void>;
3023
3023
  declare function compileVault(rootDir: string, options?: CompileOptions): Promise<CompileResult>;
3024
- declare function queryVault(rootDir: string, options: QueryOptions): Promise<QueryResult>;
3025
- declare function exploreVault(rootDir: string, options: ExploreOptions): Promise<ExploreResult>;
3024
+ declare function queryVault(rootDir: string, rawOptions: QueryOptions): Promise<QueryResult>;
3025
+ declare function exploreVault(rootDir: string, rawOptions: ExploreOptions): Promise<ExploreResult>;
3026
3026
  declare function searchVault(rootDir: string, query: string, limit?: number): Promise<SearchResult[]>;
3027
- declare function queryGraphVault(rootDir: string, question: string, options?: {
3027
+ declare function queryGraphVault(rootDir: string, rawQuestion: string, options?: {
3028
3028
  traversal?: "bfs" | "dfs";
3029
3029
  budget?: number;
3030
3030
  }): Promise<GraphQueryResult>;
package/dist/index.js CHANGED
@@ -125,7 +125,7 @@ import {
125
125
  writeGuidedSourceSession,
126
126
  writeRetrievalManifest,
127
127
  writeWatchStatusArtifact
128
- } from "./chunk-YFKWMXJ6.js";
128
+ } from "./chunk-WWP3VPEJ.js";
129
129
  import {
130
130
  LocalWhisperProviderAdapter,
131
131
  SWARMVAULT_OUT_ENV,
@@ -151,7 +151,7 @@ import {
151
151
  truncate,
152
152
  uniqueBy,
153
153
  writeJsonFile
154
- } from "./chunk-HW72C7O2.js";
154
+ } from "./chunk-75BU5TQ6.js";
155
155
  import {
156
156
  estimatePageTokens,
157
157
  estimateTokens,
@@ -4774,7 +4774,7 @@ import path10 from "path";
4774
4774
  import { McpServer, ResourceTemplate } from "@modelcontextprotocol/sdk/server/mcp.js";
4775
4775
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4776
4776
  import { z } from "zod";
4777
- var SERVER_VERSION = "3.7.2";
4777
+ var SERVER_VERSION = "3.7.3";
4778
4778
  async function createMcpServer(rootDir) {
4779
4779
  const server = new McpServer({
4780
4780
  name: "swarmvault",
@@ -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-WWP3VPEJ.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
+ };
@@ -0,0 +1,12 @@
1
+ import {
2
+ assertProviderCapability,
3
+ createProvider,
4
+ getProviderForTask,
5
+ getResolvedPaths
6
+ } from "./chunk-75BU5TQ6.js";
7
+ export {
8
+ assertProviderCapability,
9
+ createProvider,
10
+ getProviderForTask,
11
+ getResolvedPaths
12
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/engine",
3
- "version": "3.7.2",
3
+ "version": "3.7.3",
4
4
  "description": "Core engine for SwarmVault: ingest, compile, query, lint, and provider abstractions.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",