|
9 | 9 | A LanceDB-backed OpenClaw memory plugin that stores preferences, decisions, and project context, then auto-recalls them in future sessions. |
10 | 10 |
|
11 | 11 | [](https://github.com/openclaw/openclaw) |
| 12 | +[](https://github.com/openclaw/openclaw) |
12 | 13 | [](https://www.npmjs.com/package/memory-lancedb-pro) |
13 | 14 | [](https://lancedb.com) |
14 | 15 | [](LICENSE) |
| 16 | +<h2>⚡ <a href="https://github.com/CortexReach/memory-lancedb-pro/releases/tag/v1.1.0-beta.10">v1.1.0-beta.10 — OpenClaw 2026.3+ Hook Adaptation</a></h2> |
| 17 | + |
| 18 | +<p> |
| 19 | + ✅ Fully adapted for OpenClaw 2026.3+ new plugin architecture<br> |
| 20 | + 🔄 Uses <code>before_prompt_build</code> hooks (replacing deprecated <code>before_agent_start</code>)<br> |
| 21 | + 🩺 Run <code>openclaw doctor --fix</code> after upgrading |
| 22 | +</p> |
| 23 | + |
15 | 24 |
|
16 | 25 | [English](README.md) | [简体中文](README_CN.md) | [繁體中文](README_TW.md) | [日本語](README_JA.md) | [한국어](README_KO.md) | [Français](README_FR.md) | [Español](README_ES.md) | [Deutsch](README_DE.md) | [Italiano](README_IT.md) | [Русский](README_RU.md) | [Português (Brasil)](README_PT-BR.md) |
17 | 26 |
|
@@ -140,11 +149,6 @@ When `memory-lancedb-pro` is active, your system has **two independent memory la |
140 | 149 | - `MEMORY.md` → curated human-readable reference, not a recall source |
141 | 150 | - Plugin memory → **primary recall source** for `memory_recall` and auto-recall |
142 | 151 |
|
143 | | -**If you want your Markdown memories to be recallable**, use the import command: |
144 | | -```bash |
145 | | -npx memory-lancedb-pro memory-pro import-markdown |
146 | | -``` |
147 | | - |
148 | 152 | Validate & restart: |
149 | 153 |
|
150 | 154 | ```bash |
@@ -636,6 +640,19 @@ Sometimes the model may echo the injected `<relevant-memories>` block. |
636 | 640 |
|
637 | 641 | </details> |
638 | 642 |
|
| 643 | +<details> |
| 644 | +<summary><strong>Auto-recall timeout tuning</strong></summary> |
| 645 | + |
| 646 | +Auto-recall has a configurable timeout (default 5s) to prevent stalling agent startup. If you're behind a proxy or using a high-latency embedding API, increase it: |
| 647 | + |
| 648 | +```json |
| 649 | +{ "plugins": { "entries": { "memory-lancedb-pro": { "config": { "autoRecallTimeoutMs": 8000 } } } } } |
| 650 | +``` |
| 651 | + |
| 652 | +If auto-recall consistently times out, check your embedding API latency first. The timeout only affects the automatic injection path — manual `memory_recall` tool calls are not affected. |
| 653 | + |
| 654 | +</details> |
| 655 | + |
639 | 656 | <details> |
640 | 657 | <summary><strong>Session Memory</strong></summary> |
641 | 658 |
|
|
0 commit comments