Cover image

Blame the Blueprint: Why AI Risk Starts in the Architecture

AI risk reviews still tend to begin with comforting questions. Who is the responsible developer? What policy applies? What did the model output? Was the user allowed to ask that? Did the compliance team approve the deployment checklist? Useful questions, certainly. Also slightly late. Two recent arXiv papers point to a less convenient lesson: some AI risks are not merely produced by bad prompts, careless users, malicious deployment, or weak legal controls. They are produced by architecture. One paper shows this at the model-training layer, where Batch Normalization can amplify memorization of atypical samples and increase privacy leakage.1 The other shows it at the ecosystem layer, where decentralized AI can dissolve the very addressee that conventional governance assumes, forcing governance to move from policy instructions to protocol-level constraints.2 ...

May 31, 2026 · 16 min · Zelina
Cover image

Memory in the Machine: How SHIMI Makes Decentralized AI Smarter

TL;DR for operators Memory is becoming an operations problem, not just a model feature. Once multiple AI agents maintain local context, update independently, and need to coordinate without a central brain, the usual “throw it into a vector database and pray politely” approach starts to creak. SHIMI, short for Semantic Hierarchical Memory Index, proposes a different memory layer for decentralized agent systems.1 Instead of storing knowledge as a flat set of embedding vectors, it organizes memory as a hierarchy of semantic concepts. Retrieval works by descending from broad concepts to specific entities. Synchronization works by exchanging only the parts of local memory trees that have diverged, using Merkle-DAG summaries, Bloom filters, and CRDT-style merging. ...

April 9, 2025 · 17 min · Zelina