A high-performance RAM sharing system written in Go. A distributed memory pool that scales across nodes, allowing agents to sync state with microsecond latency.
Multiple devices donate local RAM to a shared cluster via gRPC. Accessible as a single unified memory pool.
Microsecond-speed fan-out for high-frequency agent interaction, powered by Go and Protobuf serialization.
Distributed vector indexing with FAISS. Enable agents to retrieve long-term context across the entire fabric.
Intelligent tiered memory. Automatically offload cold data to NVMe while keeping hot context in RAM.
Real-time visualization of the Distributed Shared Memory Fabric
pip install superbrain-sdknpm install superbrain-distributed-sdkgo get github.com/golightstep/superbrainSdkfrom superbrain import DistributedContextFabric
fabric = DistributedContextFabric()
ctx = fabric.attach_context("shared-v1")
# Write & Read across nodes
ctx.write("memory_ptr", "Agent State Data")
val = ctx.read("memory_ptr")Multi-agent state sharing at microsecond speeds across separate clusters.
Seamless memory symbiosis for low-latency state persistence.
| Version | Strategic Milestone | Engineering Status |
|---|---|---|
| v0.1.0 | Core Distributed RAM Engine | Shipped |
| v1.0.0 | Semantic Memory & FAISS Support | Shipped |
| v1.5.0 | Raft Consistency Evolution | Shipped |
| v2.0.0 | L1 Shared Memory Tiering | Shipped |