| 183 | // Renders immediately so the terminal doesn't appear hung during the |
| 184 | // multi-second teleportToRemote round-trip. |
| 185 | function buildLaunchMessage(disconnectedBridge?: boolean): string { |
| 186 | const prefix = disconnectedBridge ? `${REMOTE_CONTROL_DISCONNECTED_MSG} ` : ''; |
| 187 | return `${DIAMOND_OPEN} ultraplan\n${prefix}Starting Claude Code on the web…`; |
| 188 | } |
| 189 | function buildSessionReadyMessage(url: string): string { |
| 190 | return `${DIAMOND_OPEN} ultraplan · Monitor progress in Claude Code on the web ${url}\nYou can continue working — when the ${DIAMOND_OPEN} fills, press ↓ to view results`; |
| 191 | } |