Quick Commands
Quick Commands is a dropdown menu accessible from the lightning bolt icon in each pane's header (and in the mobile keyboard bar). It provides one-tap execution of common setup commands.
Available commands
| Command | What it runs |
|---|---|
| Install Claude Code | npm install -g @anthropic-ai/claude-code |
| Install Cursor | curl -fsSL https://www.cursor.com/install.sh | sh |
| Install OpenClaw | pip install open-claw |
| System Info | uname -a && cat /etc/os-release |
How it works
Clicking a quick command sends the command text directly to the active terminal pane, followed by a carriage return (Enter). It is equivalent to typing the command and pressing Enter.
The command executes immediately in whatever shell context is active in that pane. If the pane is in the middle of an interactive program (like vim or a REPL), the command text will be sent as input to that program.
Accessing Quick Commands
On desktop: Click the lightning bolt icon in the pane header. The dropdown appears below the button.
On mobile: Tap the lightning bolt icon in the keyboard helper bar at the bottom of the screen. The dropdown appears above the button.
The dropdown closes automatically after selecting a command or clicking outside of it.