@rlabs-inc/memory 0.4.10 → 0.4.11
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 +7 -0
- package/dist/index.js +17357 -3405
- package/dist/index.mjs +17345 -3393
- package/dist/server/index.js +17971 -4015
- package/dist/server/index.mjs +17949 -3993
- package/package.json +3 -2
- package/src/core/curator.ts +146 -0
- package/src/server/index.ts +14 -4
- package/src/types/curation-schema.ts +107 -0
package/README.md
CHANGED
|
@@ -383,6 +383,13 @@ This isn't just about remembering facts. It's about preserving:
|
|
|
383
383
|
|
|
384
384
|
## Changelog
|
|
385
385
|
|
|
386
|
+
### v0.4.11
|
|
387
|
+
- **Feature**: Curator v2 with session resumption + structured outputs (Zod validation)
|
|
388
|
+
- **Improvement**: Curation now uses `resume` option to get full session context including tool uses
|
|
389
|
+
- **Improvement**: JSON schema validation via Zod eliminates fragile regex parsing
|
|
390
|
+
- **Improvement**: Uses Opus 4.5 for curation
|
|
391
|
+
- **Tech**: New `curateWithSessionResume()` method with automatic fallback to transcript parsing
|
|
392
|
+
|
|
386
393
|
### v0.4.10
|
|
387
394
|
- **Fix**: Server now actually uses SDK curation (v0.4.9 published before the change was in server code)
|
|
388
395
|
|