openclaw-amem 1.4.0 → 1.4.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
@@ -1,7 +1,7 @@
1
1
  # openclaw-amem
2
2
 
3
3
  <p align="center">
4
- <img src="https://raw.githubusercontent.com/heichaowo/amem/main/docs/public/logo.webp" width="120" alt="amem logo" />
4
+ <img src="https://raw.githubusercontent.com/amemhq/amem/main/docs/public/logo.webp" width="120" alt="amem logo" />
5
5
  </p>
6
6
 
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow?style=for-the-badge)](../../LICENSE)
@@ -16,11 +16,11 @@ Runs on a small model — `gpt-4o-mini`, `haiku`, a local Ollama. No Python.
16
16
 
17
17
  中文走 [jieba](https://github.com/messense/node-jieba) 分词,提示词有完整中文版(`AMEM_PROMPT_LOCALE=zh`),embedding 模型本身多语言。
18
18
 
19
- Requires a local [Qdrant](https://qdrant.tech). Implements [A-MEM](https://arxiv.org/abs/2502.12110) (arXiv 2502.12110); the engine itself is [`@heichaowo/amem-core`](../amem-core).
19
+ Requires a local [Qdrant](https://qdrant.tech). Implements [A-MEM](https://arxiv.org/abs/2502.12110) (arXiv 2502.12110); the engine itself is [`@amemhq/core`](../amem-core).
20
20
 
21
21
  > 📖 Full guides, architecture & references: **[amem.owo.lc](https://amem.owo.lc)**.
22
22
 
23
- ⭐ Useful? [Star it on GitHub](https://github.com/heichaowo/amem).
23
+ ⭐ Useful? [Star it on GitHub](https://github.com/amemhq/amem).
24
24
 
25
25
  ## Highlights
26
26
 
@@ -31,7 +31,7 @@ Requires a local [Qdrant](https://qdrant.tech). Implements [A-MEM](https://arxiv
31
31
  - 🔐 **Per-agent isolation** — private by default; explicit `owner`/`readers`/`writers`; Mode A (shared collection) or Mode B (dedicated collection).
32
32
  - 🀄 **Chinese-optimized** & local embeddings (Transformers.js, 384-dim) — no Python, no external embedding API.
33
33
 
34
- → Full feature list & internals: **[amem-core README](../amem-core)** · **[docs](https://amem.owo.lc)**.
34
+ → Full feature list & internals: **[@amemhq/core README](../amem-core)** · **[docs](https://amem.owo.lc)**.
35
35
 
36
36
  ## Requirements
37
37
 
@@ -46,7 +46,7 @@ Requires a local [Qdrant](https://qdrant.tech). Implements [A-MEM](https://arxiv
46
46
 
47
47
  ```bash
48
48
  # From ClawHub (recommended)
49
- openclaw plugins install clawhub:@heichaowo/openclaw-amem
49
+ openclaw plugins install clawhub:openclaw-amem
50
50
 
51
51
  # From npm
52
52
  openclaw plugins install openclaw-amem
@@ -141,7 +141,7 @@ pnpm --filter openclaw-amem test # vitest (needs Qdrant on :6333)
141
141
 
142
142
  ## Docs & References
143
143
 
144
- Full guides, architecture, and academic references: **[amem.owo.lc](https://amem.owo.lc)** · engine: **[amem-core](../amem-core)** · paper: [A-MEM (arXiv:2502.12110)](https://arxiv.org/abs/2502.12110).
144
+ Full guides, architecture, and academic references: **[amem.owo.lc](https://amem.owo.lc)** · engine: **[@amemhq/core](../amem-core)** · paper: [A-MEM (arXiv:2502.12110)](https://arxiv.org/abs/2502.12110).
145
145
 
146
146
  ## License
147
147
 
@@ -2,7 +2,7 @@
2
2
  "id": "openclaw-amem",
3
3
  "name": "amem",
4
4
  "description": "Catches memories that contradict each other. Notes rewrite themselves as new ones arrive, link into a graph, and stay separated per agent and per person. Runs on a small model. Requires a local Qdrant. 中文走 jieba 分词,提示词有中文版。",
5
- "version": "1.4.0",
5
+ "version": "1.4.1",
6
6
  "kind": "memory",
7
7
  "openclaw": {
8
8
  "compat": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-amem",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Catches memories that contradict each other. Notes rewrite themselves as new ones arrive, link into a graph, and stay separated per agent and per person. Runs on a small model. Requires a local Qdrant. 中文走 jieba 分词,提示词有中文版。",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -20,13 +20,13 @@
20
20
  "@huggingface/transformers": "^4.2.0",
21
21
  "@node-rs/jieba": "^2.0.1",
22
22
  "@qdrant/js-client-rest": "^1.18.0",
23
- "@types/uuid": "^11.0.0",
24
23
  "openai": "^6.48.0",
25
24
  "uuid": "^14.0.0"
26
25
  },
27
26
  "devDependencies": {
28
27
  "@eslint/js": "^10.0.1",
29
28
  "@types/node": "^26.1.1",
29
+ "@types/uuid": "^11.0.0",
30
30
  "eslint": "^10.7.0",
31
31
  "prettier": "^3.9.5",
32
32
  "tsup": "^8.4.0",
@@ -41,12 +41,12 @@
41
41
  },
42
42
  "repository": {
43
43
  "type": "git",
44
- "url": "git+https://github.com/heichaowo/amem.git",
44
+ "url": "git+https://github.com/amemhq/amem.git",
45
45
  "directory": "packages/openclaw-amem"
46
46
  },
47
47
  "homepage": "https://amem.owo.lc",
48
48
  "bugs": {
49
- "url": "https://github.com/heichaowo/amem/issues"
49
+ "url": "https://github.com/amemhq/amem/issues"
50
50
  },
51
51
  "keywords": [
52
52
  "openclaw",