@memoryrelay/plugin-memoryrelay-ai 0.11.0 → 0.11.1

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.
Files changed (2) hide show
  1. package/index.ts +2 -2
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * OpenClaw Memory Plugin - MemoryRelay
3
- * Version: 0.11.0 (Full Single-File)
3
+ * Version: 0.11.1 (Full Single-File)
4
4
  *
5
5
  * Long-term memory with vector search using MemoryRelay API.
6
6
  * Provides auto-recall and auto-capture via lifecycle hooks.
@@ -842,7 +842,7 @@ function shouldCapture(text: string): boolean {
842
842
 
843
843
  // ============================================================================
844
844
  // Plugin Export
845
- export default function plugin(api: OpenClawPluginApi): void {
845
+ export default async function plugin(api: OpenClawPluginApi): Promise<void> {
846
846
  const cfg = api.pluginConfig as MemoryRelayConfig | undefined;
847
847
 
848
848
  // Fall back to environment variables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memoryrelay/plugin-memoryrelay-ai",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "OpenClaw memory plugin for MemoryRelay API - sessions, decisions, patterns, projects & semantic search",
5
5
  "type": "module",
6
6
  "main": "index.ts",