MobilityInterface gives you direct control over the robot base—rotation, velocity commands, and movement. Use it for custom navigation behaviors that complement the built-in navigation.
Core Navigation (Built-in)
The robot comes with built-in navigation that the agent calls innately. You don’t need to implement this—it works out of the box. Do not modify the corenavigate_to_position skill. It’s a system-level skill that the agent uses automatically. Modifying it could break navigation behavior.
When you tell the robot “go to the kitchen,” the agent automatically:
- Translates “kitchen” to map coordinates (if the location is saved)
- Calls the built-in navigation skill
- Monitors progress and handles obstacles

