Skip to content

Commit 3c46bd7

Browse files
authored
Readme followup (#482)
## Summary Improve README.md --------- Signed-off-by: Clemens Volk <cvolk@nvidia.com>
1 parent 92e05c6 commit 3c46bd7

File tree

1 file changed

+32
-23
lines changed

1 file changed

+32
-23
lines changed

README.md

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
### Composable Environment Creation and Policy Evaluation for Robotics Simulation
66

7-
[![Pre-Alpha](https://img.shields.io/badge/status-pre--alpha-e8912d.svg)](#%EF%B8%8F-project-status)
8-
[![Version](https://img.shields.io/badge/version-0.1.x-blue.svg)](https://github.com/isaac-sim/IsaacLab-Arena/tree/release/0.1.1)
7+
[![Alpha](https://img.shields.io/badge/status-alpha-e8912d.svg)](#%EF%B8%8F-project-status)
8+
[![Version](https://img.shields.io/badge/version-0.2.x-blue.svg)](https://github.com/isaac-sim/IsaacLab-Arena/tree/main)
99
[![IsaacSim](https://img.shields.io/badge/IsaacSim-5.1.0-silver.svg)](https://docs.isaacsim.omniverse.nvidia.com/latest/index.html)
1010
[![IsaacLab](https://img.shields.io/badge/IsaacLab-2.3.0-silver.svg)](https://github.com/isaac-sim/IsaacLab)
1111
[![Python](https://img.shields.io/badge/python-≥3.10-blue.svg)](https://docs.python.org/3/whatsnew/3.10.html)
@@ -19,14 +19,18 @@
1919
---
2020

2121
> [!WARNING]
22-
> **Pre-Alpha Software — Not an Early Access or General Availability Release.**
23-
> Isaac Lab Arena `v0.1.x` is an early code release intended to give the community a practical starting point to experiment, provide feedback, and influence future design direction. APIs are unstable and will change. Features are incomplete. Documentation is evolving. **Do not use this in production.** See [Project Status](#%EF%B8%8F-project-status) for details.
22+
> **Alpha Software — Not an Early Access or General Availability Release.**
23+
> Isaac Lab Arena `v0.2.x` is an early code release intended to give the community a practical starting point to experiment, provide feedback, and influence future design direction. APIs are unstable and will change. Features are incomplete. Documentation is evolving. **Do not use this in production.** See [Project Status](#%EF%B8%8F-project-status) for details.
2424
25+
> [!NOTE]
26+
> Changes on `main` contains an in development version of v0.2.0.
27+
> As of March 16th 2026 (GTC San Jose 2026), `main` contains most of the features for the v0.2.0 release,
28+
> however, is based on Isaac Lab 2.3 (rather than Isaac Lab 3.0) and has not been SQA tested.*
2529
---
2630

2731
## Overview
2832

29-
**Isaac Lab Arena** is an open-source extension to [NVIDIA Isaac Lab](https://github.com/isaac-sim/IsaacLab) that simplifies the creation of large-scale task and environment libraries for robotic policy evaluation. Co-developed with [Lightwheel](https://www.lightwheel.ai/), it provides a composable architecture where environments are assembled on-the-fly from independent, reusable building blocks — eliminating the redundant boilerplate that plagues traditional task library development.
33+
**Isaac Lab Arena** is an open-source extension to [NVIDIA Isaac Lab](https://github.com/isaac-sim/IsaacLab) for simplified task curation and robotic policy evaluation at scale. It provides a composable architecture where environments are assembled on-the-fly from independent, reusable building blocks — eliminating the redundant boilerplate that plagues traditional task library development.
3034

3135
Instead of hand-writing and maintaining a separate configuration for every combination of robot, object, and scenario, Arena lets you **compose** environments from three independent primitives:
3236

@@ -50,13 +54,13 @@ Arena solves this by making environment variation a first-class concept. Swap an
5054

5155
## Key Features
5256

53-
- **Composable Environments** — Mix and match scenes, embodiments, and tasks independently
54-
- **On-the-fly Assembly** — Environments are built at runtime; no duplicate config files to maintain
55-
- **Asset Registry**Centralized management of robots, objects, and scenes with affordance annotations
56-
- **Integrated Evaluation**Built-in metrics and evaluation pipelines for policy benchmarking
57-
- **Teleoperation Support**Data collection via keyboard, VR, or other input devices
58-
- **GR00T Integration**First-class support for NVIDIA GR00T N policy training and evaluation
59-
- **LeRobot Hub** — Publish and share environments on the [Hugging Face LeRobot Environment Hub](https://huggingface.co/blog/nvidia/generalist-robotpolicy-eval-isaaclab-arena-lerobot)
57+
- **LEGO-like Composable Environments** — Mix and match scenes, embodiments, and tasks independently
58+
- **On-the-fly Assembly** — Environments are built at runtime; no duplicate config files to maintain.
59+
- **New Sequential Task Chaining**Chain atomic skills (e.g. Pick + Walk + Place + …) to create complex long-horizon tasks.
60+
- **New Natural Language Object Placement**Define scene layouts using semantic relationships like "on" or "next to", instead of manually specified coordinates.
61+
- **Integrated Evaluation**Extensible metrics and evaluation pipelines for policy benchmarking
62+
- **New Large-scale Parallel Evaluations with Heterogeneous Objects**Evaluate policy on multiple parallel environments, each with different objects, to maximize evaluation throughput.
63+
- **New RL Workflow Support and Seamless Interoperation with Isaac Lab: Plug Isaac Lab** - Arena environments into Isaac Lab workflows for Reinforcement learning and Data generation for imitation learning.
6064

6165
## Quick Start
6266

@@ -161,27 +165,32 @@ IsaacLab-Arena/
161165

162166
## ⚠️ Project Status
163167

164-
Isaac Lab Arena is in **pre-alpha** (`v0.1.x`). This is important to understand:
168+
Isaac Lab Arena is in **alpha** (`v0.2.x`). This is important to understand:
165169

166170
| What This Means | Details |
167171
|-----------------|---------|
168172
| **Not EA / GA** | This is not an Early Access or General Availability release. It is a very early community code drop. |
169173
| **APIs will break** | Public interfaces are under active development and will change without deprecation warnings. |
170-
| **Features are incomplete** | Core capabilities like natural-language object placement, composite task chaining, RL task setup, and heterogeneous parallel evaluation are planned but not yet implemented. |
171-
| **Docker-only install** | Source installation in a Docker container is the only supported method in `v0.1.x`. |
174+
| **Features are incomplete** | Core capabilities like agentic task generation, non-sequential long horizon tasks, easy-to-configure sensitivity analysis, enhanced heterogeneity across parallel evaluations and pip install support are planned but not yet implemented. |
175+
| **Docker-only install** | Source installation in a Docker container is the only supported method. |
172176
| **Limited testing** | The `main` branch contains the latest code but may not be fully tested. Use `release/0.1.1` for the most stable experience. |
173177

174178

175179
## Ecosystem
176180

177181
Isaac Lab Arena is part of a growing ecosystem of tools and benchmarks:
178182

179-
- **[Lightwheel RoboCasa Tasks](https://github.com/lightwheel-ai)** — 250+ open-source tasks built on Arena
180-
- **[Lightwheel LIBERO Tasks](https://github.com/lightwheel-ai)** — Adapted LIBERO benchmarks
181-
- **[LeRobot Environment Hub](https://huggingface.co/blog/nvidia/generalist-robotpolicy-eval-isaaclab-arena-lerobot)** — Share and discover Arena environments on Hugging Face
182-
- **[RoboTwin 2.0](https://robotwin-benchmark.github.io/dex-robot/)** — Extended simulation benchmarks using Arena
183-
- **[Isaac Lab Teleop](https://github.com/isaac-sim/IsaacLab)** — Demonstration collection
184-
- **[Isaac Lab Mimic](https://github.com/isaac-sim/IsaacLab)** — Synthetic data generation
183+
184+
NVIDIA and partners are building Industrial and academic benchmarks on the unified Isaac Lab-Arena core, so you can reuse building blocks (tasks, scenes, metrics, and datasets) for your custom evaluations.
185+
- **[Lightwheel RoboFinals](https://lightwheel.ai/robofinals)** — high fidelity industrial benchmarks.
186+
- **[Lightwheel RoboCasa Tasks](https://github.com/LightwheelAI/LW-BenchHub)** — 138+ open-source tasks, 50 datasets per task, 7+ robots.
187+
- **[Lightwheel LIBERO Tasks](https://github.com/LightwheelAI/LW-BenchHub)** — Adapted LIBERO benchmarks.
188+
- **[RoboTwin 2.0](https://github.com/RoboTwin-Platform/RoboTwin/tree/IsaacLab-Arena)** — Extended simulation benchmarks using Arena; [Arxiv](https://arxiv.org/abs/2603.01229).
189+
- **[LeRobot Environment Hub](https://huggingface.co/blog/nvidia/generalist-robotpolicy-eval-isaaclab-arena-lerobot)** — Share and discover Arena environments on Hugging Face.
190+
191+
192+
NIST Board 1, NVIDIA Isaac GR00T Industrial Benchmarks, NVIDIA DexBench, NVIDIA RoboLab, and more benchmarks are coming soon.
193+
185194

186195
## Contributing
187196

@@ -227,13 +236,13 @@ If you use Isaac Lab (the underlying framework), please also cite the [Isaac Lab
227236

228237
## Acknowledgements
229238

230-
Isaac Lab Arena is co-developed with [Lightwheel](https://www.lightwheel.ai/) and builds on [NVIDIA Isaac Lab](https://github.com/isaac-sim/IsaacLab). We thank the Isaac Lab team and the broader robotics community for their foundational work.
239+
Isaac Lab Arena builds on [NVIDIA Isaac Lab](https://github.com/isaac-sim/IsaacLab), with the evaluation and task layers designed in close collaboration with Lightwheel. We thank the Isaac Lab team and the broader robotics community for their foundational work.
231240

232241
---
233242

234243
<div align="center">
235244

236-
**Isaac Lab Arena** · Pre-Alpha · [Documentation](https://isaac-sim.github.io/IsaacLab-Arena/main/index.html) · [GitHub](https://github.com/isaac-sim/IsaacLab-Arena)
245+
**Isaac Lab Arena** · Alpha · [Documentation](https://isaac-sim.github.io/IsaacLab-Arena/main/index.html) · [GitHub](https://github.com/isaac-sim/IsaacLab-Arena)
237246

238247
Made with ❤️ by the NVIDIA Robotics Team
239248

0 commit comments

Comments
 (0)