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.
Sincronizzazione a bassa latenza con WebTransport, messaggistica pub/sub, CRDT e orchestrazione del flusso AI. Copre lo streaming bidirezionale, i modelli di posta in uscita transazionale, il monitoraggio delle sequenze e l'editing collaborativo. Da utilizzare durante la creazione di interfacce utente collaborative in tempo reale, l'implementazione della messaggistica pub/sub, la gestione di connessioni WebTransport o WebSocket, l'orchestrazione di flussi di token AI in tempo reale o la risoluzione di conflitti con CRDT. Fonte: oakoss/agent-skills.