Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

realtime-sync-pro实时同步专业版

Agent Skill

realtime-sync-pro 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

374

周安装

15

GitHub Stars

9

下载量

121
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:realtime-sync-pro(实时同步专业版)
来源仓库:https://github.com/yuniorglez/gemini-elite-core
仓库路径:skills/realtime-sync-pro
安装命令:
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill realtime-sync-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill realtime-sync-pro

简介

realtime-sync-pro 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,原始 SKILL.md 摘录未提供。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill: Realtime Sync Pro (Standard 2026)

Role: The Realtime Sync Pro is a specialized architect responsible for high-concurrency, sub-50ms latency synchronization between distributed clients and servers. In 2026, this role masters WebTransport (HTTP/3), Ably's transactional patterns, and the "Live-Feed" orchestration required for real-time AI agents and collaborative UIs.

🎯 Primary Objectives

  1. Extreme Low Latency: Achieving sub-50ms global synchronization using WebTransport and optimized Pub/Sub edge networks.
  2. Transactional Integrity: Implementing the "Transactional Outbox" pattern to ensure database and real-time state never drift.
  3. Conflict Resolution: Mastering CRDTs (Conflict-free Replicated Data Types) and Sequence IDs for multi-user collaboration.
  4. AI Stream Management: Orchestrating live LLM token streams and multimodal AI feedback in real-time UI.

🏗️ The 2026 Realtime Stack

1. Protocols & Transport

  • WebTransport (HTTP/3): The modern, bidirectional, multiplexed replacement for WebSockets.
  • Ably LiveSync: For guaranteed message delivery and sequence tracking.
  • gRPC-Web: For typed, high-performance service communication.

2. State & Sync Engines

  • CRDTs (Yjs / Automerge): For collaborative editing (Figma-style).
  • Transactional Outbox: Ensuring DB updates and Sync messages are atomic.
  • Presence APIs: Tracking user state and intent in real-time.

🛠️ Implementation Patterns

1. WebTransport Bidirectional Stream (2026 Standard)

Replacing legacy WebSockets with multiplexed, unreliable-datagram support for game-like responsiveness.

// 2026 Pattern: WebTransport Client
const transport = new WebTransport(serverUrl);
await transport.ready;

const stream = await transport.createBidirectionalStream();
const writer = stream.writable.getWriter();
const reader = stream.readable.getReader();

// Send high-frequency state updates via Datagrams (unreliable/fast)
const datagramWriter = transport.datagrams.writable.getWriter();
datagramWriter.write(new TextEncoder().encode(JSON.stringify(uiState)));

2. Transactional Outbox Pattern (Database-to-Sync)

Ensuring that a message is ONLY sent to the real-time channel if the database transaction succeeds.

-- Pattern: Outbox Table in PostgreSQL 18
BEGIN;
  UPDATE users SET status = 'online' WHERE id = 123;
  INSERT INTO realtime_outbox (channel, payload, sequence_id)
  VALUES ('user_status', '{"status": "online"}', uuid_generate_v7());
COMMIT;
-- A background worker (CDC) picks up the outbox and pushes to Ably/WebTransport

3. AI Stream Orchestration

Handling token-by-token updates without UI jitter.

// Frontend: React 19 + Realtime Stream
function LiveAIResponse({ channelId }) {
  const [tokens, setTokens] = useState("");

  useEffect(() => {
    const channel = ably.channels.get(channelId);
    channel.subscribe('token', (msg) => {
      // Use requestAnimationFrame to batch token rendering
      requestAnimationFrame(() => setTokens(prev => prev + msg.data));
    });
  }, [channelId]);
}

🚫 The "Do Not List" (Anti-Patterns)

  1. NEVER use real-time messages as the primary "Source of Truth" for state. State lives in the DB; realtime is the "Notification" of change.
  2. NEVER use JSON.stringify on high-frequency streams (100Hz+). Use Protocol Buffers or MessagePack.
  3. NEVER ignore "Sequence Drift." If a client misses message N, it must "Rewind" using Sequence IDs.
  4. NEVER implement "Global Locks" in real-time. Use Optimistic UI and CRDTs.

🛠️ Troubleshooting & Latency Audit

IssueLikely Cause2026 Corrective Action
High Latency (Spikes)Head-of-line blocking (TCP)Switch to WebTransport (UDP-based).
Out-of-Order DataRace conditions in async emitsImplement Sequence IDs and a "Re-order Buffer" on the client.
Zombies (Presence)Failed heartbeat cleanupUse "Epidemic Broadcast" protocols for robust presence.
UI JitterExcessive re-renders on syncImplement a "Buffer-and-Batch" strategy using useTransition.

📚 Reference Library


📊 Quality Metrics

  • Median Latency: < 50ms (Global Edge).
  • Message Delivery Guarantee: 99.999% (via Sequence IDs).
  • Connection Recovery Time: < 500ms after network swap.

🔄 Evolution from WebSockets to 2026

  • 2011-2022: WebSockets (Single TCP stream, head-of-line blocking).
  • 2023-2024: Server-Sent Events (SSE) for AI (One-way only).
  • 2025-2026: WebTransport (Multiplexed, UDP-based, unreliable datagrams + reliable streams).

End of Realtime Sync Pro Standard (v1.1.0)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.77%
按下载量换算41

Claude

30.98%
按下载量换算37

Cursor

19.89%
按下载量换算24

Gemini CLI

10.03%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills