What problem does it solve? The SKY-KING air traffic control system currently relies on polling, where each workstation queries the server every ~5 seconds for strips, transfers, zone assignments, and activity logs. This causes up to 5 seconds of delay between workstations and unnecessary database load. ## Core Features & Use Cases - Socket.io Architecture Blueprint: Provides a complete client-server event flow with rooms per workstation preset, covering strip updates, transfers, and zone assignments. - Event Catalog: Defines concrete Server-to-Client events (strip_updated, strip_created, transfer_incoming, zone_updated) and Client-to-Server events (join_workstation, leave_workstation) ready to implement. - Phased Migration Plan: Guides a gradual rollout—add WebSocket first, extend polling interval to 30s, then remove polling only after a week of stable operation. - Use Case: Before implementing real-time sync between control tower (TWR) and flight controller (CTRL) positions, activate this playbook to get the recommended Socket.io setup, code snippets for server.js and App.tsx, and safety rules. ## Quick Start Activate the realtime playbook before starting any work on cross-workstation synchronization to get the Socket.io migration plan and event definitions.