()
| 200 | } |
| 201 | |
| 202 | export function getTranscriptPath(): string { |
| 203 | const projectDir = getSessionProjectDir() ?? getProjectDir(getOriginalCwd()) |
| 204 | return join(projectDir, `${getSessionId()}.jsonl`) |
| 205 | } |
| 206 | |
| 207 | export function getTranscriptPathForSession(sessionId: string): string { |
| 208 | // When asking for the CURRENT session's transcript, honor sessionProjectDir |
no test coverage detected