@rlabs-inc/memory 0.4.10 → 0.4.12
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 +12 -0
- package/dist/index.js +395 -73
- package/dist/index.mjs +379 -57
- package/dist/server/index.js +412 -86
- package/dist/server/index.mjs +385 -59
- package/package.json +2 -2
- package/src/core/curator.ts +92 -0
- package/src/server/index.ts +14 -4
package/README.md
CHANGED
|
@@ -383,6 +383,18 @@ This isn't just about remembering facts. It's about preserving:
|
|
|
383
383
|
|
|
384
384
|
## Changelog
|
|
385
385
|
|
|
386
|
+
### v0.4.12
|
|
387
|
+
- **Simplify**: Removed Zod structured outputs - session resumption only
|
|
388
|
+
- **Improvement**: Uses existing battle-tested JSON parser instead of Zod
|
|
389
|
+
- **Improvement**: Complete curator response now logged for debugging
|
|
390
|
+
- **Tech**: Removed zod dependency, deleted curation-schema.ts
|
|
391
|
+
|
|
392
|
+
### v0.4.11
|
|
393
|
+
- **Feature**: Curator v2 with session resumption (uses `resume` option for full context)
|
|
394
|
+
- **Improvement**: Curation now sees full session including tool uses, thinking blocks
|
|
395
|
+
- **Improvement**: Uses Opus 4.5 for curation
|
|
396
|
+
- **Tech**: `curateWithSessionResume()` method with automatic fallback to transcript parsing
|
|
397
|
+
|
|
386
398
|
### v0.4.10
|
|
387
399
|
- **Fix**: Server now actually uses SDK curation (v0.4.9 published before the change was in server code)
|
|
388
400
|
|