Trend

Robot policy work is being judged by executable grounding

Day · 2026-06-02 · Embodied AI

The day’s robotics papers focus on making Vision-Language-Action (VLA) policies execute reliably under real deployment conditions. ERVLA, GeoAlign, and TTT-VLA show the clearest pattern: performance depends on action-grounded signals that match the robot’s state, geometry, and task phase.

Geometry-aware action prediction

GeoAlign and GeoSem-WAM both treat geometry as a control signal, not just a perception side channel. GeoAlign derives geometry features from RGB, lets the robot state query local spatial features, and feeds compact geometry tokens into the action decoder. It reports 99.0% average success on LIBERO and 78.8% on eight real ALOHA tasks, with large gains on transparent bottles and tape-roll insertion.

GeoSem-WAM applies the same pressure to World Action Models (WAMs), which learn predictive latent states for action. It trains on future RGB, geometry, and semantic maps, then removes the dense prediction heads at deployment. The reported real Franka success rises to 95.4% compared with 88.9% for Fast-WAM, and LIBERO ablations show gains when geometry and semantic supervision are combined.

Action-grounded reasoning supervision

ERVLA gives embodied chain-of-thought (CoT) a narrow role: it supervises training and can be absent as visible text during inference. The paper’s ablations make the point concrete. High-level fields such as goal, planning, subtask, and reasoning alone hurt or barely help without pretraining. Movement descriptions and point trajectories add more value, and the full embodied CoT setup gives an 8.2-point gain in that setting.

The scaling result is also practical. Under an autoregressive CoT-prefix setup, adding larger robot datasets reduces VLABench performance across several tracks. ERVLA avoids requiring generated reasoning before action tokens and reports 86.9% average success on LIBERO-Plus and 53.2% on VLABench.

Deployment-time adaptation and phase-aware memory

Two papers target failures that appear after a policy leaves its original training setup. TTT-VLA freezes the VLA backbone and updates only latent prompt tokens using a self-supervised state-grounding loss. On SimplerEnv WidowX tasks, mean success rises to 67.4% after test-time prompt optimization, compared with 51.1% for the π0.5 base policy.

PHASER addresses continual learning. It stores and replays manipulation phases such as approach, grasp, and transport, so short contact-heavy phases get protected memory. On LIBERO-Long with OpenVLA-OFT-7B, PHASER reports 85.8% average success rate, compared with 54.6% for standard experience replay.

Real-world access and safety constraints

Several papers widen the evaluation lens beyond benchmark policy scores. OpenEAI-Platform lowers the hardware barrier with a $790 open 6+1 DoF arm and a Qwen3-VL-4B-based VLA policy trained on public robot and multimodal data. EaDex uses one RGB-D camera to collect low-cost human hand demonstrations and retargets them across three dexterous robot hands, raising average success on its custom tasks to 36.5% with demonstration annealing.

Safety evidence is already appearing alongside access work. A partially observable adversarial patch attack learns one fixed patch from a short observed rollout prefix and applies it to the unseen future of the task. On LIBERO with OpenVLA victims, attack success at K=30 reaches 90.7% on Object and 86.6% on Long, above the listed baselines in those settings.

NewerAgent work is being judged by complete loops, visible failures, and auditable evidenceOlderEvidence-rich control loops are the center of agentic coding work