@memoryrelay/plugin-memoryrelay-ai 0.9.1 → 0.9.2
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/index.ts +6 -6
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* OpenClaw Memory Plugin - MemoryRelay
|
|
3
|
-
* Version: 0.9.
|
|
3
|
+
* Version: 0.9.2 (OpenClaw Security Compliance)
|
|
4
4
|
*
|
|
5
5
|
* Long-term memory with vector search using MemoryRelay API.
|
|
6
6
|
* Provides auto-recall and auto-capture via lifecycle hooks.
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* API: https://api.memoryrelay.net
|
|
10
10
|
* Docs: https://memoryrelay.ai
|
|
11
11
|
*
|
|
12
|
-
* ENHANCEMENTS (v0.9.
|
|
12
|
+
* ENHANCEMENTS (v0.9.2):
|
|
13
13
|
* - Removed fs.writeFile from export command (stdout only now)
|
|
14
14
|
* - No filesystem operations - passes OpenClaw security validation
|
|
15
15
|
* - Export usage: openclaw memoryrelay export > memories.json
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
* - All debug logs now in-memory only (circular buffer)
|
|
20
20
|
* - logFile config option deprecated (ignored with warning)
|
|
21
21
|
* - Clean npm installation without security warnings
|
|
22
|
-
* - Gateway methods for log access coming in v0.9.
|
|
22
|
+
* - Gateway methods for log access coming in v0.9.2
|
|
23
23
|
*
|
|
24
24
|
* ENHANCEMENTS (v0.8.3):
|
|
25
25
|
* - Security fix: logFile restricted to relative paths
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
*/
|
|
53
53
|
|
|
54
54
|
import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
|
|
55
|
-
import { DebugLogger, type LogEntry } from "
|
|
56
|
-
import { StatusReporter } from "
|
|
55
|
+
import { DebugLogger, type LogEntry } from "src/debug-logger";
|
|
56
|
+
import { StatusReporter } from "src/status-reporter";
|
|
57
57
|
|
|
58
58
|
// ============================================================================
|
|
59
59
|
// Constants
|
|
@@ -865,7 +865,7 @@ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
|
|
|
865
865
|
const verboseEnabled = cfg?.verbose || false;
|
|
866
866
|
const maxLogEntries = cfg?.maxLogEntries || 100;
|
|
867
867
|
|
|
868
|
-
// Note: logFile is deprecated in v0.9.
|
|
868
|
+
// Note: logFile is deprecated in v0.9.2 (removed for OpenClaw security compliance)
|
|
869
869
|
// All debug logs are in-memory only. Use gateway methods to access logs.
|
|
870
870
|
|
|
871
871
|
let debugLogger: DebugLogger | undefined;
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED