@memtensor/memos-local-openclaw-plugin 1.0.8-beta.5 → 1.0.8-beta.6

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.
@@ -3,7 +3,7 @@
3
3
  "name": "MemOS Local Memory",
4
4
  "description": "Full-write local conversation memory with hybrid search (RRF + MMR + recency), task summarization, skill evolution, and team sharing (Hub-Client). Provides memory_search, memory_get, task_summary, skill_search, task_share, network_skill_pull, network_team_info, memory_viewer for layered retrieval and team collaboration.",
5
5
  "kind": "memory",
6
- "version": "1.0.8-beta.5",
6
+ "version": "1.0.8-beta.6",
7
7
  "skills": [
8
8
  "skill/memos-memory-guide"
9
9
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memtensor/memos-local-openclaw-plugin",
3
- "version": "1.0.8-beta.5",
3
+ "version": "1.0.8-beta.6",
4
4
  "description": "MemOS Local memory plugin for OpenClaw — full-write, hybrid-recall, progressive retrieval",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -4912,8 +4912,8 @@ export class ViewerServer {
4912
4912
  res.writeHead(statusCode, { "Content-Type": "application/json; charset=utf-8" });
4913
4913
  res.end(JSON.stringify(data), () => {
4914
4914
  setTimeout(() => {
4915
- this.log.info(`${source}: triggering gateway restart via SIGUSR1...`);
4916
- try { process.kill(process.pid, "SIGUSR1"); } catch (sig) { this.log.warn(`SIGUSR1 failed: ${sig}`); }
4915
+ this.log.info(`${source}: triggering gateway restart via process.exit (LaunchAgent will respawn)...`);
4916
+ try { process.exit(0); } catch (e) { this.log.warn(`process.exit failed: ${e}`); }
4917
4917
  }, delayMs);
4918
4918
  });
4919
4919
  }