#architecture

Wiki 9

  • Entity Component System Data-oriented architecture with entities as IDs, components as data, systems as bulk iterators
  • I Still Prefer MCP Over Skills Mohl on why MCP is for service access and Skills are for knowledge — the hybrid pattern
  • Kimi Delta Attention (KDA) DeltaNet linear attention derived from softmax attention up to KDA's per-key-channel forget gate
  • Kimi K3 Raschka on Moonshot's 2.8T open-weight K3 — LatentMoE, KDA, attention residuals, NoPE everywhere
  • LLMs are breaking 20-year-old system design Zknill on how stateful agents break the load-balancer-plus-database cloud-native assumption — the missing primitive is a routable transport name, and pub/sub channels fit
  • Matryoshka Isolation (Containers Inside VMs) The defense-in-depth pattern where each isolation layer trusts only the layer below — host kernel, VMM, guest kernel, container runtime, untrusted code
  • Mixture of Experts (MoE) Architecture where a router activates a small subset of "expert" subnetworks per token — splits total params from compute params and changes the local-inference economics
  • Stateful agent routing primitive The missing piece in cloud-native architecture for talking to a specific durable process — a routable transport name that isn't a server, well-fit to pub/sub channels
  • The Log is the Agent ActiveGraph inverts agent architecture — the event log is truth, the graph is a projection of it

Toolbox 1

  • ActiveGraph Event-sourced Python agent runtime where the graph is a replayable fold over an append-only log