Command Line Interface (CLI)

The Space Robotics Bench provides a comprehensive command-line interface that allows you to interact with most aspects of the framework through a unified interface. The CLI is structured as a set of subcommands, each with its own set of options.

srb <subcommand> [options]

If you need help with a specific subcommand, you can use the -h/--help flag:

srb --help
srb <subcommand> -h

You can also TAB your way through the available subcommands and options via autocompletion:

srb <TAB> <TAB>

Subcommands

The following subcommands are available in the CLI:

SubcommandDescription
agentAgent subcommands (listed below)
lsList registered assets, action groups and environments
replEnter Python REPL with Isaac Sim initialized
testRun automated tests
docsBuild documentation
guiLaunch the Graphical User Interface

Agent Subcommands

The agent subcommand is further separated into agent-specific subcommands:

srb agent <agent_subcommand> [options]
Agent SubcommandDescription
zeroRun agent with zero-valued actions
randRun agent with random actions
teleopManually teleoperate the agent
rosInterface with ROS 2 or Space ROS
trainTrain Reinforcement Learning (RL) agents
evalEvaluate trained RL agents

Shared Agent Options

The following options are shared across all agent subcommands:

ArgumentDescriptionDefault
-e/--env/--task ENVID of the environmentREQUIRED
--headlessRun simulation without displayFalse
--hide_uiDisable simulation UIFalse
--interface [IFACE ...]Interfaces to enable[]
--logdir/--logs PATHPath to logging directorySRB_LOGS_DIR
--videoEnable video recordingFalse
--video_lengthDuration of recorded videos1000 steps
--video_intervalInterval of video recordings10000 steps