Release v3.6.9

Published from npm package build
Source: https://github.com/thedotmack/claude-mem-source
This commit is contained in:
Alex Newman
2025-09-14 23:57:39 -04:00
parent 4ebf0cad6b
commit 2601215c91
4 changed files with 93 additions and 68 deletions
+9
View File
@@ -5,6 +5,15 @@ 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/).
## [3.6.9] - 2025-09-14
### Added
- Display current date and time at the top of session-start hook output for better temporal context
### Changed
- Enhanced session-start hook formatting with emoji icons and separator lines for improved readability
## [3.6.8] - 2025-09-14
### Fixed
+67 -67
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "claude-mem",
"version": "3.6.8",
"version": "3.6.9",
"description": "Memory compression system for Claude Code - persist context across sessions",
"keywords": [
"claude",
@@ -559,6 +559,22 @@ export function outputSessionStartContent(params: {
const { projectName, memoryCount, lastSessionTime, recentObjects } = params;
const width = getWrapWidth();
// Start with current date and time at the top
const now = new Date();
const dateTimeFormatted = now.toLocaleString('en-US', {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
hour: '2-digit',
minute: '2-digit',
timeZoneName: 'short',
});
console.log('');
console.log(wrapText(`📅 ${dateTimeFormatted}`, width));
console.log(makeLine('─', width));
// Extract overviews for user display - get more to show session grouping
const overviews = extractOverviews(recentObjects, 10, projectName);