@agentmemory/agentmemory 0.9.7 → 0.9.8

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/cli.mjs CHANGED
@@ -361,12 +361,12 @@ async function main() {
361
361
  p.intro("agentmemory");
362
362
  if (skipEngine) {
363
363
  p.log.info("Skipping engine check (--no-engine)");
364
- await import("./src-DbgW4F8O.mjs");
364
+ await import("./src-CMt8D9OY.mjs");
365
365
  return;
366
366
  }
367
367
  if (await isEngineRunning()) {
368
368
  p.log.success("iii-engine is running");
369
- await import("./src-DbgW4F8O.mjs");
369
+ await import("./src-CMt8D9OY.mjs");
370
370
  return;
371
371
  }
372
372
  if (!await startEngine()) {
@@ -410,7 +410,7 @@ async function main() {
410
410
  process.exit(1);
411
411
  }
412
412
  s.stop("iii-engine is ready");
413
- await import("./src-DbgW4F8O.mjs");
413
+ await import("./src-CMt8D9OY.mjs");
414
414
  }
415
415
  async function apiFetch(base, path, timeoutMs = 5e3) {
416
416
  try {
@@ -872,7 +872,7 @@ async function runUpgrade() {
872
872
  ].join("\n"), "agentmemory upgrade");
873
873
  }
874
874
  async function runMcp() {
875
- await import("./standalone-CFJp7B7c.mjs");
875
+ await import("./standalone-Ddgv2rHv.mjs");
876
876
  }
877
877
  async function runImportJsonl() {
878
878
  const VALUE_FLAGS = new Set(["--port", "--tools"]);
@@ -0,0 +1,3 @@
1
+ import { n as getImageRefCount, r as incrementImageRef, t as decrementImageRef } from "./src-CMt8D9OY.mjs";
2
+
3
+ export { decrementImageRef, incrementImageRef };
@@ -1,3 +1,3 @@
1
- import { a as deleteImage, c as saveImageToDisk, i as IMAGES_DIR, l as touchImage, o as getMaxBytes, s as isManagedImagePath } from "./src-DbgW4F8O.mjs";
1
+ import { a as deleteImage, c as saveImageToDisk, i as IMAGES_DIR, l as touchImage, o as getMaxBytes, s as isManagedImagePath } from "./src-CMt8D9OY.mjs";
2
2
 
3
3
  export { deleteImage, saveImageToDisk };
package/dist/index.mjs CHANGED
@@ -5731,7 +5731,7 @@ function registerAutoForgetFunction(sdk, kv) {
5731
5731
 
5732
5732
  //#endregion
5733
5733
  //#region src/version.ts
5734
- const VERSION = "0.9.7";
5734
+ const VERSION = "0.9.8";
5735
5735
 
5736
5736
  //#endregion
5737
5737
  //#region src/functions/export-import.ts
@@ -5856,7 +5856,8 @@ function registerExportImportFunction(sdk, kv) {
5856
5856
  "0.9.4",
5857
5857
  "0.9.5",
5858
5858
  "0.9.6",
5859
- "0.9.7"
5859
+ "0.9.7",
5860
+ "0.9.8"
5860
5861
  ]).has(importData.version)) return {
5861
5862
  success: false,
5862
5863
  error: `Unsupported export version: ${importData.version}`