()
| 382 | * Path format: /tmp/claude-{uid}/{sanitized-cwd}/{sessionId}/scratchpad/ |
| 383 | */ |
| 384 | export function getScratchpadDir(): string { |
| 385 | return join(getProjectTempDir(), getSessionId(), 'scratchpad') |
| 386 | } |
| 387 | |
| 388 | /** |
| 389 | * Ensures the scratchpad directory exists for the current session. |
no test coverage detected