()
| 89 | * Format: claude-<PID> |
| 90 | */ |
| 91 | export function getClaudeSocketName(): string { |
| 92 | if (!socketName) { |
| 93 | socketName = `${CLAUDE_SOCKET_PREFIX}-${process.pid}` |
| 94 | } |
| 95 | return socketName |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Gets the socket path if the socket has been initialized. |
no outgoing calls
no test coverage detected