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، ورسائل النشر/الفرعية، وCRDTs، وتنسيق تدفق AI. يغطي التدفق ثنائي الاتجاه، وأنماط صندوق الصادر للمعاملات، وتتبع التسلسل، والتحرير التعاوني. يُستخدم عند إنشاء واجهات مستخدم تعاونية في الوقت الفعلي، أو تنفيذ رسائل النشر/الفرعية، أو التعامل مع اتصالات WebTransport أو WebSocket، أو تنسيق تدفقات الرموز المميزة للذكاء الاصطناعي المباشرة، أو حل التعارضات مع CRDTs. المصدر: oakoss/agent-skills.