claude-mem 3.6.6 → 3.6.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/CHANGELOG.md +15 -0
- package/commands/save.md +2 -2
- package/dist/claude-mem.min.js +116 -115
- package/package.json +1 -1
- package/src/commands/changelog.ts +28 -2
- package/src/prompts/templates/context/ContextTemplates.ts +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ 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.9] - 2025-09-14
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Display current date and time at the top of session-start hook output for better temporal context
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Enhanced session-start hook formatting with emoji icons and separator lines for improved readability
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.6.8] - 2025-09-14
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Fixed publish command failing when no version-related memories exist for changelog generation
|
|
21
|
+
|
|
22
|
+
|
|
8
23
|
## [3.6.6] - 2025-09-14
|
|
9
24
|
|
|
10
25
|
### Fixed
|
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"`
|