Imagine you're writing a long essay, and every time you get new feedback, you throw away the entire draft and start over from a blank page. That's how current World Action Models (WAMs) work for robot manipulation: at each replanning cycle, the joint video-action denoising process restarts from pure noise, even though most of the prediction horizon hasn't changed much. Rolling-WAM says: keep the half-finished paragraphs, only rewrite the next sentence from scratch. The committed claim is straightforward but practically important: by distributing diffusion denoising across successive replanning cycles instead of running the full process each time, you can achieve 4.5× steady-state replanning speedup with competitive task success rates. This is not a new model architecture — it's a scheduling trick applied to existing joint video-action diffusion models. The insight is that farther-future action-video chunks don't need to be fully denoised right now; they can ride along at higher noise levels and get progressively refined as the planning window slides forward. Mechanically, Rolling-WAM maintains a sliding window of video-action chunks at staggered noise levels. The imminent chunk gets fully denoised for immediate execution. Chunks further in the future sit at intermediate noise levels, partially refined from prior cycles. When new camera observations arrive and the window advances, retained chunks continue their denoising journey rather than being discarded. This is structurally similar to pipelining in processor design — you overlap stages of work that were previously done sequentially. The evaluation covers three benchmarks: LIBERO (a standard simulated manipulation suite), RoboTwin (another sim benchmark), and real-world experiments on a Unitree G1 humanoid robot. The paper reports competitive manipulation performance versus standard WAMs that denoise from scratch each cycle. The 4.5× speedup is specifically a steady-state number — the first cycle still pays full cost, but subsequent replanning cycles amortize computation because they inherit partially-denoised future chunks. The key comparison missing is against non-WAM baselines: how does this compare to action-only diffusion policies (no video prediction) that are inherently faster because they skip video generation entirely? The integrity picture is decent for a robotics paper under review. Three benchmark environments, including real hardware, is more than many WAM papers offer. However, the real-world experiments on the Unitree G1 are likely small-scale demonstrations rather than systematic evaluations with hundreds of trials. The paper does not appear to be pre-registered, and code availability at this stage (under review, project page exists) is a positive signal but not yet confirmed for full reproducibility. The bigger field question here is whether robots need to predict future video frames at all to act well, or whether visual prediction is expensive overhead that action-only models can skip. Rolling-WAM implicitly argues that video prediction is worth it — but makes the cost more tolerable through scheduling. The real test is whether the amortized cost of Rolling-WAM plus video prediction beats the simplicity of just predicting actions. The 4.5× speedup helps, but doesn't settle this. What would move the needle: scaling to longer horizons (where the amortization benefit grows), harder manipulation tasks where visual prediction demonstrably helps over action-only policies, and independent replication of the speedup claims on different hardware. The obvious experiment not run is a head-to-head against state-of-the-art action-only diffusion policies like Diffusion Policy or π₀ — likely because those comparisons would highlight that video prediction adds latency even with the rolling trick, and the paper's argument is about improving WAMs, not defending WAMs against alternatives.