A Conflict-Free Replicated Data Type (CRDT) is a data structure designed for distributed systems that can be updated concurrently by multiple agents without coordination, and whose state can always be merged deterministically. This property of strong eventual consistency ensures all replicas converge to the same value once they have all received the same set of updates, making CRDTs ideal for collaborative applications, distributed databases, and multi-agent system memory where low-latency writes are critical.
