Research
ShieldVLA: Feasibility-Aware Safety Alignment for Vision-Language-Action Models
Overview Research Area: Robotics / Safe Reinforcement Learning / Vision-Language-Action (VLA) foundation models. Technical Level: Advanced. The paper assumes familiarity with constrained Markov decisi

- arXiv
- 2609.13231
- Published
- 2026-09-15
- Authors
- Manan Tayal, Akshay Nambi
AI summary
Overview
Research Area: Robotics / Safe Reinforcement Learning / Vision-Language-Action (VLA) foundation models.
Technical Level: Advanced. The paper assumes familiarity with constrained Markov decision processes, Lagrangian optimization, temporal-difference learning, and Hamilton-Jacobi reachability, though its central ideas are conceptually simple once the jargon is stripped away.
Scope: A fine-tuning framework that makes pretrained robotic VLA models safer by learning a feasibility-aware safety critic and using it to gate policy updates, rather than penalizing safety violations globally.
What This Paper Is About
Vision-Language-Action models can follow natural-language instructions and generalize across manipulation and navigation tasks, but they are trained purely for task performance and offer no guarantees about safety — a single collision or force-limit breach can be catastrophic. Existing safety approaches, chiefly Lagrangian penalties on expected cumulative cost, enforce safety only in expectation, suffer from oscillatory tuning dynamics, and bias policies toward excessive conservatism. ShieldVLA reframes safety from a global reward-cost trade-off into a per-state feasibility question: is safe continuation still possible from here, and if not, the policy should focus entirely on recovery.
Key Contributions
-
Feasibility-gated fine-tuning for VLAs. ShieldVLA learns a model-free Hamilton-Jacobi (HJ) reachability safety critic and uses it as a hard gate on policy optimization. Inside the estimated safe set, the policy receives the unmodified PPO reward gradient; near unsafe states, it receives a deterministic policy gradient that maximizes safety value. This replaces the persistent reward-cost trade-off of Lagrangian methods with a state-dependent switch.
-
Rubric-based VLM safety supervision. Rather than requiring hand-annotated per-step cost labels, the framework uses a frozen VLM to score each visual frame against a structured rubric (proximity, heading, contact, occlusion, clearance), producing a raw severity that is calibrated against a single per-episode binary safety label via Platt scaling. This yields dense per-frame margins from a weak episode-level signal.
-
Refinement-through-Differentiation (RTD). An offline loop scores a stratified set of poses, identifies disagreement pairs where a safe frame outranks an unsafe one, and asks a larger proposer VLM to invent a new rubric that would separate them — surfacing tail failure modes without per-platform re-engineering.
-
Empirical validation across five benchmarks. The method is evaluated on Dubins-VL, TurtleBot-Nav (OmniVLA), Safety-CHORES Nav and Fetch (SPOC-VLA), and Franka-Reach (OpenVLA-OFT), spanning multiple embodiments, observation modalities, and pretrained backbones.
Main Findings
-
Substantial safety improvement: ShieldVLA reduces cumulative safety cost by 57 percent on average across the five benchmarks and improves task success rate by +0.13 over SafeVLA, the strongest published baseline.
-
Pareto dominance in most environments: It pairs the lowest collision rates with the highest success rates in nearly all benchmarks — for example, TurtleBot-Nav success rises from 0.34 (SafeVLA) to 0.54 while cost falls from 14.6 to 6.90; Franka-Reach success rises from 0.34 to 0.45 while cost falls from 13.4 to 3.50.
-
Near-oracle performance without privileged information: On Dubins-VL, ShieldVLA matches the HJ (GT cost) oracle baseline's zero-safety-cost profile, despite the oracle having access to ground-truth signed distance. The oracle retains a higher success rate (0.38 vs 0.32), as expected.
-
Continuous rubric costs beat binary indicators: Replacing calibrated VLM rubric margins with a binary collision signal (ℓ = +1 safe, −5 on collision) collapses task performance on three of four environments — TurtleBot-Nav success drops from 0.54 to 0.31, Franka-Reach from 0.45 to 0.25. With no gradient away from the collision boundary, the gate fires too early and locks the policy out of the feasible interior.
-
Gating outperforms penalizing with the same critic: Holding the trained safety critic and rubric supervision fixed and swapping the gate for a Lagrangian-style penalty on TurtleBot-Nav degrades both axes (success 0.33 vs 0.54, cost 7.80 vs 6.90), isolating the gate itself as the source of the Pareto gain.
-
Graceful degradation under visual distribution shift: Under held-out color, lighting, and combined perturbations applied at test time with no adaptation, ShieldVLA holds the lowest cumulative safety cost in every environment-condition cell. On Safety-CHORES Nav its safety actually improves under perturbation (average Δ CSC = −0.49) while SafeVLA's degrades by +1.19. The mechanism: the HJ critic's value shrinks toward conservative estimates under uncertainty, firing the gate earlier and steering the policy into recovery before it drifts into unsafe regions.
-
Robustness to seed variance: Across three training seeds per environment, standard deviations are small relative to the gap over SafeVLA point estimates (e.g. Franka-Reach success 0.45 ± 0.03, cost 3.50 ± 0.74).
-
All safety claims are empirical, not formal. The classical HJ contraction guarantee does not transfer cleanly to the function-approximation, finite-data regime, and the calibrated rubric introduces a second error source on top of the critic.
Methodology in Plain English
The framework decomposes safe fine-tuning into three decoupled stages.
Stage one — turning images into safety margins. The researchers ask a frozen vision-language model to rate each visual frame against a short rubric set, with each rubric scored on an anchored 0-to-1 scale and weighted by hand-set integers. The weighted sum gives a raw severity score per frame. Because raw scores are uncalibrated and platform-specific, they fit a single logistic regression against the one cheap label they do have: a per-episode binary flag for whether anything unsafe happened. This calibration — two scalars — converts the severity into a signed margin that is positive on safe frames and negative on unsafe ones.
Stage two — learning what "safe" means. A separate safety critic network learns to estimate, for any observation-action pair, the worst-case discounted future safety margin. The training target uses a min-mixture Bellman backup: the safety value at a state is the minimum of the current margin and the best achievable continuation value. This critic trains off-policy from a shared replay buffer, running concurrently with the policy so it stays calibrated as the policy drifts during fine-tuning. This design matters because rare unsafe transitions are under-sampled by on-policy rollouts.
Stage three — gating the policy update. On each training transition, the critic is queried on the policy's mean action. If the value exceeds a noise buffer, the transition is treated as feasible and receives the standard PPO clipped-surrogate reward gradient — exactly the same gradient as unconstrained fine-tuning. If not, the transition receives a deterministic policy gradient that back-propagates through the critic's action input, pushing the policy's mean action toward higher safety value. A dual-ascent coefficient controls the strength of this push but only enters the loss on transitions the gate flags as unsafe. The gate itself is treated as a stop-gradient mask. The result is a single VLA policy deployed with no runtime shield.
Why This Matters
Impact on research. The paper reframes safe foundation-model fine-tuning away from the dominant Lagrangian paradigm that penalizes expected cumulative cost. By importing HJ reachability — a classical control-theoretic tool — into the fine-tuning loop rather than bolting it on as a test-time filter, it shows that feasibility reasoning can shape the learned policy itself. The rubric-based VLM supervision mechanism is also a transferable recipe: it demonstrates that a single per-episode binary label plus a structured VLM rubric can substitute for dense per-step cost annotations, which are the usual bottleneck in visual safe RL.
Real-world applications:
-
Household service robots. Manipulation tasks around fragile objects, sharp tools, or people require collision avoidance without making the robot so timid it fails the task; the paper's Safety-CHORES Fetch results target exactly this trade-off.
-
Industrial assembly and warehouse navigation. Force-limit breaches and hazardous-zone entry are irreversible failures, and the TurtleBot-Nav setting models cluttered indoor navigation with a realistic mobile platform.
-
Surgical and assistive robotics. Any deployment where proximity to a human is a hard constraint, and where a single recovery failure is unacceptable, benefits from a policy that reasons explicitly about whether safe continuation remains possible.
-
Autonomous vehicles and mobile robots. The Dubins car benchmark and the visual-perturbation robustness results speak directly to deployment under distribution shift, where lighting and color statistics change between training and field conditions.
Industry relevance. The entire stack — the scorer (Qwen3-VL-8B), the backbones (OpenVLA-OFT, OmniVLA, SPOC-VLA), and the training recipe — is open-weights, which lowers the barrier to adoption. The method requires no dynamics model, no per-step human annotation, and no runtime shielding, all of which are practical deployment blockers for safety-critical robotics. The demonstrated robustness to visual perturbation matters commercially because real deployments routinely face conditions that were absent from training data.
Future Directions
-
Physical robot validation. The most immediate next step named by the authors is sim-to-real transfer, using domain-adapted calibration for the VLM rubric so that safety margins remain meaningful on hardware.
-
Breaking the scorer capacity ceiling. VLM scorers below 8 billion parameters exhibit mode collapse on tail frames even with RTD-expanded rubrics, placing a practical floor on the supervisor. Scaling the scorer — or developing alternative calibration schemes — is an open problem.
-
Guaranteeing near-boundary exploration. The Bellman update can only learn the safe-set bound where transitions near the boundary are observed. Environments with very rare unsafe events make this difficult to ensure, and the paper offers no general solution.
-
Closing the formal-empirical gap. The findings rest on empirical evaluation rather than formal guarantees. Establishing bounds on the discrepancy between the rubric-induced safe set and the true safe set — currently only bounded on Dubins-VL via the ground-truth oracle row — would substantially strengthen the framework's safety claims.
-
Replacing hand-set rubric weights. The current rubric set uses manually assigned integer weights and platform-specific rubric templates. Automating weight selection or rubric design across heterogeneous embodiments remains open, though RTD is a partial step in that direction.
Target Audience
This paper is best suited to reinforcement learning and robotics researchers working on safe control, constrained policy optimization, or foundation-model fine-tuning, particularly those familiar with CMDPs and reachability analysis. It will also interest applied engineers building safety-critical robotic systems who need practical, label-efficient safety mechanisms rather than theoretical guarantees, and VLA researchers looking for post-training procedures that preserve task performance while enforcing operational constraints. Readers without a background in safe RL will need to work through the reachability framing, but the underlying design — separate safety from reward, gate rather than penalize — is accessible.
Authors’ abstract
Vision-Language-Action (VLA) models demonstrate strong generalization in robotic manipulation and navigation, but existing fine-tuning methods provide limited safety guarantees. Current approaches primarily rely on Lagrangian optimization that enforces safety through soft penalties on expected cumulative cost, often resulting in residual constraint violations or overly conservative behavior. Moreover, learning safety in visual domains is challenging due to the absence of dense per-step safety annotations. We propose ShieldVLA, a safety-aligned fine-tuning framework for VLA models based on Hamilton-Jacobi (HJ) reachability. ShieldVLA learns a model-free approximation of the HJ reachability value function directly from visual observations to estimate the safe operating region. The learned safety critic gates policy optimization by separating reward maximization within feasible regions from recovery near unsafe states, avoiding persistent reward-cost trade-offs. To enable scalable supervision in visual environments, we introduce rubric-based VLM safety scores that convert semantic safety feedback into structured critic targets without requiring manual cost labels. Across five navigation and manipulation benchmarks spanning multiple VLA backbones, ShieldVLA reduces cumulative safety cost by 57% on average and improves task success rate by +0.13 over SafeVLA.