Release v3.6.6
Published from npm package build Source: https://github.com/thedotmack/claude-mem-source
This commit is contained in:
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
|
||||||
|
## [3.6.6] - 2025-09-14
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Resolved compaction errors when processing large conversation histories by reducing chunk size limits to stay within Claude's context window
|
||||||
|
|
||||||
|
|
||||||
## [3.6.5] - 2025-09-14
|
## [3.6.5] - 2025-09-14
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
Vendored
+3
-3
File diff suppressed because one or more lines are too long
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "claude-mem",
|
"name": "claude-mem",
|
||||||
"version": "3.6.5",
|
"version": "3.6.6",
|
||||||
"description": "Memory compression system for Claude Code - persist context across sessions",
|
"description": "Memory compression system for Claude Code - persist context across sessions",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"claude",
|
"claude",
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ export interface ChunkedMessage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class ChunkManager {
|
export class ChunkManager {
|
||||||
private static readonly DEFAULT_MAX_TOKENS = 28000;
|
private static readonly DEFAULT_MAX_TOKENS = 22400; // Reduced by 20% from 28000
|
||||||
private static readonly DEFAULT_MAX_BYTES = 98000;
|
private static readonly DEFAULT_MAX_BYTES = 78400; // Reduced by 20% from 98000
|
||||||
private static readonly DEFAULT_CONTEXT_OVERLAP = 2;
|
private static readonly DEFAULT_CONTEXT_OVERLAP = 2;
|
||||||
private static readonly CHARS_PER_TOKEN_ESTIMATE = 3.5;
|
private static readonly CHARS_PER_TOKEN_ESTIMATE = 3.5;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user