agentic-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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -37,7 +37,7 @@ With agentic-memory:
37
37
  ## Where it fits
38
38
 
39
39
  <p align="center">
40
- <img src="assets/architecture.svg" alt="Architecture diagram" width="720"/>
40
+ <img src="https://raw.githubusercontent.com/genieincodebottle/agentic-memory/master/assets/architecture.svg" alt="Architecture diagram" width="720"/>
41
41
  </p>
42
42
 
43
43
  ---
@@ -187,7 +187,7 @@ asyncio.run(main())
187
187
  RAG gives you "topically related" results. Agents need more than that.
188
188
 
189
189
  <p align="center">
190
- <img src="assets/retrieval-signals.svg" alt="Multi-signal retrieval" width="640"/>
190
+ <img src="https://raw.githubusercontent.com/genieincodebottle/agentic-memory/master/assets/retrieval-signals.svg" alt="Multi-signal retrieval" width="640"/>
191
191
  </p>
192
192
 
193
193
  ```typescript
@@ -202,7 +202,7 @@ const results = await memory.retrieve({
202
202
  ### 2. Conflict detection (catch contradictions before they ship)
203
203
 
204
204
  <p align="center">
205
- <img src="assets/conflict-detection.svg" alt="Conflict detection flow" width="640"/>
205
+ <img src="https://raw.githubusercontent.com/genieincodebottle/agentic-memory/master/assets/conflict-detection.svg" alt="Conflict detection flow" width="640"/>
206
206
  </p>
207
207
 
208
208
  ```typescript
@@ -220,7 +220,7 @@ Uses negation detection, antonym matching, and change-language detection - not j
220
220
  ### 3. Typed decay (a peanut allergy != a favorite color)
221
221
 
222
222
  <p align="center">
223
- <img src="assets/typed-decay.svg" alt="Typed decay curves" width="640"/>
223
+ <img src="https://raw.githubusercontent.com/genieincodebottle/agentic-memory/master/assets/typed-decay.svg" alt="Typed decay curves" width="640"/>
224
224
  </p>
225
225
 
226
226
  ```typescript
@@ -247,7 +247,7 @@ const deletedCount = await memory.cleanup('user:123');
247
247
  A 40-minute agent workflow shouldn't lose everything when context fills up.
248
248
 
249
249
  <p align="center">
250
- <img src="assets/checkpoint-flow.svg" alt="Checkpoint and rehydrate flow" width="640"/>
250
+ <img src="https://raw.githubusercontent.com/genieincodebottle/agentic-memory/master/assets/checkpoint-flow.svg" alt="Checkpoint and rehydrate flow" width="640"/>
251
251
  </p>
252
252
 
253
253
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-memory",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Framework-agnostic memory layer for AI agents. Multi-signal retrieval, conflict detection, typed decay, checkpointing. Zero dependencies.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",