Skip to content

Commands & Shortcuts

Fresh

Oz CLI Commands

Agent Commands

CommandDescription
oz agent run --prompt "..."Run a local agent with a prompt
oz agent run --model MODEL --prompt "..."Run with a specific model
oz agent run --skill "org/repo:skill-name"Run with a specific skill
oz agent run --saved-prompt IDRun with a saved Warp Drive prompt
oz agent run --share --prompt "..."Run with session sharing (self)
oz agent run --share team --prompt "..."Run with team session sharing
oz agent run --share user@email:edit --prompt "..."Share with edit access
oz agent run-cloud --environment ENV_ID --prompt "..."Run agent in the cloud
oz agent run-cloud --skill "org/repo:skill" --name "run-name"Named cloud run with skill

MCP Server Commands

CommandDescription
oz mcp add githubAdd the GitHub MCP server
oz mcp add NAME --command CMD --args ARGSAdd a custom MCP server
oz mcp listList configured MCP servers
oz mcp remove NAMERemove an MCP server

Configuration Commands

CommandDescription
/initInitialize AGENTS.md rules file in current project
oz --versionCheck installed Oz CLI version

Keyboard Shortcuts

General Navigation

ShortcutAction
Ctrl+Shift+R (macOS: Cmd+Shift+R)Open Warp Drive
Ctrl+Shift+P (macOS: Cmd+Shift+P)Command Palette
Ctrl+D (macOS: Cmd+D)Split pane (right)
Ctrl+Shift+D (macOS: Cmd+Shift+D)Split pane (down)
Ctrl+W (macOS: Cmd+W)Close current tab/pane
Ctrl+T (macOS: Cmd+T)New tab

Agent Mode

ShortcutAction
Ctrl+Shift+SpaceToggle Agent Mode
Ctrl+I (macOS: Cmd+I)Open AI input
Ctrl+L (macOS: Cmd+L)Switch agent modality (Terminal ↔ Conversation)

Editing & Input

ShortcutAction
Ctrl+AMove cursor to beginning of line
Ctrl+EMove cursor to end of line
Alt+← / Alt+→Move cursor word-by-word
Ctrl+UClear line before cursor
Ctrl+KClear line after cursor
Ctrl+WDelete word before cursor
TabAutocomplete
/ Navigate command history
Ctrl+RReverse search history

Blocks

ShortcutAction
Ctrl+Shift+C (macOS: Cmd+Shift+C)Copy block output
Ctrl+Shift+S (macOS: Cmd+Shift+S)Share block
Ctrl+Shift+;Bookmark block
Shift+↑ / Shift+↓Select blocks
Ctrl+Shift+↑ / Ctrl+Shift+↓Navigate between blocks

Terminal

ShortcutAction
Ctrl+CCancel current command / SIGINT
Ctrl+ZSuspend current process
Ctrl+LClear terminal
Ctrl+Shift+F (macOS: Cmd+Shift+F)Find in terminal output

Agent Run Flags Reference

bash
oz agent run [FLAGS]
FlagTypeDescription
--promptstringThe task prompt for the agent
--modelstringModel override (e.g., claude-sonnet-4-5)
--skillstringSkill to use (org/repo:skill-name)
--saved-promptstringWarp Drive saved prompt ID
--sharestringSession sharing target
--namestringName for the agent run
--openflagOpen session in browser after launch
bash
oz agent run-cloud [FLAGS]
FlagTypeDescription
--environmentstringCloud environment ID (required)
--promptstringThe task prompt
--skillstringSkill to use
--namestringDescriptive name for the run
--openflagOpen session in browser

Rules File Priority

When multiple rule files exist, Warp applies them in this order (highest priority first):

  1. Global Rules (Settings > Agent > Global Rules)
  2. AGENTS.md (project root)
  3. RULES.md
  4. .cursorrules
  5. .windsurfrules
  6. CLAUDE.md
  7. .clinerules
  8. Subdirectory AGENTS.md files

See Also