A CLI tool for accessing Menlo Robot.
sh -c "$(curl -fsSL https://github.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 session # Use default robot
menlo robot session --robot-id <robot-id> # Use specific robotmenlo robot connect # Interactive selection
menlo robot connect <robot-id> # Set directlySame as menlo config default-robot. Sets the default robot for the CLI.
Manage configuration.
menlo config apikey <your-api-key>menlo config apikeymenlo config default-robot <robot-id>Or interactively:
menlo robot connectConfiguration is stored in:
~/.menlo/config.yaml
sh -c "$(curl -fsSL https://github.com/menloresearch/cli/release/uninstall.sh)"