@memoryrelay/plugin-memoryrelay-ai 0.9.0 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * OpenClaw Memory Plugin - MemoryRelay
3
- * Version: 0.9.0 (OpenClaw Security Compliance)
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.0):
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.0
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 "./src/debug-logger";
56
- import { StatusReporter } from "./src/status-reporter";
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.0 (removed for OpenClaw security compliance)
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;
@@ -3,7 +3,7 @@
3
3
  "kind": "memory",
4
4
  "name": "MemoryRelay AI",
5
5
  "description": "AI memory service with sessions, decisions, patterns & projects (api.memoryrelay.net)",
6
- "version": "0.9.0",
6
+ "version": "0.9.2",
7
7
  "uiHints": {
8
8
  "apiKey": {
9
9
  "label": "MemoryRelay API Key",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoryrelay/plugin-memoryrelay-ai",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "OpenClaw memory plugin for MemoryRelay API - sessions, decisions, patterns, projects & semantic search",
5
5
  "type": "module",
6
6
  "main": "index.ts",
@@ -39,7 +39,7 @@
39
39
  "openclaw": {
40
40
  "id": "plugin-memoryrelay-ai",
41
41
  "extensions": [
42
- "./index.ts"
42
+ "index.ts"
43
43
  ]
44
44
  },
45
45
  "files": [