Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
### Added

- CLI: Add `pull` command to `robot_description` and cache it (thanks to @haixuantao)
- Description: Booster T1 (MJCF)
- Description: Booster T1 (URDF)
- Description: BamBot (URDF)
- Description: SO ARM 101 (MJCF) (thanks to @haixuantao)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ The DOF column denotes the number of actuated degrees of freedom.
| `atlas_v4_description` | Atlas v4 | Boston Dynamics | URDF | MIT |
| `berkeley_humanoid_description` | Berkeley Humanoid | Hybrid Robotics | URDF | BSD-3-Clause |
| `booster_t1_description` | Booster T1 | Booster Robotics | URDF | [Apache-2.0](https://github.com/BoosterRobotics/booster_gym/blob/687a33d08b08875fe45dc8d91b54db83766df8b9/LICENSE) |
| `booster_t1_mj_description` | Booster T1 | Booster Robotics | MJCF | [Apache-2.0](https://github.com/google-deepmind/mujoco_menagerie/blob/66384c6b8581c811a7b1eb63bcf4fa944fa43602/booster_t1/LICENSE) |
| `draco3_description` | Draco3 | Apptronik | URDF | BSD-2-Clause |
| `elf2_description` | Elf2 | BXI Robotics | URDF | [Apache-2.0](https://github.com/bxirobotics/robot_models/blob/eabe24ce937f8e633077a163b883e92e8996c36e/LICENSE) |
| `elf2_mj_description` | Elf2 | BXI Robotics | MJCF | [Apache-2.0](https://github.com/bxirobotics/robot_models/blob/eabe24ce937f8e633077a163b883e92e8996c36e/LICENSE) |
Expand Down
1 change: 1 addition & 0 deletions robot_descriptions/_descriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def has_urdf(self) -> bool:
),
"bolt_description": Description(Format.URDF, tags={"biped"}),
"booster_t1_description": Description(Format.URDF, tags={"humanoid"}),
"booster_t1_mj_description": Description(Format.MJCF, tags={"humanoid"}),
"cassie_description": Description(Format.URDF, tags={"biped"}),
"cassie_mj_description": Description(Format.MJCF, tags={"biped"}),
"cf2_description": Description(Format.URDF, tags={"drone"}),
Expand Down
2 changes: 1 addition & 1 deletion robot_descriptions/booster_t1_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2025 Inria

"""BamBot description."""
"""Booster T1 description."""

from os import getenv as _getenv
from os import path as _path
Expand Down
21 changes: 21 additions & 0 deletions robot_descriptions/booster_t1_mj_description.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# SPDX-License-Identifier: Apache-2.0
# Copyright 2025 Inria

"""Booster T1 MJCF description."""

from os import getenv as _getenv
from os import path as _path

from ._cache import clone_to_cache as _clone_to_cache

REPOSITORY_PATH: str = _clone_to_cache(
"mujoco_menagerie",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "booster_t1")

MJCF_PATH: str = _path.join(PACKAGE_PATH, "t1.xml")
Loading