> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/warpdotdev/warp/llms.txt
> Use this file to discover all available pages before exploring further.

# Warp: the agentic development environment

> Warp is a modern terminal emulator with a built-in AI coding agent, cloud agent orchestration, and team collaboration features — all in one tool.

Warp is an agentic development environment born out of the terminal. It combines a high-performance terminal emulator with a built-in AI coding agent (Agent Mode), a cloud agent platform (Oz), and collaboration features — so you can code, automate, and ship faster from the command line.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get Warp installed and run your first AI agent in minutes
  </Card>

  <Card title="Installation" icon="download" href="/installation">
    Download Warp for macOS, Linux, or Windows
  </Card>

  <Card title="Terminal" icon="terminal" href="/terminal/overview">
    Explore blocks, completions, SSH, and more
  </Card>

  <Card title="AI Agent" icon="robot" href="/agent/overview">
    Use Agent Mode to write and run code with AI
  </Card>

  <Card title="Cloud Agents (Oz)" icon="cloud" href="/cloud/overview">
    Run, schedule, and orchestrate agents in the cloud
  </Card>

  <Card title="CLI Reference" icon="code" href="/cli/overview">
    Full reference for the `warp` / `oz` command-line interface
  </Card>
</CardGroup>

## What makes Warp different

Warp is not just a terminal. It is an end-to-end environment for agentic software development:

* **Blocks** — every command and its output is a structured, selectable block, not a wall of scrolling text
* **Agent Mode** — ask the built-in AI agent to write code, fix bugs, and run commands directly in your terminal
* **Oz cloud agents** — run agents headlessly in the cloud, schedule them on a cron, and orchestrate multi-agent workflows
* **MCP servers** — extend the AI agent with tools from any Model Context Protocol server
* **Warp Drive** — sync workflows, notebooks, and sessions across your team
* **Open source client** — the Warp terminal client is open source under AGPL-3.0

## Core concepts

<AccordionGroup>
  <Accordion title="What is a Block?">
    A Block is the fundamental unit of the Warp terminal. Each command you run creates a Block containing the input you typed, the output it produced, and metadata like exit code and timing. Blocks make it easy to copy, share, or reference any command and its result.
  </Accordion>

  <Accordion title="What is Agent Mode?">
    Agent Mode is Warp's built-in AI coding assistant. It can read your codebase, write and edit files, run shell commands, and work iteratively toward a goal. Agent Mode uses large language models (including GPT and Claude) and can be extended with MCP servers and Skills.
  </Accordion>

  <Accordion title="What is Oz?">
    Oz is Warp's cloud agent orchestration platform. It lets you run AI coding agents in isolated cloud environments, schedule them on a cron, and manage their runs from the `oz` CLI. Oz agents can use the same models, skills, and secrets as local Agent Mode sessions.
  </Accordion>

  <Accordion title="What is Warp Drive?">
    Warp Drive is Warp's cloud sync layer. It stores and shares workflows (reusable command snippets), notebooks (rich markdown documents with embedded commands), and session recordings across your team.
  </Accordion>
</AccordionGroup>
