claude-mem 3.6.9 → 3.7.0
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/CHANGELOG.md +11 -0
- package/dist/claude-mem.min.js +402 -223
- package/package.json +1 -1
- package/src/bin/cli.ts +11 -0
- package/src/commands/import-history.ts +15 -20
- package/src/commands/load-context.ts +205 -70
- package/src/commands/migrate-index.ts +300 -0
- package/src/commands/save.ts +48 -28
- package/src/core/compression/TranscriptCompressor.ts +106 -10
- package/src/core/orchestration/PromptOrchestrator.ts +2 -2
- package/src/prompts/templates/context/ContextTemplates.ts +6 -2
- package/src/services/sqlite/Database.ts +179 -0
- package/src/services/sqlite/DiagnosticsStore.ts +229 -0
- package/src/services/sqlite/MemoryStore.ts +247 -0
- package/src/services/sqlite/OverviewStore.ts +196 -0
- package/src/services/sqlite/SessionStore.ts +195 -0
- package/src/services/sqlite/index.ts +32 -0
- package/src/services/sqlite/migrations/001_initial.ts +133 -0
- package/src/services/sqlite/migrations/index.ts +17 -0
- package/src/services/sqlite/types.ts +152 -0
- package/src/shared/storage.ts +402 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
## [3.6.10] - 2025-09-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Claude Code statusline integration for real-time memory status
|
|
12
|
+
- MCP memory tools server providing compress, stats, search, and overview commands
|
|
13
|
+
- Concept documentation explaining memory compression and context loading
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Corrected integration architecture to use hooks instead of MCP SDK
|
|
17
|
+
|
|
18
|
+
|
|
8
19
|
## [3.6.9] - 2025-09-14
|
|
9
20
|
|
|
10
21
|
### Added
|