()
| 277 | * Path format: {projectDir}/{sessionId}/session-memory/summary.md |
| 278 | */ |
| 279 | export function getSessionMemoryPath(): string { |
| 280 | return join(getSessionMemoryDir(), 'summary.md') |
| 281 | } |
| 282 | |
| 283 | // Check if file is within the session memory directory |
| 284 | function isSessionMemoryPath(absolutePath: string): boolean { |
no test coverage detected