A CLI tool for accessing Menlo Robot.
sh -c "$(curl -fsSL https://raw.githubusercontent.com/menloresearch/cli/release/install.sh)"
Or build from source:
git clone https://github.com/menloresearch/cli
cd cli
go build -o menlo ./cmd/menlo# Initialize the CLI (sets up API key and default robot)
menlo init
# Or configure manually
menlo config apikey <your-api-key>
menlo config default-robot <robot-id>Initialize menlo with your API key and select a default robot.
menlo initManage robots.
menlo robot listmenlo robot status # Use default robot
menlo robot status --robot-id <robot-id> # Use specific robotmenlo robot action forward # Use default robot
menlo robot action left --robot-id <id> # Use specific robotAvailable actions:
forward- Move the robot forwardbackward- Move the robot backwardleft- Move the robot leftright- Move the robot rightturn-left- Turn the robot leftturn-right- Turn the robot right
menlo robot session # Use default robot
menlo robot session --robot-id <robot-id> # Use specific robotThis opens a LiveKit meet session with the robot, returning an SFU endpoint, WebRTC token, and a join URL.
Manage configuration.
menlo config apikey <your-api-key>menlo config apikeymenlo config default-robot <robot-id>Or interactively:
menlo config default-robotConfiguration is stored in:
- macOS:
~/Library/Application Support/menlo/config.yaml - Linux:
~/.config/menlo/config.yaml - Windows:
%APPDATA%\menlo\config.yaml
sh -c "$(curl -fsSL https://raw.githubusercontent.com/menloresearch/cli/release/uninstall.sh)"