@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 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 local:/path/to/openclaw-memory
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,
@@ -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);
@@ -1,6 +1,6 @@
1
1
  {
2
- "id": "memory",
3
- "name": "Memory",
2
+ "id": "sapience-memory",
3
+ "name": "Sapience Memory",
4
4
  "version": "0.1.0",
5
5
  "description": "Per-turn-lean memory: small always-loaded core + on-demand BM25 search over indexed markdown files",
6
6
  "contracts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akalsey/openclaw-memory",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "exports": {