Views
No views yet
release 3.0.0-beta2env_isaaclab1# e.g.
2source <your_path_to>/env_isaaclab/bin/activate
3
4## e.g.
5# source /home/yizhou/Projects/IsaacLab/env_isaaclab/bin/activate
61
2# install
3python -m pip install -e .
4
5## or
6# uv pip install -e .python scripts/list_envs.pypython scripts/zero_agent.py --task Template-Sdg-Mimic-Gen-v0 --viz kit1ln -s /path/to/dexmimicgen_custom_assets ./custom_assets
2
3## e.g.
4# ln -s /home/yizhou/Downloads/dexmimicgen_custom_assets ./custom_assets1# From PyPI
2pip install 'isaacteleop[cloudxr,retargeters]~=1.3.131' --extra-index-url https://pypi.nvidia.compython -m isaacteleop.cloudxr --accept-eula1source ~/.cloudxr/run/cloudxr.env
2## e.g.
3# source /home/yizhou/.cloudxr/run/cloudxr.env1python scripts/teleop_se3_agent_bimanual_xr.py \
2 --task Template-YAM-Play-v0 \
3 --teleop_device motion_controllers \
4 --enable_cameras \
5 --viz kit \
6 --num_envs 1 \
7 --enable_gripper \
8 --xr
9
10# python scripts/teleop_se3_agent_bimanual_xr.py \
11# --task Template-UR10-Play-v0 \
12# --teleop_device motion_controllers \
13# --enable_cameras \
14# --viz kit \
15# --num_envs 1 \
16# --xr \
17# --reverse_rotation_yz
1export ROBOTWIN_USD=./robotwin_usd
2export OMNI_KIT_ACCEPT_EULA=YES
3
4python scripts/yam_task.py --list
5python scripts/yam_task.py --task grape_box --seed 3 --video outputs/tasks/grape_box.mp4 \
6 --kit_args="--/rtx/verifyDriverVersion/enabled=false"
7
8python scripts/generate.py --tasks passing --episodes 100 # scale up to a datasetsource/bimanual/yam/
motion/ how the robot MOVES arm.py · planner.py · recorder.py
envs/ the world a task runs in base_env.py · scene.py · config.py
solvers/ scripted skills pick_place · multi_pick · insert · stack · dual_lift ·
push · handover · tool_use · pour · pull · sort ·
shelf · articulate · rope
tasks/ ONE FILE PER TASK, registered by name; configs/ one YAML each
registry.py · conditions.py
scripts/ runners · asset converters · generation · verificationdoc/capabilities.md | what the suite supports — skill families, randomization, articulations |
doc/setup.md | environment, configuration, running a task |
doc/generation.md | scaling up to a demonstration dataset |
doc/tasks.md | all 30 tasks, current pass/fail, and how they differ from RoboTwin's |
doc/assets.md | asset conversion pipeline and licence |
doc/verification.md | agent-in-the-loop visual verification |
DIAGNOSTICS.md | every non-obvious failure and the measurement that settled it — read this before debugging a new asset |
source/bimanual/yam/README.md | architecture and how to write a task |