@elizaos/plugin-memory 1.1.0 → 2.0.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 +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,10 @@ Advanced cognitive memory system for ElizaOS agents with persistent memory, inte
|
|
|
4
4
|
|
|
5
5
|
> 📚 **Research-Driven**: Built on analysis of 40+ academic papers. See [`refactor.md`](./refactor.md) and [`EVALUATION.md`](./EVALUATION.md) for details.
|
|
6
6
|
|
|
7
|
+
> ⚠️ **Version Notice**: Breaking schema change between v1.x and v2.x. See [MIGRATION.md](./MIGRATION.md) for details.
|
|
8
|
+
> - **v1.x**: Stable for existing production (v1.0.5)
|
|
9
|
+
> - **v2.x**: New cognitive architecture (v2.0.0+)
|
|
10
|
+
|
|
7
11
|
---
|
|
8
12
|
|
|
9
13
|
## Overview
|
|
@@ -21,7 +25,11 @@ Transforms stateless LLM agents into persistent entities with human-like memory
|
|
|
21
25
|
## Installation
|
|
22
26
|
|
|
23
27
|
```bash
|
|
28
|
+
# For new projects (v2.x - latest)
|
|
24
29
|
bun add @elizaos/plugin-memory
|
|
30
|
+
|
|
31
|
+
# For existing production (v1.x - stable)
|
|
32
|
+
bun add @elizaos/plugin-memory@^1.0.5
|
|
25
33
|
```
|
|
26
34
|
|
|
27
35
|
Add to your character file:
|
package/package.json
CHANGED