@memtensor/memos-local-openclaw-plugin 1.0.8-beta.6 → 1.0.8-beta.7
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/viewer/server.ts +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -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.
|
|
6
|
+
"version": "1.0.8-beta.7",
|
|
7
7
|
"skills": [
|
|
8
8
|
"skill/memos-memory-guide"
|
|
9
9
|
],
|
package/package.json
CHANGED
package/src/viewer/server.ts
CHANGED
|
@@ -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
|
|
4916
|
-
try { process.
|
|
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}`); }
|
|
4917
4917
|
}, delayMs);
|
|
4918
4918
|
});
|
|
4919
4919
|
}
|