Skip to content

Commit 03cfc4c

Browse files
committed
Address AliceLJY review comments: restore cli.ts, remove import-markdown reference, restore removed README sections
- Restore cli.ts (was accidentally deleted, all CLI commands preserved) - Remove import-markdown command reference from dual-memory section (lives in PR CortexReach#426) - Restore beta.10 version banner and OpenClaw 2026.3+ badge - Restore Auto-recall timeout tuning FAQ section Ref: CortexReach#367
1 parent 389750c commit 03cfc4c

File tree

2 files changed

+1371
-5
lines changed

2 files changed

+1371
-5
lines changed

README.md

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,18 @@
99
A LanceDB-backed OpenClaw memory plugin that stores preferences, decisions, and project context, then auto-recalls them in future sessions.
1010

1111
[![OpenClaw Plugin](https://img.shields.io/badge/OpenClaw-Plugin-blue)](https://github.com/openclaw/openclaw)
12+
[![OpenClaw 2026.3+](https://img.shields.io/badge/OpenClaw-2026.3%2B-brightgreen)](https://github.com/openclaw/openclaw)
1213
[![npm version](https://img.shields.io/npm/v/memory-lancedb-pro)](https://www.npmjs.com/package/memory-lancedb-pro)
1314
[![LanceDB](https://img.shields.io/badge/LanceDB-Vectorstore-orange)](https://lancedb.com)
1415
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](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+
1524

1625
[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)
1726

@@ -140,11 +149,6 @@ When `memory-lancedb-pro` is active, your system has **two independent memory la
140149
- `MEMORY.md` → curated human-readable reference, not a recall source
141150
- Plugin memory → **primary recall source** for `memory_recall` and auto-recall
142151

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-
148152
Validate & restart:
149153

150154
```bash
@@ -636,6 +640,19 @@ Sometimes the model may echo the injected `<relevant-memories>` block.
636640
637641
</details>
638642

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+
639656
<details>
640657
<summary><strong>Session Memory</strong></summary>
641658

0 commit comments

Comments
 (0)