Run until a breakpoint is hit:
run -i 8

response:
<response command="run" transaction_id="8"
    status="break" reason="ok"></response>


Run until the next statement:
step_into -i 8


Run until the next statement in the current scope:
step_over -i 8


Run until the next statement in the calling scope:
step_out -i 8


Kill the script:
stop -i 8