diff --git a/docs/agent-platform/README.md b/docs/agent-platform/README.md index fc214285c..0f4d51bc5 100644 --- a/docs/agent-platform/README.md +++ b/docs/agent-platform/README.md @@ -8,7 +8,7 @@ description: > Warp includes **Oz**, the orchestration platform for cloud agents. While Warp provides the terminal and coding surface you work in day-to-day, Oz is the underlying orchestration layer that makes running agents at scale possible. -Warp's client is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE), so the editor and terminal that host your agents are fully auditable. See [Contributing to Warp](https://docs.warp.dev/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](https://docs.warp.dev/support-and-community/community/contributing) for the source and contribution flow. With Oz, you can: diff --git a/docs/agent-platform/warp-agents/README.md b/docs/agent-platform/warp-agents/README.md index a0a9f1af7..9904320a5 100644 --- a/docs/agent-platform/warp-agents/README.md +++ b/docs/agent-platform/warp-agents/README.md @@ -16,7 +16,7 @@ Warp's AI features can be globally disabled in **Settings** > **Agents** > **War 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). {% endhint %} -Warp's client is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp). The agent surface you're reading about is built in the open — see [Contributing to Warp](https://docs.warp.dev/support-and-community/community/contributing) to read the code, file issues, or shape the roadmap. +Warp's client is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp). The agent surface you're reading about is built in the open — see [Contributing to Warp](https://docs.warp.dev/support-and-community/community/contributing) to read the code, file issues, or shape the roadmap. ## What you can do with agents diff --git a/docs/agent-platform/warp-agents/agent-context/README.md b/docs/agent-platform/warp-agents/agent-context/README.md index ea6deda7b..89c230bb6 100644 --- a/docs/agent-platform/warp-agents/agent-context/README.md +++ b/docs/agent-platform/warp-agents/agent-context/README.md @@ -20,4 +20,4 @@ Commands you run inside an agent conversation are automatically included as cont *** -This is distinct from other persistent or automatic sources of context, such as [Rules](.././rules.md), [Warp Drive as Agent Mode Context](https://docs.warp.dev/warp/knowledge-and-collaboration/warp-drive/agent-mode-context), and [Model Context Protocol (MCP)](.././mcp.md), which the Agent also uses when available. +This is distinct from other persistent or automatic sources of context, such as [Rules](.././rules.md), [Warp Drive as Agent Mode Context](https://docs.warp.dev/knowledge-and-collaboration/warp-drive/agent-mode-context), and [Model Context Protocol (MCP)](.././mcp.md), which the Agent also uses when available. diff --git a/docs/agent-platform/warp-agents/codebase-context.md b/docs/agent-platform/warp-agents/codebase-context.md index 603005a45..10639d80c 100644 --- a/docs/agent-platform/warp-agents/codebase-context.md +++ b/docs/agent-platform/warp-agents/codebase-context.md @@ -31,7 +31,7 @@ git clone https://github.com/vercel/next.js.git && cd next.js ## Indexing your codebase -When you open a directory in Warp, we check if it is part of a Git repository. If it is, Warp begins indexing the source code to provide rich context for Agents. Warp also detects [Git worktree](https://docs.warp.dev/warp/code/git-worktrees) checkouts — each worktree is indexed as its own repository, so Agents always have accurate context for the branch you're working on. +When you open a directory in Warp, we check if it is part of a Git repository. If it is, Warp begins indexing the source code to provide rich context for Agents. Warp also detects [Git worktree](https://docs.warp.dev/code/git-worktrees) checkouts — each worktree is indexed as its own repository, so Agents always have accurate context for the branch you're working on. {% hint style="info" %} Code indexed with Codebase Context is never stored on our servers. Codebase Context works with both local agent sessions and [cloud agent runs](../cloud-agents/overview.md). Without Codebase Context enabled, agents will still be able use terminal commands (i.e. `grep`, `sed`) to navigate your code. @@ -140,6 +140,6 @@ Here's an example from [Warp Guides](https://docs.warp.dev/guides), where Zach d With your codebase indexed, you can browse your project directly in Warp and start letting agents take action on your code. -* **[File Tree](https://docs.warp.dev/warp/code/code-editor/file-tree)** - Browse your project structure in Warp's sidebar and open files directly. -* **[Code editor](https://docs.warp.dev/warp/code/code-editor)** - Edit files with syntax highlighting, LSP support, and find-and-replace without leaving Warp. +* **[File Tree](https://docs.warp.dev/code/code-editor/file-tree)** - Browse your project structure in Warp's sidebar and open files directly. +* **[Code editor](https://docs.warp.dev/code/code-editor)** - Edit files with syntax highlighting, LSP support, and find-and-replace without leaving Warp. * **[Agent profiles and permissions](agent-profiles-permissions.md)** - Configure how much autonomy the agent has when working with your code. diff --git a/docs/agent-platform/warp-agents/interactive-code-review.md b/docs/agent-platform/warp-agents/interactive-code-review.md index aac9ac532..6593cb516 100644 --- a/docs/agent-platform/warp-agents/interactive-code-review.md +++ b/docs/agent-platform/warp-agents/interactive-code-review.md @@ -14,10 +14,10 @@ You can inspect diffs, leave inline comments, batch feedback, and send all reque {% embed url="https://youtu.be/jit_6eevt8w?si=EFKYUSsofvBYUPI-" %} -**Interactive Code Review builds on Warp's existing** [Code Review](https://docs.warp.dev/warp/code/code-review) **panel.** For details on diff views, reverting hunks, opening files, and all available entry points, see the Code Review documentation. +**Interactive Code Review builds on Warp's existing** [Code Review](https://docs.warp.dev/code/code-review) **panel.** For details on diff views, reverting hunks, opening files, and all available entry points, see the Code Review documentation. {% hint style="info" %} -Note that both the [Code Review](https://docs.warp.dev/warp/code/code-review) panel and Interactive Code Review require working in a Git-indexed directory. +Note that both the [Code Review](https://docs.warp.dev/code/code-review) panel and Interactive Code Review require working in a Git-indexed directory. {% endhint %} ### Supported agents diff --git a/docs/agent-platform/warp-agents/slash-commands.md b/docs/agent-platform/warp-agents/slash-commands.md index a44a5d136..1c5a1d9bb 100644 --- a/docs/agent-platform/warp-agents/slash-commands.md +++ b/docs/agent-platform/warp-agents/slash-commands.md @@ -16,7 +16,7 @@ As you type, the menu filters results in real time, making it easy to find and r Warp currently supports the following built-in Slash Commands: -
| Slash Command | Description |
|---|---|
/add-mcp | Add a new MCP server. |
/add-prompt | Add a new Agent Prompt in Warp Drive. |
/add-rule | Add a new Global Rule for the Agent. |
/agent | Start a new agent conversation. Optionally include a prompt to send immediately. |
/changelog | Open the latest Warp changelog. |
/cloud-agent | Start a new cloud agent conversation. * |
/compact | Free up context by summarizing conversation history. |
/compact-and | Compact the current conversation and then send a follow-up prompt. |
/conversations | Open conversation history. |
/cost | Toggle credit usage details in the current conversation. |
/create-environment | Create a Warp Environment (Docker image + repos) via guided setup. * |
/create-new-project | Have the Agent walk you through creating a new coding project. * |
/export-to-clipboard | Export the current conversation to clipboard in markdown format. |
/export-to-file | Export the current conversation to a markdown file. |
/feedback | Send feedback to the Warp team. Only the Agent-drafted flow consumes credits. See Using /feedback in Warp for details. * |
/fork | Forks the current conversation into a new thread with the full context and history of the original. You can optionally include a prompt that will be sent immediately in the forked conversation. |
/fork-and-compact | Forks the current conversation and automatically compacts the forked version. Useful when you want a fresh, summarized starting point that preserves relevant context while trimming the rest. |
/fork-from | Open a searchable menu to fork the conversation from a specific query. Select a query to create a fork that includes everything up to that point. |
/index | Index the current codebase using Codebase Context. |
/init | Index the current codebase and generate an AGENTS.md file. * |
/model | Switch the base agent model for the current conversation. |
/new | Start a new agent conversation (alias for /agent). |
/open-code-review | Open the code review pane. |
/open-file | Open a file for editing in Warp's code editor. |
/open-mcp-servers | View the status of your MCP servers. |
/open-project-rules | Open the Project Rules file (AGENTS). |
/open-repo | Switch to another indexed repository. |
/open-rules | View all of your global and project rules. |
/open-settings-file | Open the Warp settings file (settings.toml) in Warp's code editor. |
/open-skill | Open an interactive menu to browse and edit project or global skills. |
/orchestrate | Break a task into subtasks and run them in parallel with multiple agents. * |
/plan | Prompt the Agent to do some research and create a plan for a task. |
/pr-comments | Pull GitHub PR review comments into Warp. * |
/profile | Switch the active execution profile. |
/prompts | Search saved prompts. |
/rename-tab | Rename the current tab. Include the new tab name as an argument (for example, /rename-tab deploy). |
/rewind | Rewind to a previous point in the conversation. |
/skills | Invoke a skill from a searchable menu. |
/usage | Open billing and usage settings. |
| Slash Command | Description |
|---|---|
/add-mcp | Add a new MCP server. |
/add-prompt | Add a new Agent Prompt in Warp Drive. |
/add-rule | Add a new Global Rule for the Agent. |
/agent | Start a new agent conversation. Optionally include a prompt to send immediately. |
/changelog | Open the latest Warp changelog. |
/cloud-agent | Start a new cloud agent conversation. * |
/compact | Free up context by summarizing conversation history. |
/compact-and | Compact the current conversation and then send a follow-up prompt. |
/conversations | Open conversation history. |
/cost | Toggle credit usage details in the current conversation. |
/create-environment | Create a Warp Environment (Docker image + repos) via guided setup. * |
/create-new-project | Have the Agent walk you through creating a new coding project. * |
/export-to-clipboard | Export the current conversation to clipboard in markdown format. |
/export-to-file | Export the current conversation to a markdown file. |
/feedback | Send feedback to the Warp team. Only the Agent-drafted flow consumes credits. See Using /feedback in Warp for details. * |
/fork | Forks the current conversation into a new thread with the full context and history of the original. You can optionally include a prompt that will be sent immediately in the forked conversation. |
/fork-and-compact | Forks the current conversation and automatically compacts the forked version. Useful when you want a fresh, summarized starting point that preserves relevant context while trimming the rest. |
/fork-from | Open a searchable menu to fork the conversation from a specific query. Select a query to create a fork that includes everything up to that point. |
/index | Index the current codebase using Codebase Context. |
/init | Index the current codebase and generate an AGENTS.md file. * |
/model | Switch the base agent model for the current conversation. |
/new | Start a new agent conversation (alias for /agent). |
/open-code-review | Open the code review pane. |
/open-file | Open a file for editing in Warp's code editor. |
/open-mcp-servers | View the status of your MCP servers. |
/open-project-rules | Open the Project Rules file (AGENTS). |
/open-repo | Switch to another indexed repository. |
/open-rules | View all of your global and project rules. |
/open-settings-file | Open the Warp settings file (settings.toml) in Warp's code editor. |
/open-skill | Open an interactive menu to browse and edit project or global skills. |
/orchestrate | Break a task into subtasks and run them in parallel with multiple agents. * |
/plan | Prompt the Agent to do some research and create a plan for a task. |
/pr-comments | Pull GitHub PR review comments into Warp. * |
/profile | Switch the active execution profile. |
/prompts | Search saved prompts. |
/rename-tab | Rename the current tab. Include the new tab name as an argument (for example, /rename-tab deploy). |
/rewind | Rewind to a previous point in the conversation. |
/skills | Invoke a skill from a searchable menu. |
/usage | Open billing and usage settings. |