@rlabs-inc/memory 0.4.9 → 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 +22 -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/cli/commands/install.ts +34 -10
- package/src/core/curator.ts +146 -0
- package/src/server/index.ts +16 -5
- package/src/types/curation-schema.ts +107 -0
package/README.md
CHANGED
|
@@ -383,6 +383,28 @@ 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
|
+
|
|
393
|
+
### v0.4.10
|
|
394
|
+
- **Fix**: Server now actually uses SDK curation (v0.4.9 published before the change was in server code)
|
|
395
|
+
|
|
396
|
+
### v0.4.9
|
|
397
|
+
- **Feature**: SDK curation is now the default mode for curator and manager
|
|
398
|
+
- **Feature**: Hooks now install to `~/.claude/hooks/` for stability across package upgrades
|
|
399
|
+
- **Fix**: CLI mode without max-turns was going off-rails and not returning JSON structure
|
|
400
|
+
|
|
401
|
+
### v0.4.6
|
|
402
|
+
- **Fix**: Removed curator max-turns limit - Claude Code 2.1.7+ uses Haiku for routing before Opus, consuming turns
|
|
403
|
+
|
|
404
|
+
### v0.4.5
|
|
405
|
+
- **Feature**: Verbose curator logging (`--verbose`) to debug empty memory extractions
|
|
406
|
+
- **Fix**: Ingest storage path resolution
|
|
407
|
+
|
|
386
408
|
### v0.4.4
|
|
387
409
|
- **Docs**: Comprehensive README update with accurate v0.4.x documentation
|
|
388
410
|
- **Fix**: CLI `--version` now reads from package.json instead of hardcoded value
|