Skip to content
Free Tool Arena

AI & LLMs · Guide · AI & Prompt Tools

How to Use Warp AI

Installing Warp, Agent Mode vs AI command search, workflows, code review in terminal, block-based UX, privacy controls.

Updated April 2026 · 6 min read

Warp is a Rust-built terminal that treats every command as a structured block and layers an AI agent on top, so you can describe what you want in English and have it run, explain, or script the result.

Advertisement

Warp started as a reimagined terminal with IDE-style editing and shareable blocks, then in 2024–2025 it pivoted hard into Agent Mode — a terminal that can plan, run, and review shell work on your behalf while still giving you the raw pty underneath.

What it is

Each command in Warp is a block: input, output, exit code, and metadata. The AI sits beside the prompt — press # or ctrl-\` to ask questions, and switch to Agent Mode to let Warp execute multi-step tasks. It also ships Workflows (parameterised command snippets) and a team-shared Notebook for runbooks.

Install / sign up

# macOS
brew install --cask warp

# Linux (Debian/Ubuntu)
curl -fsSL https://app.warp.dev/linux-deb.sh | sh

# Windows
winget install Warp.Warp

# Sign in at https://app.warp.dev to unlock AI features

First session

Open Warp and hit # to type a natural-language request. Warp suggests a command, shows a dry explanation, and waits for you to press enter. Agent Mode (cmd-I) goes further: it plans steps, runs them, reads output, and iterates.

$ # find all log files over 100MB modified this week
  find . -type f -name "*.log" -size +100M -mtime -7
# press enter to run, or tab to edit first

Everyday workflows

  • 1. Use Agent Mode to debug a failing CI job — it reads the error, proposes a fix, and re-runs.
  • 2. Save reusable Workflows for k8s, docker, or git rituals your team repeats daily.
  • 3. Pipe a block into “Explain output” to get a plain-English summary of stack traces or long logs.

Gotchas and tips

Warp sends command context to its cloud for AI features; enterprise plans offer zero-retention and BYO-key if that matters. Turn on command redaction in Settings to strip tokens before anything leaves your machine.

Agent Mode is powerful but not infallible — keep destructive commands (rm, DROP, terraform apply) gated behind the confirm prompt, which is on by default. If zsh plugins misbehave, try Warp’s built-in shell mode before blaming the agent.

Who it’s for

Terminal-heavy engineers, SREs, and DevOps folks who want a modern CLI experience plus an AI collaborator that actually understands shell semantics.

Advertisement

Found this useful?Email