Architects high-concurrency, sub-50ms latency synchronization between distributed clients and servers. Covers WebTransport (HTTP/3) bidirectional streaming, transactional outbox patterns for database-to-sync consistency, CRDTs for collaborative editing, and AI token stream orchestration.
Core principles: the database is the source of truth (real-time channels notify, not persist), CRDTs eliminate locking for concurrent edits, and backpressure management prevents UI jitter from high-frequency streams.
When to use: Real-time collaborative UIs, pub/sub messaging, WebTransport/WebSocket connections, live AI token streams, presence tracking, conflict resolution with CRDTs, multiplayer applications.
WebTransport, 게시/구독 메시징, CRDT 및 AI 스트림 오케스트레이션을 통한 짧은 지연 시간 동기화. 양방향 스트리밍, 트랜잭션 발신함 패턴, 시퀀스 추적 및 공동 편집을 다룹니다. 실시간 협업 UI 구축, 게시/구독 메시징 구현, WebTransport 또는 WebSocket 연결 처리, 라이브 AI 토큰 스트림 조정 또는 CRDT와의 충돌 해결 시 사용합니다. 출처: oakoss/agent-skills.