claude-mem 3.6.5 → 3.6.8
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 +12 -0
- package/commands/save.md +2 -2
- package/dist/claude-mem.min.js +96 -95
- package/package.json +1 -1
- package/src/commands/changelog.ts +28 -2
- package/src/core/compression/ChunkManager.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.8] - 2025-09-14
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Fixed publish command failing when no version-related memories exist for changelog generation
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.6.6] - 2025-09-14
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Resolved compaction errors when processing large conversation histories by reducing chunk size limits to stay within Claude's context window
|
|
18
|
+
|
|
19
|
+
|
|
8
20
|
## [3.6.5] - 2025-09-14
|
|
9
21
|
|
|
10
22
|
### Changed
|
package/commands/save.md
CHANGED
|
@@ -3,5 +3,5 @@ allowed-tools: Bash
|
|
|
3
3
|
description: Write an overview and save with claude-mem
|
|
4
4
|
---
|
|
5
5
|
**Write an overview** of the current conversation context and:
|
|
6
|
-
1. **Add it to claude-mem** using the chroma MCP tools
|
|
7
|
-
2. **
|
|
6
|
+
1. **Add it to claude-mem** using the chroma MCP tools. Always use primitive types (strings, numbers, booleans) when calling MCP Chroma tools directly. Arrays should be comma-separated strings, and nested objects should be flattened.
|
|
7
|
+
2. **Save the overview to index** using the claude-mem CLI tool: `claude-mem save "your overview message"`
|