Feedback remote session spawning
When Justin says "BootUpAutoRemote", spawn a new remote-control session and return the URL.
Method (tmux capture-pane does NOT work — Claude TUI doesn't render to it):
1. Start claude in a new tmux session: tmux new-session -s "$name" -d then tmux send-keys "claude --dangerously-skip-permissions" Enter
2. Wait for session file to appear in ~/.claude/sessions/ (~5-10s)
3. Send /remote-control: tmux send-keys -t "$name" "/remote-control" Enter
4. Poll the session JSON file for bridgeSessionId — the URL is https://claude.ai/code/<bridgeSessionId>
Why: Justin's workflow from mobile (Terminus + Tailscale SSH) requires multiple steps. From an existing Claude session, we can do it all automatically. The key discovery: tmux capture-pane can't read Claude's TUI, but the session file at ~/.claude/sessions/<pid>.json contains the bridgeSessionId after /remote-control is activated.
How to apply: When Justin says "BootUpAutoRemote" — run the steps above and return the URL. No confirmation needed, no extra commentary. Also useful: tmux list-sessions to see what's running, tmux kill-session -t <name> to clean up.