()
| 228 | } |
| 229 | |
| 230 | export function getTranscriptPath(): string { |
| 231 | const projectDir = getSessionProjectDir() ?? getProjectDir(getOriginalCwd()) |
| 232 | return join(projectDir, `${getSessionId()}.jsonl`) |
| 233 | } |
| 234 | |
| 235 | export function getTranscriptPathForSession(sessionId: string): string { |
| 236 | // When asking for the CURRENT session's transcript, honor sessionProjectDir |
no test coverage detected