Docs/Getting Started/Commands & Shortcuts

Commands & Shortcuts

Slash Commands

Type / to open the command picker. You can also type commands directly.

CommandDescription
/Open the command picker
/modelOpen the model picker
/model <alias>Switch model directly (e.g. /model opus)
/resumePick a past session — type to filter, Ctrl+D to delete (with confirm), Enter to resume
/rename <name>Rename the current session
/syncRe-sync OpenClaw settings
/helpShow shortcuts and tips
/newsVersion info and updates
/compactCompact session context manually
/configOpen settings (auto-compact, OpenClaw sync)
/toolsList all available tools
/tasksInteractive task manager (add, delete, toggle status)
/effortSet reasoning effort level (low/medium/high/max)
/effort <level>Set effort directly (e.g. /effort high)
/sandboxSet filesystem sandbox mode (project/full/unrestricted)
/sandbox <mode>Set sandbox directly (e.g. /sandbox project)
/checkpointManage file checkpoints (rollback, create, delete)
/hooksManage event hooks (browse, inspect, execution history)
/doctorRun diagnostic checks on installation health
/clearStart a new session
/exitExit Dynamo

Keyboard Shortcuts

KeyAction
/Opens the command picker (type to filter, Tab to complete)
TabAutocomplete in the command picker
Navigate menus / recall previous prompts (input history)
EnterSelect / send message
Move cursor in input field
EscClose a menu / interrupt streaming response
Ctrl+OExpand/collapse tool results, thinking, or compaction summary
Ctrl+GOpen background jobs picker
Ctrl+CExit
Ctrl+DExit (empty line) / forward delete
Ctrl+ACursor to start of line
Ctrl+ECursor to end of line
Ctrl+KKill text from cursor to end of line
Ctrl+UKill text from start of line to cursor
Ctrl+WKill previous word
Ctrl+YYank (paste) last killed text
Alt+BMove cursor one word backward
Alt+FMove cursor one word forward

Input history is saved across sessions to ~/.config/dynamo/input-history.jsonl.

Inside Pickers

Most pickers (model, session, tools, memory, checkpoint) share these shortcuts:

KeyAction
TypeFilter rows by name
Navigate rows
EnterSelect
Ctrl+DDelete the highlighted row (with confirm)
BackspaceDismiss the picker
EscDismiss the picker

Piped Mode

Dynamo works with piped input for scripting and CI:

bash
echo "explain this error" | dynamo               # pipe a prompt
dynamo < prompt.txt                               # redirect file as input
echo "fix the bug" | dynamo -y                    # with tool auto-approval

No logo, no UI, plain text output. ANSI colors are stripped unless FORCE_COLOR is set.

CLI Flags

bash
dynamo                      # new session
dynamo -r                   # open session picker to resume
dynamo -r <id>              # resume specific session by ID
dynamo -y                   # permissive mode (skip permission prompts)
dynamo --sandbox project    # strict sandbox (project root only)
dynamo --sandbox full       # read anywhere, write to project (default)
dynamo --sandbox unrestricted  # no filesystem restrictions
dynamo -r -y                # resume + permissive
dynamo setup                # interactive onboarding wizard
dynamo config               # show configuration
dynamo doctor               # run diagnostic checks
dynamo doctor --json        # structured JSON for scripting
dynamo doctor --fix         # auto-fix safe issues
dynamo --help               # list all commands
dynamo --version            # show version