// Make sure you call the super of robotInit()
  public void robotInit() {
    super.robotInit();

    // Call enterCommandList and pass in an Array of all the commands you have which extend
    // ParsableCommand
    ParsableCommand[] commands = {new ExampleCommand()};
    enterCommandList(commands);
  }