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