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