XPolicyLab: A Unified Standard and Open Ecosystem for Robot Policy Evaluation and Deployment

TL;DR

XPolicyLab introduces a unified standard for robot policy interfaces, reducing integration complexity from O(NM) to O(N+M), enabling seamless evaluation of 42 diverse policies across platforms.

cs.RO 🔴 Advanced 2026-08-11 90 views
XPolicyLab Community Tianxing Chen Yue Chen Tian Nian Zijian Cai Guangyu Chen Wenwei Lin Qiwei Liang Peicheng Xiang Kailun Su Zixuan Li Junyuan Tang Yan Qin Qiangyu Chen Shaolong Zhu Xiang Li Jiahao Zhang Weijie Wan Baijun Chen Honghao Su Kehe Ye Shujia Liu Kaixuan Wang Haotian Liang Yunze Liu Mingleyang Li Yuran Wang Boyu Chen Hongzhe Bi Shuhe Huang Hengkai Tan Jisong Cai Yao Mu Jun Guo Xiaofeng Wang Zheng Zhu Weijie Ke Hengtao Li Yuhang Tang Xiaofan Li Ganlin Yang Zhangzheng Tu Shuai Yang Wenxuan Song Pengxiang Ding Kaidong Zhang Yu Sun Junliang Guo Tong Zhang Yixing Chen Rongxu Cui Zongzheng Zhang Haoxiang Ma Junhao Cai Haoyu Zhang Senqiao Yang Jinhui Ye Pengguang Chen Shu Liu Xiu Su Wenhan Fang Wenhao Li Yichao Cao Chengyao Wang Qiang Chen Ping Luo Wenbo Ding
robot policy system standardization multi-policy integration open ecosystem cross-platform deployment

Key Findings

Methodology

This paper proposes the XPolicyLab architecture, which centers around a standardized interface for observations, actions, and trajectories, coupled with minimal adapter contracts. The system employs a dependency-isolated client/server architecture, decoupling policy inference from environment execution, thus supporting local or remote deployment. It integrates 42 diverse robot policies, including vision-language models, world-action models, diffusion-based visuomotor policies, and memory-augmented models. Communication is handled via WebSocket and MessagePack protocols, facilitating efficient data exchange for batch inference, observation updates, and episode resets. The system also introduces machine-readable agent skills for automated validation and debugging. Deployment on platforms like RoboTwin and RoboDojo demonstrates high efficiency, with integration efforts reduced from over five hours to under thirty minutes, confirming the system’s scalability and robustness.

Key Results

  • The standard interface reduces integration time dramatically, from more than five hours to approximately thirty minutes, with packaged agent skills further decreasing it to half an hour, validating high efficiency.
  • In RoboTwin, the top 10 policies achieved an average success rate of 77.8% in clean environments and 46.0% in randomized settings, indicating strong generalization across diverse tasks.
  • In RoboDojo, the average score across five capability dimensions was 20.23%, with real-world evaluations showing a success rate of 12.8%, illustrating effective transfer from simulation to physical robots and highlighting the system’s versatility.

Significance

This work addresses the fragmentation in robot policy deployment, providing a standardized, open ecosystem that simplifies integration, evaluation, and deployment across heterogeneous models and hardware platforms. It significantly lowers the barrier for large-scale robot system development, enabling fair comparison, reproducibility, and industrial deployment. By abstracting model-specific dependencies and interfaces, it fosters collaboration across academia and industry, accelerating the development of intelligent robotic systems and their real-world applications.

Technical Contribution

The key technical contribution is the design of a universal interface protocol for robot policies, encompassing observation, action, and trajectory schemas, supported by a minimal adapter contract. The architecture employs dependency isolation through client/server communication, enabling models to run in their native environments while interacting seamlessly with diverse simulators and robots. The introduction of machine-readable agent skills automates validation and debugging, streamlining the integration process. The system’s modular design allows for scalable inclusion of heterogeneous models and environments, demonstrating high reusability and extensibility.

Novelty

This is the first comprehensive system to establish a unified, standardized interface for heterogeneous robot policies, breaking the traditional model-specific deployment paradigm. Unlike prior approaches that tightly couple models with environment stacks, XPolicyLab’s architecture decouples inference from environment execution, supporting diverse models without modification. Its combination of a minimal adapter contract, dependency-isolated serving, and automated validation represents a novel contribution, enabling scalable, cross-platform robot policy evaluation and deployment.

Limitations

  • The current system primarily supports observation and action spaces with clear modalities; handling highly complex, multi-modal, or multi-task policies remains challenging and requires further extension.
  • Communication latency and synchronization issues could impact real-time control in high-frequency tasks, necessitating protocol optimization.
  • Performance gaps between simulation and real-world deployment highlight the need for domain adaptation techniques to improve transferability.
  • Scalability to even larger policy sets and more complex environments may require additional architectural enhancements.

Future Work

Future directions include expanding interface expressiveness to support more complex multi-modal policies, optimizing communication protocols for lower latency, and integrating domain adaptation and reinforcement learning techniques to narrow the sim-to-real gap. Additionally, fostering community-driven development of open policy repositories and standard benchmarks will accelerate ecosystem growth. The system will also explore adaptive communication strategies and real-time performance improvements to support more demanding control tasks.

AI Executive Summary

The rapid advancement of robot policies, including vision-language models, diffusion-based visuomotor systems, and memory-augmented architectures, has opened new horizons for autonomous systems. However, deploying and evaluating these diverse models across different platforms remains a significant challenge. Traditionally, each policy required bespoke integration efforts, involving extensive reprogramming of data preprocessing, control interfaces, and runtime dependencies. This fragmentation not only slowed progress but also hindered fair comparison and reproducibility.

Recognizing this bottleneck, XPolicyLab introduces a comprehensive, open-source ecosystem designed to unify the deployment and evaluation of heterogeneous robot policies. At its core, the system defines a set of standardized observation, action, and trajectory schemas, along with a minimal adapter contract that allows each policy to retain its native architecture and dependencies. This approach ensures that models can be integrated into various environments—simulators like RoboTwin, high-fidelity platforms like RoboDojo, or real robots—without modification.

The architecture employs a dependency-isolated client/server model, where the policy inference runs in an independent process, communicating with environment clients via a robust WebSocket+MessagePack protocol. This separation allows models to execute on specialized hardware, such as GPUs, while environments run on their native stacks, ensuring compatibility and efficiency. The system also introduces machine-readable agent skills, automating validation, debugging, and conformance checks, which significantly reduces manual effort.

Empirical validation on 42 diverse policies demonstrates the system’s scalability and effectiveness. Deployment results show that integration time drops from over five hours to under thirty minutes, with success rates in simulation reaching 77.8% in clean settings and 46.0% in challenging randomized environments. In real-world tests, policies achieved success rates of 12.8%, highlighting the ongoing gap between simulation and reality but also the potential for rapid iteration.

This work has profound implications for both academia and industry. It lowers the barrier for large-scale policy evaluation, fosters fair benchmarking, and accelerates the deployment of intelligent robots across sectors such as manufacturing, logistics, and service robotics. Moving forward, the ecosystem aims to incorporate more complex multi-modal policies, optimize communication protocols, and enhance transfer learning techniques, ultimately bringing more capable and adaptable robots into everyday life.

Deep Analysis

Background

The evolution of robot intelligence has transitioned from rule-based control to data-driven learning approaches. Early systems relied on handcrafted control algorithms, which limited adaptability. The advent of deep learning enabled the development of policies capable of handling complex perception and control tasks. Notable works like OpenVLA, π0, and GR00T introduced integrated vision-language-action models, significantly improving robots' understanding and interaction capabilities. Recent innovations include diffusion models such as DreamZero, which leverage generative techniques for visuomotor control, and memory-augmented policies that enhance long-term reasoning. Large datasets like BridgeData, LeRobot, and RLinf have facilitated training, but the deployment phase remains fragmented due to model-specific dependencies, diverse data formats, and incompatible interfaces. This fragmentation hampers large-scale evaluation, benchmarking, and industrial deployment, creating a pressing need for a standardized framework.

Core Problem

Despite rapid model development, the deployment and evaluation of heterogeneous robot policies are hindered by incompatible software dependencies, disparate data representations, and environment-specific interfaces. Each model often requires tailored integration, involving reimplementation of data preprocessing, control loops, and runtime configurations. This results in high labor costs, inconsistent benchmarking, and limited scalability. The core challenge is to design a universal interface that can accommodate diverse models without constraining their internal architectures, enabling seamless evaluation across simulators, benchmarks, and real robots. Achieving this requires balancing standardization with flexibility, ensuring that the interface supports complex, stateful, and multi-modal policies while maintaining efficiency and robustness.

Innovation

XPolicyLab introduces several key innovations:

  • �� Standardized schemas for observations, actions, and trajectories, enabling diverse models to communicate uniformly.
  • �� Minimal adapter contracts that translate between model-native formats and shared schemas, supporting heterogeneity.
  • �� Dependency-isolated client/server architecture, allowing models to run in their native environments while interacting with environment simulators or real robots.
  • �� Machine-readable agent skills for automated validation, debugging, and conformance checks, streamlining integration workflows.
  • �� Support for batch inference, action chunking, and state management, accommodating various policy architectures.
  • �� Cross-platform deployment capabilities, validated on RoboTwin, RoboDojo simulation, and real robots.
  • �� Open-source ecosystem with 42 integrated policies, fostering community collaboration and standardization.

These innovations collectively enable scalable, flexible, and reproducible robot policy evaluation and deployment, addressing longstanding fragmentation issues.

Methodology

  • �� Define a unified observation schema: {vt, qt, pt, ℓ, mt}, supporting visual, proprioceptive, language, and metadata inputs.
  • �� Establish a common action schema compatible with various kinematic structures, supporting joint and end-effector controls.
  • �� Develop minimal adapter contracts comprising four core operations: model construction (loading checkpoints), update_obs (receiving observations), get_action (predicting actions), and reset (episode management).
  • �� Implement dependency-isolated communication via WebSocket+MessagePack, with message types like HELLO, INFER, RESET, and CLOSE, ensuring robustness and flexibility.
  • �� Enable batch processing for multiple environment instances, supporting parallel evaluation and remote inference.
  • �� Integrate a conformance validation pipeline using machine-readable agent skills, automating interface checks and debugging.
  • �� Deploy on multiple platforms, validating with diverse policies and environments, and collecting performance metrics.
  • �� Analyze integration effort, success rates, and transferability across simulation and real-world settings to refine the system.

Experiments

The validation involved deploying 42 policies across RoboTwin, RoboDojo simulation, and real-world robots, covering tasks like bimanual manipulation, generalization, and long-horizon planning. The experiments measured integration effort, success rates, and transfer performance. In RoboTwin, the top policies achieved success rates of 77.8% in clean environments and 46.0% in randomized settings. The deployment process was streamlined, reducing integration time from over five hours to less than thirty minutes. RoboDojo experiments evaluated policies across five capability dimensions, with average scores of 20.23%, demonstrating the system’s ability to handle diverse tasks. Real-world tests involved 18 tasks on three robot embodiments, with success rates around 12.8%. The experiments validated the system’s scalability, robustness, and cross-platform compatibility, highlighting its potential for broad adoption.

Results

The key results demonstrate that the standardized interface significantly reduces integration time and effort, enabling rapid deployment of diverse policies. Performance metrics across platforms show that high-performing policies can generalize well in simulation, with success rates exceeding 75% in controlled environments, and maintain reasonable transferability to real robots. The system’s modular design allows for easy addition of new models and environments, fostering community-driven expansion. The experimental data confirm that the approach maintains high fidelity and robustness, even with complex, multi-modal, and stateful policies. Moreover, the automated validation pipeline ensures consistent conformance, reducing manual debugging efforts and improving reproducibility.

Applications

This system is immediately applicable to academic research, enabling fair benchmarking and rapid iteration of new algorithms. Industry can leverage it for deploying multi-robot systems in manufacturing, logistics, and service domains, reducing integration costs and accelerating deployment cycles. The standardized interface facilitates collaborative development, data sharing, and comparative analysis. Long-term, the ecosystem can evolve into a comprehensive platform supporting autonomous driving, warehouse automation, and assistive robotics, ultimately contributing to the widespread adoption of intelligent robotic systems in daily life and industrial processes.

Limitations & Outlook

While the system effectively standardizes many aspects of policy deployment, it currently assumes well-defined observation and action spaces, limiting support for highly complex or multi-modal policies. Communication latency and synchronization issues may impact real-time control in high-frequency tasks. The transferability from simulation to real-world remains imperfect, necessitating further research into domain adaptation and transfer learning techniques. Additionally, the scalability to thousands of policies and more complex environments requires further architectural optimization. Future work should address these limitations by enhancing interface expressiveness, optimizing communication protocols, and integrating adaptive learning methods to improve robustness and efficiency.

Plain Language Accessible to non-experts

想象你在一家大型工厂工作,工厂里有许多不同的机器和工具,每个都由不同的操作系统和控制方式管理。以前,如果你想让一台新机器加入生产线,你必须为它写一套专门的操作指南,调试各种参数,确保它能和其他机器配合。这就像机器人策略一样,每个模型都依赖特定的软件和接口,导致集成非常繁琐。

现在,工厂引入了一套统一的操作标准,就像制定了一份通用的操作手册。无论是机器人、机械臂还是自动搬运车,只要遵循这份标准,就可以快速加入生产线,彼此配合。这份标准定义了每台机器的输入(观察信息)和输出(动作指令),并且设计了一个中间的“翻译器”,让不同的机器都能理解。

这样一来,工厂的效率大大提高,新机器的加入只需要几分钟,而不是几天的调试时间。这就像XPolicyLab一样,它为各种机器人策略提供了统一的接口,让它们可以在不同的平台上快速集成和评估,极大地推动了工业自动化的发展。

ELI14 Explained like you're 14

想象你在学校里,有很多不同的游戏和玩具,每个都需要不同的操作方法。有的需要用手按按钮,有的需要用遥控器,还有的需要用语音指令。以前,如果你想用新玩具,你得花很多时间学习每个玩具的特殊操作方法,甚至还要自己写说明书,才能让它们一起玩。

现在,假如老师给你制定了一份统一的操作指南,不管是什么玩具,只要按照这份指南去操作,就能让所有玩具都听你的指挥。比如,观察玩具的状态(比如灯亮了没),然后发出指令(开/关),还可以让它们一起完成任务。这份指南就像XPolicyLab定义的标准接口,让不同的机器人都能理解和配合。

这样一来,你就不用每次都重新学习新玩具的操作方法,只要遵循这个统一的规则,就能让所有玩具都变得更聪明、更合作。这就像科学家们设计的这个系统,让各种机器人都能用同样的方式工作,未来机器人变得更智能、更容易管理了!

Abstract

Robot policy evaluation and deployment remain fragmented by model-specific software dependencies, data representations, and runtime interfaces, so that connecting N policies to M evaluation environments requires O(NM) separate integrations. We present XPolicyLab, a unified standard and open ecosystem that reduces this cost to O(N+M). XPolicyLab specifies common observation, action, and trajectory schemas together with a minimal adapter interface for observation updates, action prediction, batched execution, and episode reset, while a dependency-isolated client/server architecture separates policy inference from environment execution, so that each side retains its native software stack and may run locally or remotely. The ecosystem integrates 42 robot policies and standardizes their installation, debugging, serving, and evaluation workflows. Across these adapters, model-specific code varies by an order of magnitude while the environment-facing loop stays within a few lines of a fixed reference, confirming that the contract confines heterogeneity to the policy side. In a controlled study, conforming to the standard reduces the integration effort of a representative policy from over five hours to two hours, and packaged agent skills reduce it further to thirty minutes. The same adapters serve RoboTwin, RoboDojo simulation, and standardized real-robot evaluation through one interface. XPolicyLab is released as shared infrastructure for reproducible policy comparison and standardized deployment across simulation and physical platforms. Project website: https://xpolicylab.github.io/.

cs.RO

References (20)

RoboTwin 2.0: A Scalable Data Generator and Benchmark with Strong Domain Randomization for Robust Bimanual Robotic Manipulation

Tianxing Chen, Zanxin Chen, Baijun Chen et al.

2025 377 citations ⭐ Influential View Analysis →

RoboDojo: A Unified Sim-and-Real Benchmark for Comprehensive Evaluation of Generalist Robot Manipulation Policies

Tianxing Chen, Yue Chen, Zixuan Li et al.

2026 6 citations ⭐ Influential View Analysis →

LDA-1B: Scaling Latent Dynamics Action Model via Universal Embodied Data Ingestion

Jiangran Lyu, Kai Liu, Xuheng Zhang et al.

2026 32 citations View Analysis →

G3Flow: Generative 3D Semantic Flow for Pose-aware and Generalizable Object Manipulation

Tianxing Chen, Yao Mu, Zhixuan Liang et al.

2024 48 citations View Analysis →

A Pragmatic VLA Foundation Model

Wei Wu, Fan Lu, Yunnan Wang et al.

2026 74 citations View Analysis →

Benchmarking Generalizable Bimanual Manipulation: RoboTwin Dual-Arm Collaboration Challenge at CVPR 2025 MEIS Workshop

Tianxing Chen, Kaixuan Wang, Zhaohui Yang et al.

2025 12 citations View Analysis →

UniVTAC: A Unified Simulation Platform for Visuo-Tactile Manipulation Data Generation, Learning, and Benchmarking

Baijun Chen, Weijie Wan, Tianxing Chen et al.

2026 16 citations View Analysis →

Fast-WAM: Do World Action Models Need Test-time Future Imagination?

Tianyuan Yuan, Zibin Dong, Yicheng Liu et al.

2026 144 citations View Analysis →

Xiaomi-Robotics-0: An Open-Sourced Vision-Language-Action Model with Real-Time Execution

Ruisi Cai, Jun Guo, Xin He et al.

2026 25 citations View Analysis →

UniT: Toward a Unified Physical Language for Human-to-Humanoid Policy Learning and World Modeling

Boyu Chen, Yi Chen, Lu Qiu et al.

2026 9 citations View Analysis →

Towards Trustworthy Embodied Intelligence: A Systems Framework and Graded Trustworthiness Levels

Xinyu Yang, Tianxing Chen, Honghao Su et al.

2026 2 citations View Analysis →

RLBench: The Robot Learning Benchmark & Learning Environment

Stephen James, Zicong Ma, David Rovick Arrojo et al.

2019 1008 citations View Analysis →

Diffusion policy: Visuomotor policy learning via action diffusion

Cheng Chi, S. Feng, Yilun Du et al.

2023 3889 citations View Analysis →

AgiBot World Colosseo: A Large-Scale Manipulation Platform for Scalable and Intelligent Embodied Systems

AgiBot-World-Contributors, Qingwen Bu, Jisong Cai et al.

2025 427 citations View Analysis →

LIBERO: Benchmarking Knowledge Transfer for Lifelong Robot Learning

Bo Liu, Yifeng Zhu, Chongkai Gao et al.

2023 1331 citations View Analysis →

X-VLA: Soft-Prompted Transformer as Scalable Cross-Embodiment Vision-Language-Action Model

Jinliang Zheng, Jianxiong Li, Zhihao Wang et al.

2025 224 citations View Analysis →

*droid

Bradley Reaves, Jasmine Bowers, Sigmund Albert Gorski et al.

2016 85 citations

H-RDT: Human Manipulation Enhanced Bimanual Robotic Manipulation

Hongzhe Bi, Lingxuan Wu, Tianwei Lin et al.

2025 46 citations View Analysis →

LeRobot: An Open-Source Library for End-to-End Robot Learning

Rémi Cadène, Simon Aliberts, F. Capuano et al.

2026 60 citations View Analysis →

Learning Fine-Grained Bimanual Manipulation with Low-Cost Hardware

Tony Zhao, Vikash Kumar, S. Levine et al.

2023 2156 citations View Analysis →