@swarmvaultai/engine 3.12.0 → 3.14.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/index.js CHANGED
@@ -128,7 +128,7 @@ import {
128
128
  writeGuidedSourceSession,
129
129
  writeRetrievalManifest,
130
130
  writeWatchStatusArtifact
131
- } from "./chunk-Z552HHPV.js";
131
+ } from "./chunk-CSPDMCON.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.12.0";
5444
+ var SERVER_VERSION = "3.14.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-CSPDMCON.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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swarmvaultai/engine",
3
- "version": "3.12.0",
3
+ "version": "3.14.0",
4
4
  "description": "Core engine for SwarmVault: ingest, compile, query, lint, and provider abstractions.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -42,7 +42,7 @@
42
42
  "scripts": {
43
43
  "build": "test -f ../viewer/dist/index.html || pnpm --dir ../viewer build; tsup src/index.ts --format esm --dts && tsup --config tsup.hooks.config.ts && node ../../scripts/copy-engine-grammar-assets.mjs && rm -rf dist/viewer && mkdir -p dist/viewer && cp -R ../viewer/dist/. dist/viewer/",
44
44
  "pretest": "tsup --config tsup.hooks.config.ts",
45
- "test": "SWARMVAULT_ALLOW_PRIVATE_URLS=1 vitest run --testTimeout=10000",
45
+ "test": "SWARMVAULT_ALLOW_PRIVATE_URLS=1 vitest run --testTimeout=30000",
46
46
  "typecheck": "tsc --noEmit",
47
47
  "prepublishOnly": "node ../../scripts/check-release-sync.mjs && node ../../scripts/check-published-manifests.mjs"
48
48
  },