diff --git a/README.md b/README.md
index bbc1a2d24e..c239b34976 100644
--- a/README.md
+++ b/README.md
@@ -43,11 +43,11 @@ Our goal is to provide an easy-to-install, modern framework for general robotics
- ROS and Native Watch video
+ SLAM, dynamic obstacle avoidance, route planning, and autonomous exploration — supported on native DimOS and ROS Watch video
|
- Detectors, 3d projections, VLMs, Audio processing Watch video
+ Detectors, 3d projections, VLMs, Audio processing
|
@@ -140,11 +140,34 @@ Now install the Python package.
Check the [hardware section](#hardware) above to choose the right `extras` and `blueprint` for your platform.
-**Use DimOS as a library / UI**
+**Quickstart**
```bash
-uv pip install dimos[your_hardware_platform]
-dimos run your_platform_blueprint
+# Install with Unitree support
+uv pip install dimos[base,unitree]
+
+# Replay a recorded Go2 session (no hardware needed)
+# NOTE: First run will show a black rerun window while ~2.4 GB downloads from LFS
+dimos --replay run unitree-go2
+```
+
+```bash
+# Install with simulation support
+uv pip install dimos[base,unitree,sim]
+
+# Run Go2 in MuJoCo simulation
+export DISPLAY=:1 # Or DISPLAY=:0 if getting GLFW/OpenGL X11 errors
+# ignore the warp warnings
+dimos --simulation run unitree-go2
+
+# Run G1 humanoid in simulation
+dimos --simulation run unitree-g1-sim
+```
+
+```bash
+# Control a real robot (Unitree Go2 over WebRTC)
+export ROBOT_IP=
+dimos run unitree-go2
```
**Develop DimOS**
@@ -159,8 +182,8 @@ source .venv/bin/activate
uv sync --all-extras
-# Play a recording of unitree go2 run
-dimos --replay run unitree-go2
+# Run in simulation
+dimos --simulation run unitree-g1-sim
```
### Step 3 - Profit