memorylake-openclaw 1.0.2-beta.6 → 1.0.2-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/README.md CHANGED
@@ -10,7 +10,7 @@ Your agent forgets everything between sessions. This plugin fixes that. It watch
10
10
  <img src="../docs/images/openclaw-architecture.png" alt="Architecture" width="800" />
11
11
  </p> -->
12
12
 
13
- **Auto-Recall** — Before the agent responds, the plugin searches MemoryLake for memories and relevant document excerpts that match the current message and injects them into context.
13
+ **Auto-Recall** — Before the agent responds, the plugin injects memory-search instructions and open-data categories into the system prompt, instructing the agent to call `retrieve_context` before every reply.
14
14
 
15
15
  **Auto-Capture** — After the agent responds, the plugin sends the exchange to MemoryLake. MemoryLake decides what's worth keeping — new facts get stored, stale ones updated, duplicates merged.
16
16
 
@@ -39,16 +39,15 @@ Get an API key from [app.memorylake.ai](https://app.memorylake.ai), then add to
39
39
 
40
40
  ## Agent tools
41
41
 
42
- The agent gets eight tools it can call during conversations:
42
+ The agent gets seven tools it can call during conversations:
43
43
 
44
44
  | Tool | Description |
45
45
  |------|-------------|
46
- | `memory_search` | Search memories by natural language |
46
+ | `retrieve_context` | Search memories AND uploaded documents in a single call |
47
47
  | `memory_list` | List all stored memories for a user |
48
48
  | `memory_store` | Explicitly save a fact |
49
- | `memory_get` | Retrieve a memory by ID |
50
49
  | `memory_forget` | Delete a memory by ID |
51
- | `document_search` | Search project documents for relevant paragraphs, tables, and figures |
50
+ | `document_download` | Download a document by ID (returns a presigned URL) |
52
51
  | `advanced_web_search` | Optional tool for web search with plugin-level domain and locale constraints |
53
52
  | `open_data_search` | Search open data sources scoped to the project's configured industry categories |
54
53
 
@@ -58,6 +57,9 @@ The agent gets eight tools it can call during conversations:
58
57
  # Search memories
59
58
  openclaw memorylake search "what languages does the user know"
60
59
 
60
+ # Upload files or directories
61
+ openclaw memorylake upload /path/to/file.pdf
62
+
61
63
  # Stats
62
64
  openclaw memorylake stats
63
65
  ```
@@ -69,7 +71,7 @@ openclaw memorylake stats
69
71
  | `apiKey` | `string` | — | **Required.** MemoryLake API key (supports `${MEMORYLAKE_API_KEY}`) |
70
72
  | `projectId` | `string` | — | **Required.** MemoryLake project ID |
71
73
  | `host` | `string` | `https://app.memorylake.ai` | MemoryLake server endpoint URL |
72
- | `autoRecall` | `boolean` | `true` | Inject memories before each turn |
74
+ | `autoRecall` | `boolean` | `true` | Inject mandatory `retrieve_context` instructions before each turn |
73
75
  | `autoCapture` | `boolean` | `true` | Store facts after each turn |
74
76
  | `autoUpload` | `boolean` | `true` | Auto-upload inbound files to MemoryLake |
75
77
  | `topK` | `number` | `5` | Max memories per recall |