(text, tmpFile)
| 66 | } |
| 67 | |
| 68 | function buildLinuxImagePrompt(text, tmpFile) { |
| 69 | const trimmedText = String(text || '').trim(); |
| 70 | const atPath = `@${toClaudeAtPath(tmpFile)}`; |
| 71 | return trimmedText ? `${trimmedText} ${atPath}` : atPath; |
| 72 | } |
| 73 | |
| 74 | function isLinuxClipboardToolInstalled(tool) { |
| 75 | try { |
no test coverage detected