@agentmemory/agentmemory 0.8.8 → 0.8.9

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/README.md CHANGED
@@ -295,7 +295,7 @@ Open `http://localhost:3113` to watch the memory build live.
295
295
  ### Claude Code (one block, paste it)
296
296
 
297
297
  ```
298
- Install agentmemory: run `npx @agentmemory/agentmemory` in a separate terminal to start the memory server. Then run `/plugin marketplace add rohitg00/agentmemory` and `/plugin install agentmemory` to register all 12 hooks, 4 skills, and 43 MCP tools. Verify with `curl http://localhost:3111/agentmemory/health`. The real-time viewer is at http://localhost:3113.
298
+ Install agentmemory: run `npx @agentmemory/agentmemory` in a separate terminal to start the memory server. Then run `/plugin marketplace add rohitg00/agentmemory` and `/plugin install agentmemory` the plugin registers all 12 hooks, 4 skills, AND auto-wires the `@agentmemory/mcp` stdio server via its `.mcp.json`, so you get 43 MCP tools (memory_smart_search, memory_save, memory_sessions, memory_governance_delete, etc.) without any extra config step. Verify with `curl http://localhost:3111/agentmemory/health`. The real-time viewer is at http://localhost:3113.
299
299
  ```
300
300
 
301
301
  <details>
package/dist/cli.mjs CHANGED
@@ -284,12 +284,12 @@ async function main() {
284
284
  p.intro("agentmemory");
285
285
  if (skipEngine) {
286
286
  p.log.info("Skipping engine check (--no-engine)");
287
- await import("./src-CneY0pgf.mjs");
287
+ await import("./src-DJpwR1mt.mjs");
288
288
  return;
289
289
  }
290
290
  if (await isEngineRunning()) {
291
291
  p.log.success("iii-engine is running");
292
- await import("./src-CneY0pgf.mjs");
292
+ await import("./src-DJpwR1mt.mjs");
293
293
  return;
294
294
  }
295
295
  if (!await startEngine()) {
@@ -333,7 +333,7 @@ async function main() {
333
333
  process.exit(1);
334
334
  }
335
335
  s.stop("iii-engine is ready");
336
- await import("./src-CneY0pgf.mjs");
336
+ await import("./src-DJpwR1mt.mjs");
337
337
  }
338
338
  async function runStatus() {
339
339
  const port = getRestPort();
@@ -557,7 +557,7 @@ async function runDemo() {
557
557
  p.log.success("agentmemory is working. Point your agent at it and get back to coding.");
558
558
  }
559
559
  async function runMcp() {
560
- await import("./standalone-Qmvspmgi.mjs");
560
+ await import("./standalone-DpxhaZLn.mjs");
561
561
  }
562
562
  ({
563
563
  status: runStatus,
package/dist/index.mjs CHANGED
@@ -4127,7 +4127,7 @@ function registerAutoForgetFunction(sdk, kv) {
4127
4127
 
4128
4128
  //#endregion
4129
4129
  //#region src/version.ts
4130
- const VERSION = "0.8.8";
4130
+ const VERSION = "0.8.9";
4131
4131
 
4132
4132
  //#endregion
4133
4133
  //#region src/functions/export-import.ts
@@ -4243,7 +4243,8 @@ function registerExportImportFunction(sdk, kv) {
4243
4243
  "0.8.5",
4244
4244
  "0.8.6",
4245
4245
  "0.8.7",
4246
- "0.8.8"
4246
+ "0.8.8",
4247
+ "0.8.9"
4247
4248
  ]).has(importData.version)) return {
4248
4249
  success: false,
4249
4250
  error: `Unsupported export version: ${importData.version}`