SkillAgentSearch skills...

Vuer

Vuer is a 3D visualization tool for robotics and VR applications.

Install / Use

/learn @vuer-ai/Vuer
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<h2>Vuer: An Event-Driven, Declarative Visualization Toolkit for GenAI and Robotics <br/> <img src="https://api.netlify.com/api/v1/badges/2df7f3ba-1a26-4047-b76a-d7401f907bb5/deploy-status" alt="Production"> <a href="https://pypi.org/project/vuer/"> <img src="https://img.shields.io/pypi/v/vuer.svg" alt="pypi"> </a> <a href="https://docs.vuer.ai"> <img src="https://readthedocs.org/projects/vuer-py/badge/?version=latest"> </a> </h2> <p> <strong><code>pip install vuer</code></strong> &nbsp;&nbsp;⬝&nbsp;&nbsp; <a href="https://docs.vuer.ai">docs</a> &nbsp;&nbsp;⬝&nbsp;&nbsp; <a href="#development">development</a> </p>

Vuer is a light-weight visualization toolkit for interacting with dynamic 3D and robotics data. It is VR and AR ready, and can be run on mobile devices.

Latest Updates

Installation

You can install vuer with pip:

pip install -U vuer

Here is an example that loads a URDF file and displays it in the browser. For more examples, see the the examples page.

from vuer import Vuer
from vuer.schemas import DefaultScene, Urdf, OrbitControls

app = Vuer()

@app.spawn(start=True)
async def main(sess):
    sess.set @ DefaultScene(
        Urdf(src="https://raw.githubusercontent.com/nasa-jpl/m2020-urdf-models/main/rover/m2020.urdf"),
        up=[0, 0, -1],  # Z-down coordinate system
        bgChildren=[OrbitControls(key="OrbitControls")]
    )

    await sess.forever()

Click for Live Demo

To get a quick overview of what you can do with vuer, check out the following:

  • browse the example gallery here
  • try the demo showing a Unitree Go1 robot in front of a staircase here

For more details:

Using Vuer with Claude Code

Vuer includes a Claude Code skill that teaches Claude how to use the library. To install:

/plugin marketplace add vuer-ai/vuer-skill
/plugin install vuer@vuer-ai-vuer-skill

See the full guide for details.

Examples

To run the examples, you'll need to download the required assets:

  1. Download vuer_doc_assets from this Google Drive link
  2. Unzip the downloaded file
  3. Place the vuer_doc_assets folder alongside the project directory and rename it to assets.
parent_directory/
├── vuer/                 # This project
│   ├── docs/
│   ├── vuer/
│   └── README.md
└── assets/      # Downloaded assets folder
  1. Run the examples:
cd docs/examples/meshes
python mesh_loading.py

Development

Setup

Using uv (recommended):

uv sync --group dev
source .venv/bin/activate

Using pip:

pip install -e '.[dev]'

Common Tasks

make docs     # Build documentation
make preview  # Build and live preview at http://localhost:8000/
make test     # Run tests
make clean    # Clean build artifacts

Contributing

We welcome contributions! See CONTRIBUTING.md for detailed guidelines on:

  • Setting up your development environment
  • Code quality standards (ruff formatting and linting)
  • Documentation workflow
  • Publishing releases

Running Vuer from the Browser

Vuer can run directly in the web browser via PyScript and Pyodide. To support this, server dependencies (websockets, aiohttp) are automatically excluded when platform_system == 'Emscripten'.

import micropip
await micropip.install("vuer")

from vuer.schemas import Scene, Box, Sphere, Urdf

This enables use cases like:

  • Building interactive 3D scene editors in the browser
  • Running Python-based scene generation in JupyterLite notebooks
  • Prototyping robotics visualizations without a local Python server

To Cite

@software{vuer,
  author = {Ge Yang},
  title = {{VUER}: An Event-Driven, Declarative Visualization Toolkit for GenAI and Robotics},
  version = {},
  publisher = {GitHub},
  url = {https://github.com/vuer-ai/vuer},
  year = {2025}
}

About Us

Vuer is built by researchers at MIT and UCSD in fields including robotics, computer vision, and computer graphics.

View on GitHub
GitHub Stars372
CategoryDevelopment
Updated8h ago
Forks22

Languages

Python

Security Score

100/100

Audited on Apr 10, 2026

No findings