memory-core: checkpoint session transcript dreaming ingestion

This commit is contained in:
Vignesh Natarajan
2026-04-06 18:17:32 -07:00
committed by Vignesh
parent f0ba7b95da
commit 695176542f
5 changed files with 649 additions and 0 deletions

View File

@@ -177,6 +177,13 @@ function isShortTermMemoryPath(filePath: string): boolean {
if (/(?:^|\/)memory\/(\d{4})-(\d{2})-(\d{2})\.md$/.test(normalized)) {
return true;
}
if (
/(?:^|\/)memory\/\.dreams\/session-corpus\/(\d{4})-(\d{2})-(\d{2})\.(?:md|txt)$/.test(
normalized,
)
) {
return true;
}
return /^(\d{4})-(\d{2})-(\d{2})\.md$/.test(normalized);
}