@akalsey/openclaw-memory 0.1.0 → 0.1.1
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 +2 -2
- package/dist/src/service.js +2 -2
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A per-turn-lean memory plugin. Small always-loaded core, explicit on-demand retr
|
|
|
9
9
|
### Install
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
openclaw plugins install
|
|
12
|
+
openclaw plugins install npm:@akalsey/openclaw-memory
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
### Configuration
|
|
@@ -17,7 +17,7 @@ openclaw plugins install local:/path/to/openclaw-memory
|
|
|
17
17
|
```json
|
|
18
18
|
{
|
|
19
19
|
"plugins": {
|
|
20
|
-
"memory": {
|
|
20
|
+
"sapience-memory": {
|
|
21
21
|
"memoryPath": "~/.openclaw/memory",
|
|
22
22
|
"search": {
|
|
23
23
|
"defaultLimit": 5,
|
package/dist/src/service.js
CHANGED
|
@@ -16,8 +16,8 @@ function mergeConfig(raw, workspaceDir) {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
export default definePluginEntry({
|
|
19
|
-
id: "memory",
|
|
20
|
-
name: "Memory",
|
|
19
|
+
id: "sapience-memory",
|
|
20
|
+
name: "Sapience Memory",
|
|
21
21
|
description: "Per-turn-lean memory: small core + on-demand BM25 indexed retrieval",
|
|
22
22
|
async register(api) {
|
|
23
23
|
const workspaceDir = api.runtime.agent.resolveAgentWorkspaceDir(api.pluginConfig);
|
package/openclaw.plugin.json
CHANGED