@rlabs-inc/memory 0.5.3 → 0.5.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 +5 -0
- package/dist/index.js +5115 -41504
- package/dist/index.mjs +1425 -10549
- package/dist/server/index.js +3779 -12801
- package/dist/server/index.mjs +3474 -12498
- package/hooks/gemini/curation.ts +2 -1
- package/hooks/gemini/session-start.ts +6 -3
- package/hooks/gemini/user-prompt.ts +5 -7
- package/package.json +1 -1
- package/src/core/curator.ts +142 -448
- package/src/core/manager.ts +323 -546
- package/src/server/index.ts +6 -2
- package/src/utils/paths.ts +191 -0
package/README.md
CHANGED
|
@@ -424,6 +424,11 @@ This isn't just about remembering facts. It's about preserving:
|
|
|
424
424
|
|
|
425
425
|
## Changelog
|
|
426
426
|
|
|
427
|
+
### v0.5.9
|
|
428
|
+
- **Fix**: Updated Gemini CLI hooks to correctly log injected context using stderr
|
|
429
|
+
- **Fix**: Removed unsupported `systemMessage` field from `BeforeAgent` hook
|
|
430
|
+
- **Improvement**: Added colorful `[Memory]` logs to terminal for visibility of memory injection
|
|
431
|
+
|
|
427
432
|
### v0.5.1
|
|
428
433
|
- **Improvement**: Gemini CLI hooks now show injected content to user via `systemMessage`
|
|
429
434
|
- Users see exactly what memories are surfaced (session primer, retrieved memories)
|