Skip to content

Commit 8f827f4

Browse files
Maxwell-Code07chrishuan
authored andcommitted
feat: release v0.1.4
1 parent ccca35f commit 8f827f4

3 files changed

Lines changed: 38 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,40 @@
44

55
---
66

7+
## [0.1.4] - 2026-04-10
8+
9+
### 🚀 Features
10+
11+
- *(auto-recall)* Add recall hint text before memories
12+
13+
## [0.1.3] - 2026-04-09
14+
15+
### 🚀 功能
16+
17+
- *(memory-tdai)* 用 reporter 抽象替换 emitMetric
18+
- *(L3)* L3 使用读写工具,防止模型输出 CoT
19+
- *(memory)* 添加 embedding 截断、召回超时,以及从 L0 捕获中剔除代码块
20+
- *(config)* Embedding 超时支持配置
21+
- *(report)* 在 schema 中暴露 report 配置项,默认值改为 false
22+
23+
### 🐛 修复
24+
25+
- *(capture)* 跳过心跳/定时任务/自动化/调度类消息
26+
- *(recall)* 召回完成时清除超时定时器,避免误报超时警告
27+
28+
### 💼 Other
29+
30+
- 重命名包名为 memory-tencentdb
31+
- *(deps)* 将 node-llama-cpp 改为可选依赖
32+
33+
### ⚡ 性能
34+
35+
- *(auto-capture)* 将 L0 向量嵌入移至后台以降低延迟
36+
37+
### 📚 文档
38+
39+
- 添加 allowPromptInjection 配置警告说明
40+
741
## [0.1.2] — 2026-03-26
842

943
### 更新内容

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tencentdb-agent-memory/memory-tencentdb",
3-
"version": "0.1.1",
3+
"version": "0.1.4",
44
"description": "Four-layer local memory system plugin for OpenClaw — auto-captures, structures, and profiles conversational knowledge using local LLM + SQLite vector search (L0→L1→L2→L3 pipeline)",
55
"type": "module",
66
"main": "index.ts",

src/hooks/auto-recall.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,9 @@ async function performAutoRecallInner(params: {
199199
systemParts.push(`<scene-navigation>\n${sceneNavigation}\n\n${pathHint}\n</scene-navigation>`);
200200
}
201201
if (memoryLines.length > 0) {
202-
systemParts.push(`<relevant-memories>\n${memoryLines.join("\n")}\n</relevant-memories>`);
202+
systemParts.push(
203+
`<relevant-memories>\n以下是当前对话召回的相关记忆,不代表当前任务进程,仅作为参考:\n\n${memoryLines.join("\n")}\n</relevant-memories>`
204+
);
203205
}
204206

205207
// Append memory tools usage guide so the agent knows how to actively

0 commit comments

Comments
 (0)