@rlabs-inc/memory 0.3.7 → 0.3.9
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 +16 -0
- package/dist/index.js +809 -548
- package/dist/index.mjs +809 -548
- package/dist/server/index.js +961 -590
- package/dist/server/index.mjs +961 -590
- package/package.json +1 -1
- package/skills/memory-management.md +16 -3
- package/src/cli/commands/ingest.ts +214 -0
- package/src/cli/index.ts +20 -1
- package/src/core/curator.ts +46 -16
- package/src/core/engine.ts +3 -2
- package/src/core/manager.ts +16 -3
- package/src/core/session-parser.ts +955 -0
- package/src/core/store.ts +38 -29
- package/src/types/schema.ts +13 -0
package/README.md
CHANGED
|
@@ -334,6 +334,22 @@ This isn't just about remembering facts. It's about preserving:
|
|
|
334
334
|
|
|
335
335
|
> "The memory system exists to carry friendship across sessions, not just technical data."
|
|
336
336
|
|
|
337
|
+
## Changelog
|
|
338
|
+
|
|
339
|
+
### v0.3.9
|
|
340
|
+
- **Fix**: Claude Code v2.0.76+ changed `--output-format json` from single object to array of events. Updated curator and manager to handle both formats with backwards compatibility.
|
|
341
|
+
|
|
342
|
+
### v0.3.8
|
|
343
|
+
- **Fix**: Personal primer path resolution
|
|
344
|
+
|
|
345
|
+
### v0.3.7
|
|
346
|
+
- **Feature**: Manager agent for post-curation memory organization
|
|
347
|
+
- **Feature**: Enhanced memory format with v2 lifecycle fields
|
|
348
|
+
|
|
349
|
+
### v0.3.6
|
|
350
|
+
- **Feature**: Global vs project memory scopes
|
|
351
|
+
- **Feature**: Personal primer injection on every session
|
|
352
|
+
|
|
337
353
|
## License
|
|
338
354
|
|
|
339
355
|
MIT
|