Imagine you're cooking a complex recipe, but every time you look away from the counter, you forget what you've already added. Your options: either keep a running video of every step (expensive, slow to scan) or jot two sticky notes — one tracking what you've done so far, the other reminding you what the kitchen looked like before you started. MemBodied is the sticky-note strategy for robot control. The committed claim: a fixed-size, two-component episodic memory — an associative state updated at every policy call plus a frozen episode anchor capturing the initial scene — lets Vision-Language-Action models solve history-dependent manipulation tasks at 7.81× the success rate of stateless policies, 2.98× vanilla recurrent baselines, and 1.3× the strongest memory-augmented competitor, all with 10× fewer added parameters. This is not a new foundation model; it is a lightweight memory module bolted onto existing VLA architectures like π₀. The architecture family here is recurrent associative memory grafted onto a pretrained VLA backbone. The associative state functions like a modern Hopfield network variant — a fixed-dimensional tensor that accumulates interaction traces across policy steps without growing the input context. The episode anchor is simpler: a frozen embedding of the first observation, giving the model a stable reference frame. Both are injected as conditioning signals at each forward pass. The key hardware property this leans on is that memory size stays constant regardless of episode length, so inference latency does not degrade — a critical practical constraint for real-time robot control where every millisecond of policy inference matters. On the ladder, the paper is thorough. The stateless π₀ policy is the explicit named baseline, scoring 90.6% on LIBERO-Long (fully observable) versus MemBodied's 90.6% — wait, that's the same suite where MemBodied gets 90.6% as a 5.4-point improvement, meaning the stateless baseline is ~85.2%. The real action is on RMBench, a purpose-built suite of five memory-requiring tasks. Here the stateless policy averages roughly 7% success, vanilla recurrence ~19%, the best memory-augmented baseline ~43%, and MemBodied ~56%. These are meaningful gaps on genuinely hard tasks, but the absolute numbers — 56% success — remind you that history-dependent manipulation remains far from solved. Integrity is mixed-to-solid. RMBench is the authors' own benchmark, which introduces circularity risk — they designed the tasks and the solution. However, LIBERO-Long is a community benchmark, providing an independent check. The five RMBench tasks are described with enough specificity to be reproducible, and the comparison set includes multiple baselines (stateless, vanilla RNN, chunked context, prior memory-augmented methods). Code availability is not explicitly stated in the abstract. The 10× parameter-efficiency claim is a strong structural argument against the 'just throw more context at it' approach, but we don't see ablation details or error bars from the abstract alone. The milestone math is straightforward. At ~56% mean success on memory-dependent tasks, the next meaningful number is probably 80%+ success on RMBench-class tasks — the threshold where you'd trust a robot to reliably complete multi-step history-dependent manipulation in unstructured environments. The gap between 56% and 80% likely requires either better associative memory architectures, larger-scale VLA backbones, or both. Real-world deployment on history-dependent tasks (assembly lines, kitchen robots) probably needs 90%+ with robust failure recovery. The obvious experiment not run: real-robot evaluation. Everything here is in simulation (RMBench and LIBERO). The authors almost certainly didn't run real-robot experiments because (a) sim-to-real transfer for memory-dependent tasks is genuinely hard, and (b) the compute and logistics cost of running five distinct memory tasks on physical hardware is prohibitive for a single paper. This is the standard simulation-first strategy — build the method, prove it in sim, save real-robot transfer for the follow-up. Honest and common, but it means the headline numbers come with a sim-only asterisk.