()
| 374 | * Path format: /tmp/claude-{uid}/{sanitized-cwd}/ |
| 375 | */ |
| 376 | export function getProjectTempDir(): string { |
| 377 | return join(getClaudeTempDir(), sanitizePath(getOriginalCwd())) + sep |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Returns the scratchpad directory path for the current session. |
no test coverage detected