Imagine you're a chess engine that can perfectly predict what the board looks like after any move — but when asked to choose between two candidate moves from the same position, you shrug because both predictions look equally plausible. That's the core failure mode AD-WM targets. Latent world models trained purely on factual next-state prediction can nail reconstruction metrics while being nearly useless for the actual job: comparing alternative actions from the same starting state and picking the better one. The claim is clean and specific. The authors argue that world models used for model predictive control (MPC) need to preserve action-dependent differences in their latent space — not just minimize prediction error. They call this "counterfactual" discrimination: from one state, the model must represent how different actions lead to meaningfully different futures. Their method, AD-WM, adds two regularization heads during training — an inverse dynamics loss and a normalized action-recovery objective motivated by conditional mutual information — that force the latent dynamics to retain action information. Crucially, these heads are discarded at test time, so the planning algorithm itself is unchanged. The numbers are striking. On OGBench-Cube, the hardest manipulation benchmark they test, AD-WM lifts hard-start success from 3.7% to 52.0% over a matched LeWM baseline — a 14× improvement. Across five simulation environments, AD-WM improves mean success in four of five. And on a real Franka robot arm using a frozen V-JEPA 2 encoder with matched DROID post-training, zero-shot pick-and-place success jumps from 42.2% to 71.1% without any lab-specific adaptation. That last number matters: it suggests the action-discriminative property transfers across the sim-to-real gap. The architecture sits in the joint-embedding predictive architecture (JEPA) family — specifically building on Latent Embedding World Models (LeWM). The key structural addition is residual latent dynamics: instead of predicting the next latent state directly, the model predicts a residual that's added to the current state. This keeps the latent space anchored and makes the action-recovery regularization more effective. The planning layer uses Cross-Entropy Method (CEM), a standard sampling-based MPC approach. The paper leans on the V-JEPA 2 vision encoder for real-world transfer, which means it inherits that model's representation quality and compute footprint. The integrity picture is honest but bounded. The simulation benchmarks (OGBench) are community-standard, and the authors report results across five environments rather than cherry-picking the best one. They also run a revealing diagnostic: factual prediction error and whole-bank action ranking do NOT correlate with closed-loop success, whereas their CEM-aligned elite regret metric does. This is the kind of analysis that builds trust. The real-robot experiments are on their own Franka setup — not independently replicated — with 45 trials per condition. Code and videos are promised on the project page. The milestone question is where to push next. The current real-robot demonstration covers basic pick-and-place — a foundational manipulation task but not a complex multi-step one. The natural next threshold is multi-step sequential manipulation (pick → place → pick → place chains, or tasks requiring regrasp) with the same zero-shot transfer protocol. The gap between single-step and multi-step is where compounding errors in world models typically kill performance. The most conspicuous missing experiment is scaling to longer planning horizons and more complex manipulation sequences. The authors demonstrate single pick-and-place; they do not show multi-step tasks where the counterfactual discrimination advantage should compound. My honest read: this is partly a compute and lab-time constraint (real-robot experiments are expensive), but also likely being saved for the follow-up paper where multi-step results would be the headline.