Real-Time Analytics Overview This skill enables AI agents to build self-hosted, real-time analytics systems. It covers the full pipeline from event ingestion through storage to query and visualization, using ClickHouse as the analytical database for sub-second query performance at scale. Instructions Event Schema Design 1. Every event must have these base fields: - — LowCardinality(String) for efficient storage - — DateTime64(3) for millisecond precision - — String, client-generated UUID - — Nullable(String) for anonymous tracking - — LowCardinality(String): desktop, mobile, tablet - — LowCar…