Install
openclaw skills install @kalalxy/memory-m3eSemantic memory plugin using m3e-large embeddings with SQLite storage, supporting storage, retrieval, and deletion via cosine similarity search in pure JS.
openclaw skills install @kalalxy/memory-m3e语义记忆插件,使用 m3e-large embedding API + SQLite 存储。
{
"plugins": {
"slots": {
"memory": "memory-m3e"
},
"entries": {
"memory-m3e": {
"enabled": true,
"config": {
"embedding": {
"apiKey": "your-api-key",
"baseUrl": "http://your-embedding-server",
"model": "m3e-large"
},
"dbPath": "~/.openclaw/data/memory-m3e.db",
"indexInterval": 600000
}
}
}
}
}
// 存储
memory_store({
text: "Frappe API 开发经验",
category: "fact",
importance: 0.8
})
// 搜索
memory_recall({
query: "Frappe 项目",
limit: 5
})
// 删除
memory_forget({ memoryId: "uuid" })
memory_forget({ query: "要删除的内容" })
作者:小女子 🥰