claude-mem 3.6.10 → 3.7.1
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 +14 -0
- package/dist/claude-mem.min.js +402 -224
- 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 +196 -68
- package/src/commands/migrate-index.ts +300 -0
- package/src/commands/save.ts +43 -28
- package/src/core/compression/TranscriptCompressor.ts +106 -10
- 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,20 @@ 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.7.1] - 2025-09-17
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- SQLite storage backend with session, memory, overview, and diagnostics management
|
|
12
|
+
- Mintlify documentation site with searchable interface and comprehensive guides
|
|
13
|
+
- Context7 MCP integration for documentation retrieval
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Session-start overviews to display chronologically from oldest to newest
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Migration index parsing bug that prevented JSONL records from importing to SQLite
|
|
20
|
+
|
|
21
|
+
|
|
8
22
|
## [3.6.10] - 2025-09-16
|
|
9
23
|
|
|
10
24
|
### Added
|