diff --git a/src/content/docs/agents/capabilities/index.mdx b/src/content/docs/agents/capabilities/index.mdx
index b3b2353e..1c72fb18 100644
--- a/src/content/docs/agents/capabilities/index.mdx
+++ b/src/content/docs/agents/capabilities/index.mdx
@@ -24,4 +24,4 @@ Agent capabilities are the core building blocks that define how agents operate,
## Related
* [Inference & providers](/agents/inference/model-choice/) - Pick the model that powers your agents, bring your own API key, or connect a custom inference endpoint.
-* [Using the Warp Agent](/agents/local-agents/overview/) - Hands-on agent interactions in Warp.
+* [Agents overview](/agents/) - What the Warp Agent does, how to control it, and where to run it.
diff --git a/src/content/docs/agents/cli/index.mdx b/src/content/docs/agents/cli/index.mdx
index 3cb8bfaf..f39d2571 100644
--- a/src/content/docs/agents/cli/index.mdx
+++ b/src/content/docs/agents/cli/index.mdx
@@ -32,35 +32,13 @@ To get a working setup in a few minutes, follow the [quickstart](/agents/cli/qui
* **The Warp app** - The CLI runs the same [Warp Agent](/platform/harnesses/warp-agent/) harness as the Warp app, so your account, plan, model access, rules, and skills work the same in both. The CLI doesn't require the Warp app to be installed.
* **{VARS.WARP_AUTOMATION_PLATFORM}** - {VARS.WARP_AUTOMATION_PLATFORM} is Warp's programmable platform for running and coordinating agents at scale. The CLI connects to the same platform. Conversations sync to your Warp account, and you can hand work off to [cloud agents](/agents/cli/cloud-and-orchestration/) or continue a cloud run from your terminal.
-## Supported platforms
-
-The CLI runs on:
-
-* **macOS** - Apple Silicon and Intel.
-* **Linux** - x64 and Arm64.
-* **Windows** - x64 and Arm64.
-
-## Logging in and out
-
-You sign in once, and the CLI stays signed in across sessions.
-
-* **Sign in through your browser** - The first time you run `warp`, the CLI shows a verification link and code and opens the link in your browser. It unlocks automatically once you approve the login. See [logging in](/agents/cli/quickstart/#2-log-in) for the full walkthrough.
-* **Sign in with an API key** - In non-interactive environments such as CI, authenticate with a Warp API key through the `WARP_API_KEY` environment variable or the `--api-key` flag. See [command-line flags](/agents/cli/reference/#command-line-flags).
-* **Sign out** - Run `/logout`. The CLI returns to its login screen and opens Warp's web sign-out page, so your browser session is signed out too.
-
-## Automatic updates
-
-The CLI updates automatically. While it runs, it periodically checks for a newer version, downloads it in the background, and stages it without interrupting your session. The staged version takes effect the next time you launch `warp`. When an update is ready, the start screen shows an "update installed, restart to apply" notice next to the version.
-
-To turn off background updates, set `general.autoupdate_enabled` to `false` in the [settings file](/agents/cli/configuration/#the-settings-file). To turn them off for a single launch, set the `WARP_TUI_DISABLE_AUTOUPDATE` environment variable to any value.
-
## Coming from the Warp app
If you already use the Warp app, most of your setup carries over. Rules and skills are discovered from the same shared paths, and your saved Warp Drive prompts are available after you log in (other Warp Drive object types aren't available in the CLI). To copy compatible settings and global MCP server configurations, run the bundled `/tui-migrate-setup` skill and follow the agent's instructions. Credentials are never copied, so MCP servers that require authentication must be reauthenticated in the CLI.
## Next steps
-* [Quickstart](/agents/cli/quickstart/) - Install the CLI, log in, and run your first prompt.
+* [Quickstart](/agents/cli/quickstart/) - Install the CLI, log in, run your first prompt, and see the supported platforms.
* [Agent conversations](/agents/cli/agent-conversations/) - Learn how the transcript, diffs, and approvals work.
* [Input and shell commands](/agents/cli/input-and-shell-commands/) - Compose prompts and run shell commands from the same input.
* [Configuration](/agents/cli/configuration/) - Customize the CLI with the settings file.
diff --git a/src/content/docs/agents/cli/quickstart.mdx b/src/content/docs/agents/cli/quickstart.mdx
index 902d65f1..3f96fddc 100644
--- a/src/content/docs/agents/cli/quickstart.mdx
+++ b/src/content/docs/agents/cli/quickstart.mdx
@@ -12,7 +12,7 @@ This guide takes you from installing the {VARS.WARP_CLI} to your first agent con
## Prerequisites
* **A Warp account** - The login step opens your browser, where you can sign in or [create an account](https://app.warp.dev/signup). The CLI uses the same account as the Warp app, but doesn't require the app to be installed.
-* **A supported platform** - macOS, Linux, or Windows. See [supported platforms](/agents/cli/#supported-platforms).
+* **A supported platform** - macOS (Apple Silicon or Intel), Linux (x64 or Arm64), or Windows (x64 or Arm64).
## 1. Install the Warp Agent CLI
@@ -39,7 +39,13 @@ After installing, verify that the `warp` command is available:
warp --version
```
-The command prints the installed version. From here on, the CLI updates automatically. See [automatic updates](/agents/cli/#automatic-updates).
+The command prints the installed version.
+
+:::note
+The CLI keeps itself up to date. While it runs, it periodically checks for a newer version, downloads it in the background, and stages it without interrupting your session. The staged version takes effect the next time you launch `warp`, and the start screen shows an "update installed, restart to apply" notice next to the version.
+
+To turn off background updates, set `general.autoupdate_enabled` to `false` in the [settings file](/agents/cli/configuration/#the-settings-file). To turn them off for a single launch, set the `WARP_TUI_DISABLE_AUTOUPDATE` environment variable to any value.
+:::
## 2. Log in
@@ -51,7 +57,7 @@ warp
The CLI shows a verification link and a device code, and opens the link in your browser. Approve the login there and the CLI unlocks automatically, so you don't need to restart it. If the browser doesn't open, visit the link shown in the CLI and enter the code.
-When login completes, the CLI shows its start screen with the version, a short "What's new" list, and the rules, skills, and MCP servers it discovered for your current directory.
+When login completes, the CLI shows its start screen with the version, a short "What's new" list, and the rules, skills, and MCP servers it discovered for your current directory. You stay signed in across sessions. To sign out later, run `/logout`, which returns the CLI to its login screen and signs out your browser session too.
:::note
**Running in CI or a headless environment?** Authenticate with a Warp API key instead by setting the `WARP_API_KEY` environment variable:
diff --git a/src/content/docs/agents/getting-started/agents-in-warp.mdx b/src/content/docs/agents/getting-started/agents-in-warp.mdx
deleted file mode 100644
index 159ffb45..00000000
--- a/src/content/docs/agents/getting-started/agents-in-warp.mdx
+++ /dev/null
@@ -1,102 +0,0 @@
----
-title: Agents in Warp
-description: >-
- Work with the Warp Agent in the Warp app. Control its autonomy with profiles
- and permissions, and give it context from your codebase and tools.
----
-import VideoEmbed from '@components/VideoEmbed.astro';
-
-This page covers the Warp Agent in the Warp app. You can run the same agent from any terminal with the [Warp Agent CLI](/agents/cli/), or in the background as a [cloud agent](/platform/) on [Oz](/platform/overview/). Warp also supports [third-party CLI agents](/agents/cli-agents/overview/) like Claude Code and Codex.
-
-
-
-The **Warp Agent** helps you build, test, deploy, and debug while keeping you in control. Describe what you want to do in natural language (_you can even use your voice_), and it takes action using your environment, codebase, and saved context.
-
-## What agents can do
-
-Agents understand your codebase and can execute tasks autonomously while keeping you in control:
-
-* **Write and edit code** - Create new files, refactor existing code, or make changes across multiple files in your codebase
-* **Debug and fix errors** - Analyze stack traces, interpret error output, and apply fixes
-* **Run commands** - Execute shell commands and use the output to guide next steps
-* **Recover from errors** - Automatically retry failed operations with adjustments
-* **Learn tools** - Integrate with any CLI tool by reading its `--help` or public documentation
-* **Use your context** - Leverage [Warp Drive](/knowledge-and-collaboration/warp-drive/), [MCP servers](/agents/capabilities/mcp/), [Rules](/agents/capabilities/rules/), and [codebase indexing](/agents/capabilities/codebase-context/) for tailored responses
-
-**Try this prompt** — [_open in Warp_](https://app.warp.dev/drive/prompt/Clone-and-install-Warps-themes-repository-PkK9Zw16SCD3JKzOUoGuj4)
-
-```text
-Detect my current operating system. Based on that, navigate to the appropriate Warp themes directory (e.g. ~/.warp/ on macOS).
-
-Then, clone the official Warp themes repository using SSH (git@github.com:warpdotdev/themes.git) into that directory, following the structure and instructions provided in the repo's README. If SSH does not work, try HTTPS (https://github.com/warpdotdev/themes.git) or via the GitHub CLI (gh repo clone warpdotdev/themes).
-```
----
-
-## Agent autonomy
-
-Under **Settings** > **Agents** > **Profiles** > **Permissions**, you can control how much autonomy the agent has when performing different types of actions:
-
-* Reading files
-* Creating plans
-* Executing commands
-* Calling MCP servers
-
-For each action, set the autonomy level to:
-
-* **Let the agent decide** - The agent chooses when to ask for confirmation
-* **Always prompt for confirmation** - Require approval before each action
-* **Always allow** - Execute without prompting
-* **Never** - Disable this action entirely
-
-You can also configure an **allowlist** and **denylist** for specific commands you always want to run—either with or without confirmation.
-
-:::note
-Warp's AI features can be globally disabled in **Settings** > **Agents** > **Warp Agent** with the AI toggle.\
-\
-These features send input data to various LLM providers through their API. Warp is **SOC 2 compliant** and has **Zero Data Retention** policies with all contracted LLM providers. No customer AI data is retained, stored, or used for training. Read more about data privacy for Warp features [on our privacy page](https://www.warp.dev/privacy).
-:::
-
----
-
-## Agent profiles
-
-Profiles let you define different permission and model configurations for different contexts. Create and manage profiles in **Settings** > **Agents** > **Warp Agent**, then switch between them by clicking the profile icon in Warp's input area.
-
-Common profile patterns:
-
-* **Default** - Balanced permissions for everyday use
-* **YOLO mode** - Loose permissions for personal projects where you want the agent to move fast
-* **Prod mode** - Restrictive permissions ("Always Ask") for high-risk environments like production servers
-
-For more details, see [Agent Profiles & Permissions](/agents/capabilities/agent-profiles-permissions/).
-
----
-
-## Managing agents
-
-You can run multiple agents simultaneously in Warp. All active agents—both local conversations and cloud agent runs—are tracked in the [management view](/platform/managing-cloud-agents/).
-
-Agents notify you when they need input, such as permission to run a command or approval to apply a code diff. This lets you focus on other work, knowing you'll be alerted when your attention is required.
-
-To access conversations across devices, share them with teammates, or restore past conversations, enable [cloud-synced conversations](/agents/local-agents/cloud-conversations/).
-
----
-
-## Context and knowledge
-
-Agents work best when they understand your codebase and workflows. Warp provides several ways to give agents the context they need:
-
-* [**Codebase Context**](/agents/capabilities/codebase-context/) - Warp indexes your Git-tracked files so agents can search and understand your code
-* [**Rules**](/agents/capabilities/rules/) - Define global and project-level guidelines that shape agent behavior
-* [**Skills**](/agents/capabilities/skills/) - Reusable instructions that teach agents how to perform specific tasks
-* [**MCP Servers**](/agents/capabilities/mcp/) - Connect external tools and data sources (GitHub, Linear, databases) to your agents
-* [**Warp Drive**](/knowledge-and-collaboration/warp-drive/) - Save prompts, workflows, and notebooks that agents can reference
-
----
-
-## Next steps
-
-* [**Using the Warp Agent**](/agents/local-agents/overview/) - Every agent feature available in the Warp app, from code review to voice.
-* [**Agent capabilities**](/agents/capabilities/) - Planning, skills, rules, MCP servers, task lists, and model choice.
-* [**Running agents on a schedule**](/platform/triggers/scheduled-agents/) - Hand recurring work to a cloud agent. For a comparison of triggers across schedules, Slack, Linear, GitHub Actions, the CLI, and the API, see [Run unattended agents](/guides/agent-workflows/how-to-run-unattended-agents/).
-* [**Agent FAQs**](/agents/getting-started/faqs/) - Common questions about models, privacy, and limits.
diff --git a/src/content/docs/agents/index.mdx b/src/content/docs/agents/index.mdx
index b70aa42d..04b6f6df 100644
--- a/src/content/docs/agents/index.mdx
+++ b/src/content/docs/agents/index.mdx
@@ -1,54 +1,62 @@
---
title: Agents overview
description: >-
- The Warp Agent writes code, debugs issues, and runs commands. Use it in the
- Warp app, in any terminal with the CLI, or in the cloud.
+ The Warp Agent runs commands in a real terminal, carries your context across
+ every surface, and works interactively or in the background.
---
+import VideoEmbed from '@components/VideoEmbed.astro';
-The **Warp Agent** is Warp's built-in coding agent. It reads your codebase, follows your rules and skills, and asks for approval before it acts, and you can run it in the Warp app, in any terminal, or in the cloud.
-
-This page covers where to run the agent, the third-party CLI agents Warp supports, and [Oz](/platform/overview/), the platform that runs and coordinates agents at scale.
+The **Warp Agent** is Warp's built-in coding agent. It works through multi-step tasks on its own, running commands in a real terminal and using the output to decide what to do next. You stay in the loop, approving actions and reviewing diffs before anything lands.
---
## Where to use the Warp Agent
-You can reach the same agent three ways. The method you pick depends on where you're working, not on what the agent can do.
-
-* [**In the Warp app**](/agents/local-agents/overview/) - The full experience, with code review, agent management, and the terminal alongside your conversation. Start here if you already use Warp as your terminal.
-* [**In any terminal, with the Warp Agent CLI**](/agents/cli/) - Run the `warp` command to start an agent conversation in any terminal emulator, over SSH, or on a machine where the Warp app isn't installed.
-* [**In the cloud, as a cloud agent**](/platform/) - Run the agent in the background from a trigger, a schedule, or an integration, without keeping a session open. Ideal for PR reviews, issue triage, and routine maintenance.
+You reach the same agent three ways. Which one you pick depends on where you're working, not on what the agent can do.
-Your account, plan, model access, rules, and skills carry across all three, and conversations sync to your Warp account so you can move between them.
+* **In the Warp app** - The full experience, with code review, agent management, and the terminal beside your conversation.
+* [**In any terminal, with the Warp Agent CLI**](/agents/cli/) - Run the `warp` command to start a conversation in any terminal emulator, over SSH, or on a machine where the Warp app isn't installed.
+* [**In the cloud, as a cloud agent**](/platform/) - Run the agent in the background from a trigger, a schedule, or an integration, without keeping a session open. Cloud agents run on [Oz](/platform/overview/), Warp's platform for environments, triggers, orchestration, and observability.
---
-## Third-party CLI agents
+## What makes the Warp Agent different
-Separately from the Warp Agent, Warp gives third-party CLI coding agents first-class support. Run Claude Code, Codex, OpenCode, and others inside Warp and get rich input, agent notifications, inline code review, and remote session control.
+* **It works in a real terminal** - The agent runs shell commands, reads live output, and drives interactive programs like REPLs, database shells, and full-screen apps. See [Full terminal use](/agents/capabilities/full-terminal-use/).
+* **Your context follows it everywhere** - [Rules](/agents/capabilities/rules/), [Skills](/agents/capabilities/skills/), [MCP servers](/agents/capabilities/mcp/), and [Codebase Context](/agents/capabilities/codebase-context/) apply the same way in the app, the CLI, and the cloud.
+* **Interactive or delegated, and you can switch mid-task** - Steer a conversation while it runs, or [hand it off](/platform/handoff/) to a cloud agent and pick it back up locally when it's done.
+* **You approve before anything lands** - The agent asks before it runs commands, edits files, or calls MCP servers. Set how much it does on its own with [Agent Profiles and permissions](/agents/capabilities/agent-profiles-permissions/), and review generated changes in [interactive code review](/agents/local-agents/interactive-code-review/).
+* **Many agents at once** - Run several conversations in parallel and track them in the [Agent Management Panel](/platform/managing-cloud-agents/), or use [orchestration](/platform/orchestration/) to have a parent agent spawn and coordinate children.
-→ [Learn about third-party CLI agents](/agents/cli-agents/overview/)
+
+**Try this prompt** — [_open in Warp_](https://app.warp.dev/drive/prompt/Clone-and-install-Warps-themes-repository-PkK9Zw16SCD3JKzOUoGuj4)
+
+```text
+Detect my current operating system. Based on that, navigate to the appropriate Warp themes directory (e.g. ~/.warp/ on macOS).
+
+Then, clone the official Warp themes repository using SSH (git@github.com:warpdotdev/themes.git) into that directory, following the structure and instructions provided in the repo's README. If SSH does not work, try HTTPS (https://github.com/warpdotdev/themes.git) or via the GitHub CLI (gh repo clone warpdotdev/themes).
+```
---
-## The platform behind the agent
+## Third-party CLI agents
-[**Oz**](/platform/overview/) is Warp's programmable platform for running and coordinating agents at scale. It provides the environments, triggers, integrations, orchestration, and observability that cloud agents run on, along with a CLI, API, and SDK for driving agents programmatically.
+Separately from the Warp Agent, Warp gives third-party CLI coding agents first-class support. Run Claude Code, Codex, OpenCode, and others inside Warp and get rich input, agent notifications, inline code review, and remote session control.
-The Oz tab covers the platform in full.
+→ [Learn about third-party CLI agents](/agents/cli-agents/overview/)
---
-## Getting started
+## Where to go next
-* [**Agents in Warp**](/agents/getting-started/agents-in-warp/) - A tour of what agents can do, autonomy levels, and profiles
-* [**Warp Agent CLI quickstart**](/agents/cli/quickstart/) - Install the CLI and run your first agent conversation
-* [**Cloud agents quickstart**](/platform/quickstart/) - Run your first agent in the cloud
-* [**Agent capabilities**](/agents/capabilities/) - Skills, planning, rules, MCP servers, and more
-* [**Agent FAQs**](/agents/getting-started/faqs/) - Common questions about models, privacy, and limits
+* [**Interacting with agents**](/agents/local-agents/interacting-with-agents/) - Conversations, context, code review, and voice in the Warp app.
+* [**Agent capabilities**](/agents/capabilities/) - Planning, skills, rules, MCP servers, task lists, and model choice.
+* [**Warp Agent CLI quickstart**](/agents/cli/quickstart/) - Install the CLI and run your first conversation.
+* [**Cloud agents quickstart**](/platform/quickstart/) - Run your first agent in the cloud, or put one on a [schedule](/platform/triggers/scheduled-agents/). For a comparison of triggers across schedules, Slack, Linear, GitHub Actions, the CLI, and the API, see [Run unattended agents](/guides/agent-workflows/how-to-run-unattended-agents/).
+* [**Agent FAQs**](/agents/getting-started/faqs/) - Models, privacy, credits, and limits.
---
## Open source
-Warp's client is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL), so the editor and terminal that host your agents are fully auditable. See [Contributing to Warp](/support-and-community/community/contributing/) for the source and contribution flow.
+Warp's client is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL), so the editor and terminal that host your agents are fully auditable. See [Contributing to Warp](/support-and-community/community/contributing/).
diff --git a/src/content/docs/agents/local-agents/overview.mdx b/src/content/docs/agents/local-agents/overview.mdx
deleted file mode 100644
index bfcf0d48..00000000
--- a/src/content/docs/agents/local-agents/overview.mdx
+++ /dev/null
@@ -1,29 +0,0 @@
----
-title: Using the Warp Agent
-description: >-
- The Warp Agentic Development Environment fully integrates agents, Code
- Review, voice, and Active AI Recommendations.
----
-
-The Warp Agent runs directly in your terminal, with full context from your codebase, Warp Drive, and connected tools, while you stay in control of every action. It can look up commands, execute tasks, fix bugs, and adapt to your workflows.
-
-The same agent also runs outside the Warp app, in any terminal, through the [Warp Agent CLI](/agents/cli/).
-
-## What you can do with agents
-
-This section covers how to interact with agents in Warp and the capabilities available during agent conversations:
-
-* [Agents in Warp](/agents/getting-started/agents-in-warp/) - Start here for what agents do, how autonomy and profiles work, and how to give them context.
-* [Interacting with Agents](/agents/local-agents/interacting-with-agents/) - Manage AI conversations tied to sessions, attach context, continue previous threads, or start new ones.
-* [Agent questions](/agents/local-agents/interacting-with-agents/agent-questions/) - Answer, skip, and configure clarifying questions the Agent asks during a conversation.
-* [Agent Context](/agents/local-agents/agent-context/) - Attach images, URLs, files, code blocks, and selections as context for your prompts.
-* [Model Choice](/agents/inference/model-choice/) - Pick your preferred LLM from a curated set of top models, or let Warp choose the optimal one.
-* [Full Terminal Use](/agents/capabilities/full-terminal-use/) - Let the agent drive interactive terminal apps, seeing live output and running commands.
-* [Interactive Code Review](/agents/local-agents/interactive-code-review/) - Review agent-generated diffs, leave inline comments, and have the agent address your feedback.
-* [Task Lists](/agents/capabilities/task-lists/) - Track complex workflows with automatic task lists that update progress in real time.
-* [Web Search](/agents/capabilities/web-search/) - Allow agents to search the web for up-to-date information.
-* [Third-party CLI agents](/agents/cli-agents/overview/) - Run third-party CLI agents like Claude Code and Codex with Warp's built-in agent toolbelt.
-* [Active AI Recommendations](/agents/local-agents/active-ai/) - Get proactive fix recommendations based on errors and outputs.
-* [Voice](/agents/local-agents/interacting-with-agents/voice/) - Talk to the Warp Agent using voice commands.
-
-For foundational capabilities like planning, rules, MCP servers, and agent profiles, see [Capabilities](/agents/capabilities/).
diff --git a/src/content/docs/enterprise/getting-started/getting-started-developers.mdx b/src/content/docs/enterprise/getting-started/getting-started-developers.mdx
index 638efa0b..3ef3eb55 100644
--- a/src/content/docs/enterprise/getting-started/getting-started-developers.mdx
+++ b/src/content/docs/enterprise/getting-started/getting-started-developers.mdx
@@ -250,7 +250,7 @@ For common login, SSO, and access issues, see the [Enterprise FAQ](/enterprise/g
Now that you're set up:
-* **Explore agent capabilities** - Learn about [agents in Warp](/agents/getting-started/agents-in-warp/) and [cloud agents](/platform/)
+* **Explore agent capabilities** - Learn about [agents in Warp](/agents/) and [cloud agents](/platform/)
* **Contribute to team knowledge** - Add useful Workflows, Prompts, and Rules to your team's Warp Drive to compound productivity gains across your team
* **Stay updated** - Check the [Warp changelog](/changelog/) for new features
diff --git a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-claude-code.mdx b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-claude-code.mdx
index 3c0e1a5c..1a77b6f7 100644
--- a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-claude-code.mdx
+++ b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-claude-code.mdx
@@ -9,7 +9,7 @@ description: >-
Claude Code is different from the other sources in this section: it's not a terminal emulator, it's a CLI agent that runs inside any terminal. Warp is an agentic development environment with a built-in [code editor](/code/code-editor/), [Code Review](/code/code-review/), [team collaboration](/knowledge-and-collaboration/warp-drive/), and [MCP](/agents/capabilities/mcp/) support — so you have two paths to choose from:
* **[Using Claude Code inside Warp](#using-claude-code-inside-warp)** - you want to keep using Claude Code as your coding agent and run it in Warp's terminal.
-* **[Switching to Agent Mode from Claude Code](#switching-to-agent-mode-from-claude-code)** - you want to replace Claude Code with Warp's built-in [Agent Mode](/agents/getting-started/agents-in-warp/).
+* **[Switching to Agent Mode from Claude Code](#switching-to-agent-mode-from-claude-code)** - you want to replace Claude Code with Warp's built-in [Agent Mode](/agents/).
## Using Claude Code inside Warp
@@ -88,4 +88,4 @@ Use this table to find the closest Warp equivalent for Claude Code concepts:
| Tool definitions | [MCP](/agents/capabilities/mcp/) |
| Resume conversation | Warp persists agent conversations per tab; pair with [tab configs](/terminal/windows/tab-configs/) to reopen the same project layout |
-For a deeper tour of Agent Mode, see [Coding in Warp](/getting-started/quickstart/coding-in-warp/) and [Agents in Warp](/agents/getting-started/agents-in-warp/).
+For a deeper tour of Agent Mode, see [Coding in Warp](/getting-started/quickstart/coding-in-warp/) and the [Agents overview](/agents/).
diff --git a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-cursor.mdx b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-cursor.mdx
index fac694d0..9da6d350 100644
--- a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-cursor.mdx
+++ b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-cursor.mdx
@@ -34,7 +34,7 @@ Terminal settings in Cursor follow the same schema as VS Code. The migration ste
Cursor's Composer and Agent features don't have a one-to-one migration path; they map to different Warp concepts.
-* **Composer / Agent** - In Cursor, these features map to Warp's [Agent Mode](/agents/getting-started/agents-in-warp/). Start an Agent conversation in any tab.
+* **Composer / Agent** - In Cursor, these features map to Warp's [Agent Mode](/agents/). Start an Agent conversation in any tab.
* **Rules files** - Warp uses [Rules](/agents/capabilities/rules/) stored in Warp Drive or committed to your repo as `AGENTS.md` (or `WARP.md`). Run `/init` in Agent Mode to generate an `AGENTS.md`, or copy your `.cursorrules` content directly.
* **MCP servers** - Warp supports MCP natively. See [MCP](/agents/capabilities/mcp/) for configuration.
@@ -53,7 +53,7 @@ Warp's [keyboard shortcuts](/getting-started/keyboard-shortcuts/) differ from Cu
Keep Cursor as your editor for tight in-file AI assistance, and use Warp as the terminal you switch to for:
* Long-running commands and SSH.
-* [Agent Mode](/agents/getting-started/agents-in-warp/) conversations that execute commands, not just edit files.
+* [Agent Mode](/agents/) conversations that execute commands, not just edit files.
* [Code Review](/code/code-review/) for managing diffs.
* [Warp Drive](/knowledge-and-collaboration/warp-drive/) for team knowledge.
@@ -68,7 +68,7 @@ Use this table to find Warp equivalents for Cursor features you might look for a
| From Cursor | In Warp |
| --- | --- |
| Composer / Agent panel | [Agent Mode](/agents/local-agents/interacting-with-agents/terminal-and-agent-modes/) in any tab (toggle with `⌘+I` on macOS or `Ctrl+I` on Linux/Windows) |
-| Agent tabs | Multiple [agents in parallel](/agents/getting-started/agents-in-warp/) across tabs |
+| Agent tabs | Multiple [agents in parallel](/agents/) across tabs |
| `.cursorrules` | `AGENTS.md` / `WARP.md` at the project root, picked up as a [Rule](/agents/capabilities/rules/) |
| MCP servers | [MCP](/agents/capabilities/mcp/) |
| Model choice per conversation | [Model selector](/agents/inference/model-choice/) |
diff --git a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-ghostty.mdx b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-ghostty.mdx
index 7970f307..324f667f 100644
--- a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-ghostty.mdx
+++ b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-ghostty.mdx
@@ -65,6 +65,6 @@ Use this table to find the closest Warp equivalent for Ghostty features you migh
| Kitty graphics protocol | Image rendering for most common workflows (see [more features](/terminal/more-features/)) |
| Shaders and custom visual effects | Not supported; closest: [size, opacity, and blurring](/terminal/appearance/size-opacity-blurring/) + [pane dimming](/terminal/appearance/pane-dimming/) |
-Beyond parity, Warp adds [Agent Mode](/agents/getting-started/agents-in-warp/), [Code Review](/code/code-review/), and [Warp Drive](/knowledge-and-collaboration/warp-drive/) for AI-assisted development and team collaboration.
+Beyond parity, Warp adds [Agent Mode](/agents/), [Code Review](/code/code-review/), and [Warp Drive](/knowledge-and-collaboration/warp-drive/) for AI-assisted development and team collaboration.
For more on what you can configure, see [Customizing Warp](/getting-started/quickstart/customizing-warp/).
diff --git a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-macos-terminal.mdx b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-macos-terminal.mdx
index 68ea1ece..ee5d236f 100644
--- a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-macos-terminal.mdx
+++ b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-macos-terminal.mdx
@@ -70,4 +70,4 @@ Most Terminal.app features have a Warp equivalent with additional capabilities o
| Copy-on-select | **Settings** > **Features** > **Session** |
| Inspector | [Command inspector](/terminal/editor/command-inspector/) (exit code, duration, working directory) |
-Beyond matching Terminal.app, Warp adds [Agent Mode](/agents/getting-started/agents-in-warp/) for natural-language commands, [blocks](/terminal/blocks/) for structured command output, and [Warp Drive](/knowledge-and-collaboration/warp-drive/) for shared workflows. New to Warp? Start with the [Warp quickstart](/quickstart/).
+Beyond matching Terminal.app, Warp adds [Agent Mode](/agents/) for natural-language commands, [blocks](/terminal/blocks/) for structured command output, and [Warp Drive](/knowledge-and-collaboration/warp-drive/) for shared workflows. New to Warp? Start with the [Warp quickstart](/quickstart/).
diff --git a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-vs-code-terminal.mdx b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-vs-code-terminal.mdx
index 08f5e1bc..02c53422 100644
--- a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-vs-code-terminal.mdx
+++ b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-vs-code-terminal.mdx
@@ -62,7 +62,7 @@ Warp's [default keyboard shortcuts](/getting-started/keyboard-shortcuts/) are la
Many developers keep VS Code as their editor and use Warp as the terminal they switch to for long-running commands, SSH sessions, or AI-assisted workflows. You don't need to change VS Code. Install Warp and open it when you want a richer terminal.
-VS Code's integrated terminal still works; use it for quick one-off commands, and jump to Warp when you need [blocks](/terminal/blocks/), [Agent Mode](/agents/getting-started/agents-in-warp/), or [persistent sessions](/terminal/sessions/session-restoration/).
+VS Code's integrated terminal still works; use it for quick one-off commands, and jump to Warp when you need [blocks](/terminal/blocks/), [Agent Mode](/agents/), or [persistent sessions](/terminal/sessions/session-restoration/).
### Replace VS Code with Warp
diff --git a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-windows-terminal.mdx b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-windows-terminal.mdx
index e3ba24a1..815255fe 100644
--- a/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-windows-terminal.mdx
+++ b/src/content/docs/getting-started/migrate-to-warp/migrate-to-warp-from-windows-terminal.mdx
@@ -73,4 +73,4 @@ Use this table to find Warp equivalents for Windows Terminal features you might
| Oh My Posh prompts | Keep using them; pick [Shell prompt (PS1)](/terminal/appearance/prompt/#custom-prompt) in Warp |
| Quake mode | [Global hotkey](/terminal/windows/global-hotkey/) |
-Beyond Windows Terminal's feature set, Warp adds [Agent Mode](/agents/getting-started/agents-in-warp/), [blocks](/terminal/blocks/), and [Warp Drive](/knowledge-and-collaboration/warp-drive/). See [Warp for Windows installation](/getting-started/quickstart/installation-and-setup/) if you haven't installed yet.
+Beyond Windows Terminal's feature set, Warp adds [Agent Mode](/agents/), [blocks](/terminal/blocks/), and [Warp Drive](/knowledge-and-collaboration/warp-drive/). See [Warp for Windows installation](/getting-started/quickstart/installation-and-setup/) if you haven't installed yet.
diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx
index c1afe116..7e5f2ecc 100644
--- a/src/content/docs/index.mdx
+++ b/src/content/docs/index.mdx
@@ -47,7 +47,7 @@ Real-time, interactive coding assistance alongside your terminal.
You stay in control. Review changes, steer the agent mid-task, and approve actions before they execute.
-→ [Get started with agents in Warp](/agents/getting-started/agents-in-warp/)
+→ [Get started with agents in Warp](/agents/)
### In any terminal, with the Warp Agent CLI
@@ -114,7 +114,7 @@ Warp's AI features can be globally disabled in **Settings** > **Agents** > **War
## Next steps
* [**Quickstart**](/quickstart/): Get Warp installed and start coding
-* [**Using the Warp Agent**](/agents/local-agents/overview/): Explore all AI features available in Warp
+* [**Agents overview**](/agents/): What the Warp Agent does, how to control it, and where to run it
* [**Warp Agent CLI**](/agents/cli/): Run the Warp Agent in any terminal
* [**Cloud Agents overview**](/platform/): Set up background automation
* [**Oz Platform**](/platform/overview/): Learn about the CLI, API, SDK, and infrastructure
diff --git a/src/content/docs/knowledge-and-collaboration/warp-drive/workflows.mdx b/src/content/docs/knowledge-and-collaboration/warp-drive/workflows.mdx
index 34349216..5c4b00ab 100644
--- a/src/content/docs/knowledge-and-collaboration/warp-drive/workflows.mdx
+++ b/src/content/docs/knowledge-and-collaboration/warp-drive/workflows.mdx
@@ -83,7 +83,7 @@ Once a workflow has been created, you can edit it at any time, as long as you ha
#### AI autofill
-Workflows also have the option to use an [agent](/agents/getting-started/agents-in-warp/) to automatically generate a title, descriptions, or parameters.
+Workflows also have the option to use an [agent](/agents/) to automatically generate a title, descriptions, or parameters.
* Create or edit a Workflow, in the edit view you should see the option to AutoFill.
* Warp will fill in the fields based on the Workflow you're creating.
diff --git a/src/content/docs/platform/handoff/local-to-cloud.mdx b/src/content/docs/platform/handoff/local-to-cloud.mdx
index 5a7c87cf..97942543 100644
--- a/src/content/docs/platform/handoff/local-to-cloud.mdx
+++ b/src/content/docs/platform/handoff/local-to-cloud.mdx
@@ -33,7 +33,7 @@ If any changes fail to apply in the cloud run, the cloud agent reports which cha
## Prerequisites
-* **An active local conversation** - Have a [Warp Agent](/agents/getting-started/agents-in-warp/) conversation open in Warp with the work you want to hand off.
+* **An active local conversation** - Have a [Warp Agent](/agents/) conversation open in Warp with the work you want to hand off.
* **A configured environment** - The cloud agent needs an [environment](/platform/environments/) that includes the same repositories you're working in locally. The environment's repos must match your local checkout so the workspace snapshot applies cleanly.
* **Cloud conversation storage enabled** - In the Warp app, go to **Settings** > **Privacy** and turn on **Store AI conversations in the cloud** so the conversation can be forked. See [Cloud-synced conversations](/agents/local-agents/cloud-conversations/).
* **Sufficient credits** - Cloud agent runs consume credits. See [Credits](/support-and-community/plans-and-billing/credits/) for how credit usage works, and [Access, billing, and identity](/platform/team-access-billing-and-identity/) for team-specific credit requirements.
diff --git a/src/content/docs/platform/managing-cloud-agents.mdx b/src/content/docs/platform/managing-cloud-agents.mdx
index 5f878d3e..a87ccc80 100644
--- a/src/content/docs/platform/managing-cloud-agents.mdx
+++ b/src/content/docs/platform/managing-cloud-agents.mdx
@@ -80,7 +80,7 @@ Each row represents a single item in the agents list (either an interactive conv
Where the agent was launched from. Common sources include:
-* **Interactive:** an [agent conversation](/agents/getting-started/agents-in-warp/) started in the Warp app
+* **Interactive:** an [agent conversation](/agents/) started in the Warp app
* **CLI**: a local run triggered by the [Oz CLI](/reference/cli/)
* **API**: a run triggered by [Warp's API](/reference/api-and-sdk/)
* **Slack / Linear**: runs triggered by [integrations](/platform/integrations/)
diff --git a/src/content/docs/platform/orchestration/index.mdx b/src/content/docs/platform/orchestration/index.mdx
index c1ee4cb7..a4710977 100644
--- a/src/content/docs/platform/orchestration/index.mdx
+++ b/src/content/docs/platform/orchestration/index.mdx
@@ -27,7 +27,7 @@ Orchestrations today are exactly one level deep: a parent and its direct childre
The parent and child don't have to run in the same place. Orchestration supports four combinations:
-* **Local → local** - a [Warp Agent](/agents/getting-started/agents-in-warp/) conversation in the Warp app spawns child Warp Agent conversations on the same machine. Useful for trying orchestration patterns without spinning up cloud infrastructure.
+* **Local → local** - a [Warp Agent](/agents/) conversation in the Warp app spawns child Warp Agent conversations on the same machine. Useful for trying orchestration patterns without spinning up cloud infrastructure.
* **Local → cloud** - a local parent spawns one or more cloud children that run in [environments](/platform/environments/) on Warp-hosted or self-hosted infrastructure. The parent keeps working while children execute in parallel.
* **Cloud → cloud** - a cloud parent spawns cloud children that each run in their own environment. This is the canonical pattern for review swarms, large fan-outs, and any orchestration triggered from Slack, Linear, a schedule, or the API.
* **Cloud → cloud-local** - a cloud parent spawns children that run inside the parent's own cloud environment, rather than each child getting its own environment. Useful when children need to share state with the parent (a filesystem, a long-running process, a shell session) or when spinning up an environment per child would be wasteful.
diff --git a/src/content/docs/platform/overview.mdx b/src/content/docs/platform/overview.mdx
index bc3b4746..d7fab747 100644
--- a/src/content/docs/platform/overview.mdx
+++ b/src/content/docs/platform/overview.mdx
@@ -46,7 +46,7 @@ In practice: **triggers create tasks; tasks execute on a host (optionally in an
### Oz CLI
-The [Oz CLI](/reference/cli/) is the **headless interface** for running agents in non-interactive mode. It's commonly used in CI, scripts, and server environments where there is no interactive UI. For interactive workflows, use the [agent](/agents/getting-started/agents-in-warp/) embedded in Warp's desktop app.
+The [Oz CLI](/reference/cli/) is the **headless interface** for running agents in non-interactive mode. It's commonly used in CI, scripts, and server environments where there is no interactive UI. For interactive workflows, use the [agent](/agents/) embedded in Warp's desktop app.
A key property of the CLI is that it is **cloud-connected**. Even when an agent is started on a local machine or in CI, it reports progress to Warp’s servers. This enables team visibility, session sharing (where supported), and programmatic tracking through the API.
diff --git a/src/content/docs/support-and-community/privacy-and-security/privacy.mdx b/src/content/docs/support-and-community/privacy-and-security/privacy.mdx
index 56951942..18910b0d 100644
--- a/src/content/docs/support-and-community/privacy-and-security/privacy.mdx
+++ b/src/content/docs/support-and-community/privacy-and-security/privacy.mdx
@@ -27,7 +27,7 @@ Warp collects high-level telemetry and usage data to discover product quality is
If you haven't opted out of "Help improve Warp", we may collect:
1. High level product usage and analytics data to analyze feature uptake and usage patterns. See the full list of tracked events in the [exhaustive telemetry table](/support-and-community/privacy-and-security/privacy/#exhaustive-telemetry-table) below. These are all high level metrics and do not include any user generated content.
-2. AI interactions and console inputs that power our [AI features](/agents/getting-started/agents-in-warp/). Warp unconditionally applies [Secret Redaction](/support-and-community/privacy-and-security/secret-redaction/) in all AI interactions to ensure that any sensitive data is _never_ collected or sent to third parties.
+2. AI interactions and console inputs that power our [AI features](/agents/). Warp unconditionally applies [Secret Redaction](/support-and-community/privacy-and-security/secret-redaction/) in all AI interactions to ensure that any sensitive data is _never_ collected or sent to third parties.
:::note
Telemetry must be enabled to use AI features on the Free plan, while paid plans can opt out at any time and continue using Warp, including AI.
diff --git a/src/content/docs/support-and-community/troubleshooting-and-support/known-issues.mdx b/src/content/docs/support-and-community/troubleshooting-and-support/known-issues.mdx
index 02f8464a..53c8f8b8 100644
--- a/src/content/docs/support-and-community/troubleshooting-and-support/known-issues.mdx
+++ b/src/content/docs/support-and-community/troubleshooting-and-support/known-issues.mdx
@@ -23,7 +23,7 @@ To enable Blocks over SSH, Warp uses an SSH Wrapper function; navigate to **Sett
### Online features don't work
-There is a known issue that can occur that causes online features to break ([Agent](/agents/getting-started/agents-in-warp/), [Generate](/agents/local-agents/generate/), [Block Sharing](/terminal/blocks/block-sharing/), [Refer a Friend](/support-and-community/community/refer-a-friend/) ). This is due to the login token going stale, typically due to a password change, and can be resolved by the following steps:
+There is a known issue that can occur that causes online features to break ([Agent](/agents/), [Generate](/agents/local-agents/generate/), [Block Sharing](/terminal/blocks/block-sharing/), [Refer a Friend](/support-and-community/community/refer-a-friend/) ). This is due to the login token going stale, typically due to a password change, and can be resolved by the following steps:
diff --git a/src/content/docs/support-and-community/troubleshooting-and-support/using-warp-offline.mdx b/src/content/docs/support-and-community/troubleshooting-and-support/using-warp-offline.mdx
index f430341e..1cae9aeb 100644
--- a/src/content/docs/support-and-community/troubleshooting-and-support/using-warp-offline.mdx
+++ b/src/content/docs/support-and-community/troubleshooting-and-support/using-warp-offline.mdx
@@ -17,7 +17,7 @@ Warp is "Offline" when you aren't connected to the internet, or if you're blocki
Warp’s cloud-based features which require an internet connection will not work in offline mode. Those features include:
* [Warp Drive](/knowledge-and-collaboration/warp-drive/#using-warp-drive-offline) (Some files may be read-only in offline mode)
-* [Agent](/agents/getting-started/agents-in-warp/)
+* [Agent](/agents/)
* [Agent Mode](/agents/local-agents/interacting-with-agents/)
* [Generate](/agents/local-agents/generate/)
* [AI Autofill](/knowledge-and-collaboration/warp-drive/workflows/#warp-ai-autofill)
diff --git a/src/sidebar.ts b/src/sidebar.ts
index de92280e..c2d814da 100644
--- a/src/sidebar.ts
+++ b/src/sidebar.ts
@@ -240,17 +240,15 @@ export const sidebarTopics: StarlightSidebarTopicsUserConfig = [
icon: 'puzzle',
items: [
{
- label: 'Getting started',
+ label: 'Agents',
items: [
- { slug: 'agents', label: 'Agents overview' },
- 'agents/getting-started/agents-in-warp',
+ { slug: 'agents', label: 'Overview' },
'agents/getting-started/faqs',
],
},
{
label: 'Warp Agents',
items: [
- { slug: 'agents/local-agents/overview', label: 'Overview' },
{
label: 'Capabilities',
collapsed: true,
diff --git a/vercel.json b/vercel.json
index fbfc579e..5ac4a879 100644
--- a/vercel.json
+++ b/vercel.json
@@ -214,7 +214,7 @@
},
{
"source": "/agent-platform/getting-started/agents-in-warp/",
- "destination": "/agents/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -334,7 +334,7 @@
},
{
"source": "/agent-platform/local-agents/overview/",
- "destination": "/agents/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -444,7 +444,7 @@
},
{
"source": "/agent-platform/agent-mode",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -484,7 +484,7 @@
},
{
"source": "/agent-platform/agent-mode/agents-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -504,7 +504,7 @@
},
{
"source": "/agent-platform/agent-mode/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -574,7 +574,7 @@
},
{
"source": "/agent-platform/agent-platform/agent/agents-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -584,12 +584,12 @@
},
{
"source": "/agent-platform/agent-platform/agents-md",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/agent-platform/agents-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -659,7 +659,7 @@
},
{
"source": "/agent-platform/agent-platform/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -824,7 +824,7 @@
},
{
"source": "/agent-platform/agent-platform/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -839,12 +839,12 @@
},
{
"source": "/agent-platform/agents/agents-md",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/agents/agents-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -854,12 +854,12 @@
},
{
"source": "/agent-platform/agents/ai-commander",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/agents/ai-commands",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -869,7 +869,7 @@
},
{
"source": "/agent-platform/agents/ai-getting-started",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -894,7 +894,7 @@
},
{
"source": "/agent-platform/agents/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -999,7 +999,7 @@
},
{
"source": "/agent-platform/agents/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1014,7 +1014,7 @@
},
{
"source": "/agent-platform/ai-features/ai-commands",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1024,7 +1024,7 @@
},
{
"source": "/agent-platform/ai/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1139,7 +1139,7 @@
},
{
"source": "/agent-platform/features/agent-mode/agents-md",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1159,7 +1159,7 @@
},
{
"source": "/agent-platform/features/ai-and-agents",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1169,17 +1169,17 @@
},
{
"source": "/agent-platform/features/ai-and-ask-warp",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-and-ask-warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-and-session-history/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1189,22 +1189,22 @@
},
{
"source": "/agent-platform/features/ai-and-warpdrive/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-command",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-command-search",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-command-search/limits",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1214,7 +1214,7 @@
},
{
"source": "/agent-platform/features/ai-command-suggestions",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1224,17 +1224,17 @@
},
{
"source": "/agent-platform/features/ai-commands",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-features",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-features/ai-chat",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1259,22 +1259,22 @@
},
{
"source": "/agent-platform/features/ai/ai-setup",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/assistant",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/commands",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/commands-and-agents",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1294,12 +1294,12 @@
},
{
"source": "/agent-platform/features/ai/commands/ai-commands-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/get-started-with-warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1309,17 +1309,17 @@
},
{
"source": "/agent-platform/features/ai/using-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/using-warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -1339,7 +1339,7 @@
},
{
"source": "/agent-platform/features/terminal-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1354,7 +1354,7 @@
},
{
"source": "/agent-platform/features/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1379,17 +1379,17 @@
},
{
"source": "/agent-platform/features/warp-ai/ai-command-search",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/warp-ai/ai-command-suggestions",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/warp-ai/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -1414,7 +1414,7 @@
},
{
"source": "/agent-platform/getting-started/quickstart-guide/agents-in-warp",
- "destination": "/agent-platform/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1489,7 +1489,7 @@
},
{
"source": "/agent-platform/local-agents",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1499,7 +1499,7 @@
},
{
"source": "/agent-platform/local-agents/agents-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1514,7 +1514,7 @@
},
{
"source": "/agent-platform/local-agents/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -1569,12 +1569,12 @@
},
{
"source": "/agent-platform/terminal-ai/getting-started",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/terminal/ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1584,7 +1584,7 @@
},
{
"source": "/agent-platform/terminal/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -1759,17 +1759,12 @@
},
{
"source": "/agent-platform/warp-ai",
- "destination": "/agent-platform/local-agents/overview/",
- "statusCode": 308
- },
- {
- "source": "/agent-platform/warp-ai/assistant",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
- "source": "/agent-platform/warp-ai/get-started",
- "destination": "/agent-platform/local-agents/overview/",
+ "source": "/agent-platform/warp-ai/:path(.*)",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -2634,7 +2629,7 @@
},
{
"source": "/getting-started/quickstart-guide/agents-in-warp",
- "destination": "/agent-platform/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -4404,7 +4399,7 @@
},
{
"source": "/agent-platform/warp-agents/warp-agents",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -4619,7 +4614,7 @@
},
{
"source": "/agents/autonomy",
- "destination": "/agent-platform/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -4839,7 +4834,7 @@
},
{
"source": "/agent-platform/agent-mode/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -4879,7 +4874,7 @@
},
{
"source": "/agent-platform/agent-mode/agents-overview/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -4899,7 +4894,7 @@
},
{
"source": "/agent-platform/agent-mode/generate/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -4959,7 +4954,7 @@
},
{
"source": "/agent-platform/agent-platform/agent/agents-overview/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -4969,12 +4964,12 @@
},
{
"source": "/agent-platform/agent-platform/agents-md/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/agent-platform/agents-overview/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5034,7 +5029,7 @@
},
{
"source": "/agent-platform/agent-platform/generate/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -5149,7 +5144,7 @@
},
{
"source": "/agent-platform/agent-platform/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5164,12 +5159,12 @@
},
{
"source": "/agent-platform/agents/agents-md/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/agents/agents-overview/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5179,12 +5174,12 @@
},
{
"source": "/agent-platform/agents/ai-commander/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/agents/ai-commands/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5194,7 +5189,7 @@
},
{
"source": "/agent-platform/agents/ai-getting-started/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5219,7 +5214,7 @@
},
{
"source": "/agent-platform/agents/generate/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -5324,7 +5319,7 @@
},
{
"source": "/agent-platform/agents/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5339,7 +5334,7 @@
},
{
"source": "/agent-platform/ai-features/ai-commands/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5349,7 +5344,7 @@
},
{
"source": "/agent-platform/ai/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5434,7 +5429,7 @@
},
{
"source": "/agent-platform/features/agent-mode/agents-md/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5454,7 +5449,7 @@
},
{
"source": "/agent-platform/features/ai-and-agents/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5464,17 +5459,17 @@
},
{
"source": "/agent-platform/features/ai-and-ask-warp/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-and-ask-warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-and-session-history/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5484,22 +5479,22 @@
},
{
"source": "/agent-platform/features/ai-and-warpdrive/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-command/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-command-search/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-command-search/limits/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5509,7 +5504,7 @@
},
{
"source": "/agent-platform/features/ai-command-suggestions/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5519,17 +5514,17 @@
},
{
"source": "/agent-platform/features/ai-commands/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-features/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai-features/ai-chat/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5554,22 +5549,22 @@
},
{
"source": "/agent-platform/features/ai/ai-setup/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/assistant/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/commands/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/commands-and-agents/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5589,12 +5584,12 @@
},
{
"source": "/agent-platform/features/ai/commands/ai-commands-overview/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/get-started-with-warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5604,17 +5599,17 @@
},
{
"source": "/agent-platform/features/ai/using-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/ai/using-warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/generate/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -5634,7 +5629,7 @@
},
{
"source": "/agent-platform/features/terminal-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5649,7 +5644,7 @@
},
{
"source": "/agent-platform/features/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5669,17 +5664,17 @@
},
{
"source": "/agent-platform/features/warp-ai/ai-command-search/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/warp-ai/ai-command-suggestions/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/features/warp-ai/generate/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -5704,7 +5699,7 @@
},
{
"source": "/agent-platform/getting-started/quickstart-guide/agents-in-warp/",
- "destination": "/agent-platform/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5779,7 +5774,7 @@
},
{
"source": "/agent-platform/local-agents/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5789,7 +5784,7 @@
},
{
"source": "/agent-platform/local-agents/agents-overview/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5849,12 +5844,12 @@
},
{
"source": "/agent-platform/terminal-ai/getting-started/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agent-platform/terminal/ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5864,7 +5859,7 @@
},
{
"source": "/agent-platform/terminal/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -5902,21 +5897,6 @@
"destination": "/platform/managing-cloud-agents/",
"statusCode": 308
},
- {
- "source": "/agent-platform/warp-ai/",
- "destination": "/agent-platform/local-agents/overview/",
- "statusCode": 308
- },
- {
- "source": "/agent-platform/warp-ai/assistant/",
- "destination": "/agent-platform/local-agents/overview/",
- "statusCode": 308
- },
- {
- "source": "/agent-platform/warp-ai/get-started/",
- "destination": "/agent-platform/local-agents/overview/",
- "statusCode": 308
- },
{
"source": "/agent-platform/warp-platform/",
"destination": "/platform/overview/",
@@ -6719,7 +6699,7 @@
},
{
"source": "/getting-started/quickstart-guide/agents-in-warp/",
- "destination": "/agent-platform/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8069,7 +8049,7 @@
},
{
"source": "/agent-platform/warp-agents/warp-agents/",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8279,7 +8259,7 @@
},
{
"source": "/agents/autonomy/",
- "destination": "/agent-platform/getting-started/agents-in-warp/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8509,7 +8489,7 @@
},
{
"source": "/getting-started/readme/agents-in-warp",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8764,7 +8744,7 @@
},
{
"source": "/agent-platform/agent/agents-overview",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8794,7 +8774,7 @@
},
{
"source": "/agent-platform/warps-agent/warp-agents",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8824,12 +8804,12 @@
},
{
"source": "/agents",
- "destination": "/agent-platform/",
+ "destination": "/agents/",
"statusCode": 308
},
{
"source": "/agents/agent-modality-beta",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/",
"statusCode": 308
},
{
@@ -8864,7 +8844,7 @@
},
{
"source": "/agents/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -8904,7 +8884,7 @@
},
{
"source": "/agent-platform/agent/generate",
- "destination": "/agent-platform/local-agents/overview/",
+ "destination": "/agents/local-agents/generate/",
"statusCode": 308
},
{
@@ -10221,6 +10201,26 @@
"source": "/team/",
"destination": "/knowledge-and-collaboration/teams/",
"statusCode": 308
+ },
+ {
+ "source": "/agents/local-agents/overview",
+ "destination": "/agents/",
+ "statusCode": 308
+ },
+ {
+ "source": "/agents/local-agents/overview/",
+ "destination": "/agents/",
+ "statusCode": 308
+ },
+ {
+ "source": "/agents/getting-started/agents-in-warp",
+ "destination": "/agents/",
+ "statusCode": 308
+ },
+ {
+ "source": "/agents/getting-started/agents-in-warp/",
+ "destination": "/agents/",
+ "statusCode": 308
}
]
-}
\ No newline at end of file
+}