Context
The orb connects to the brain via WebSocket. If the connection drops, the orb should reconnect automatically with exponential backoff.
What to do
Implement reconnection logic in the orb's WebSocket client:
- Detect disconnection
- Retry with exponential backoff (1s, 2s, 4s, 8s, max 30s)
- Show connection status in the UI
Files to modify
orb/src/ (WebSocket client)
Difficulty: Medium
Context
The orb connects to the brain via WebSocket. If the connection drops, the orb should reconnect automatically with exponential backoff.
What to do
Implement reconnection logic in the orb's WebSocket client:
Files to modify
orb/src/(WebSocket client)Difficulty: Medium