()
| 267 | * Path format: {projectDir}/{sessionId}/session-memory/summary.md |
| 268 | */ |
| 269 | export function getSessionMemoryPath(): string { |
| 270 | return join(getSessionMemoryDir(), 'summary.md') |
| 271 | } |
| 272 | |
| 273 | // Check if file is within the session memory directory |
| 274 | function isSessionMemoryPath(absolutePath: string): boolean { |
no test coverage detected