Release v3.6.5

Published from npm package build
Source: https://github.com/thedotmack/claude-mem-source
This commit is contained in:
Alex Newman
2025-09-14 14:36:54 -04:00
parent 8ebcb55b0d
commit d01c2afaa6
5 changed files with 97 additions and 78 deletions
@@ -613,6 +613,14 @@ export function outputSessionStartContent(params: {
// Overview section at bottom with session grouping
if (overviews.length > 0) {
const sessionGroups = groupOverviewsBySession(overviews);
// Sort groups by timestamp, newest first
sessionGroups.sort((a, b) => {
const timeA = a.earliestTimestamp?.getTime() || 0;
const timeB = b.earliestTimestamp?.getTime() || 0;
return timeB - timeA; // Descending order (newest first)
});
console.log('');
console.log(wrapText('🧠 Overviews', width));