AI & LLMs · Guide · AI & Prompt Tools
How to Use Warp AI
Analyze code and run workflows with an AI agent directly in your terminal. Start using Warp's Agent Mode for free, instantly, and with no sign-up required right from your browser.
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.
Use these while you read
Tools that pair with this guide
- System Prompt BuilderCompose a focused system prompt from a role, tone, constraints, and output format — copy-ready for any LLM.AI & Prompt Tools
- AI Prompt GeneratorTurn a vague idea into a structured prompt. Pick role, task, context, constraints, and output format. Works with ChatGPT, Claude, and Gemini.AI & Prompt Tools
- AI Token CounterEstimate tokens, characters, words, and approximate API cost for GPT-4o, GPT-4, Claude, and Gemini — before you hit send.AI & Prompt Tools
- AI Prompt LibraryBrowse a curated catalog of prompt templates for writing, coding, marketing, and research. One click to copy.AI & Prompt Tools
Advertisement
Continue reading
- AI & LLMsGitHub Copilot Pricing and ComparisonCompare free vs paid GitHub Copilot tiers and analyze it against ChatGPT, Cursor, and Tabnine. Find the best value plan instantly with this free online guide.
- AI & LLMsGitHub Copilot Features and CapabilitiesTest what Copilot really does — code accuracy, scope limits, debugging, web dev, legacy code, tests, docs, team customization. Free guide, no sign-up.
- AI & LLMsGitHub Copilot Security and Data HandlingAudit where your code goes, who sees it, training-data policy, network needs, and what happens when Copilot suggests broken code. Free, no sign-up.
- AI & LLMsAI Fluency SkillsThe 8 sub-skills of AI fluency: prompt structure, model selection, tool use, quality calibration, iteration, context management, cost awareness, privacy.
- AI & LLMsAnthropic Skills ExplainedSkills as Anthropic's answer to Custom GPTs — markdown-defined, version-controlled in git, work in terminal. Anatomy + Skills vs Custom GPTs.
- AI & LLMsKimi K2 vs DeepSeek V3Two open-weight Chinese flagships. Kimi K2 = 1M context, DeepSeek V3.2 = top-tier reasoning + coding. Pick by use case.