Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/agent-platform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion docs/agent-platform/warp-agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/agent-platform/warp-agents/codebase-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion docs/agent-platform/warp-agents/slash-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

<table><thead><tr><th width="211.64453125">Slash Command</th><th>Description</th></tr></thead><tbody><tr><td><code>/add-mcp</code></td><td>Add a new <a href="mcp.md">MCP server</a>.</td></tr><tr><td><code>/add-prompt</code></td><td>Add a new <a href="https://docs.warp.dev/knowledge-and-collaboration/warp-drive/prompts">Agent Prompt</a> in Warp Drive.</td></tr><tr><td><code>/add-rule</code></td><td>Add a new <a href="rules.md">Global Rule</a> for the Agent.</td></tr><tr><td><code>/agent</code></td><td>Start a new <a href="interacting-with-agents/">agent conversation</a>. Optionally include a prompt to send immediately.</td></tr><tr><td><code>/changelog</code></td><td>Open the latest Warp <a href="https://docs.warp.dev/changelog">changelog</a>.</td></tr><tr><td><code>/cloud-agent</code></td><td>Start a new <a href="../cloud-agents/overview.md">cloud agent conversation</a>. <code>*</code></td></tr><tr><td><code>/compact</code></td><td>Free up context by summarizing conversation history.</td></tr><tr><td><code>/compact-and</code></td><td>Compact the current conversation and then send a follow-up prompt.</td></tr><tr><td><code>/conversations</code></td><td>Open <a href="interacting-with-agents/">conversation history</a>.</td></tr><tr><td><code>/cost</code></td><td>Toggle credit usage details in the current conversation.</td></tr><tr><td><code>/create-environment</code></td><td>Create a <a href="../cloud-agents/environments.md">Warp Environment</a> (Docker image + repos) via guided setup. <code>*</code></td></tr><tr><td><code>/create-new-project</code></td><td>Have the Agent walk you through creating a new coding project. <code>*</code></td></tr><tr><td><code>/export-to-clipboard</code></td><td>Export the current conversation to clipboard in markdown format.</td></tr><tr><td><code>/export-to-file</code></td><td>Export the current conversation to a markdown file.</td></tr><tr><td><code>/feedback</code></td><td>Send feedback to the Warp team. Only the Agent-drafted flow consumes credits. See <a href="https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#using-feedback-in-warp">Using <code>/feedback</code> in Warp</a> for details. <code>*</code></td></tr><tr><td><code>/fork</code></td><td><a href="interacting-with-agents/conversation-forking.md">Forks the current conversation</a> into a new thread with the full context and history of the original. <br><br>You can optionally include a prompt that will be sent immediately in the forked conversation.</td></tr><tr><td><code>/fork-and-compact</code></td><td><a href="interacting-with-agents/conversation-forking.md">Forks the current conversation</a> and automatically compacts the forked version.<br><br>Useful when you want a fresh, summarized starting point that preserves relevant context while trimming the rest.</td></tr><tr><td><code>/fork-from</code></td><td>Open a searchable menu to <a href="interacting-with-agents/conversation-forking.md">fork the conversation</a> from a specific query. Select a query to create a fork that includes everything up to that point.</td></tr><tr><td><code>/index</code></td><td>Index the current codebase using <a href="codebase-context.md">Codebase Context</a>.</td></tr><tr><td><code>/init</code></td><td>Index the current codebase and generate an <a href="rules.md">AGENTS.md file</a>. <code>*</code></td></tr><tr><td><code>/model</code></td><td>Switch the base agent model for the current conversation.</td></tr><tr><td><code>/new</code></td><td>Start a new <a href="interacting-with-agents/">agent conversation</a> (alias for <code>/agent</code>).</td></tr><tr><td><code>/open-code-review</code></td><td>Open the <a href="https://docs.warp.dev/code/code-review">code review</a> pane.</td></tr><tr><td><code>/open-file</code></td><td>Open a file for editing in Warp's <a href="https://docs.warp.dev/code/code-editor">code editor</a>.</td></tr><tr><td><code>/open-mcp-servers</code></td><td>View the status of your <a href="mcp.md">MCP servers</a>.</td></tr><tr><td><code>/open-project-rules</code></td><td>Open the <a href="rules.md#project-rules">Project Rules</a> file (<code>AGENTS</code>).</td></tr><tr><td><code>/open-repo</code></td><td>Switch to another indexed repository.</td></tr><tr><td><code>/open-rules</code></td><td>View all of your global and project <a href="rules.md">rules</a>.</td></tr><tr><td><code>/open-settings-file</code></td><td>Open the Warp <a href="https://docs.warp.dev/warp/terminal/settings">settings file</a> (<code>settings.toml</code>) in Warp's code editor.</td></tr><tr><td><code>/open-skill</code></td><td>Open an interactive menu to browse and edit project or global <a href="skills.md">skills</a>.</td></tr><tr><td><code>/orchestrate</code></td><td>Break a task into subtasks and run them in parallel with multiple agents. <code>*</code></td></tr><tr><td><code>/plan</code></td><td>Prompt the Agent to do some research and create a <a href="planning.md">plan</a> for a task.</td></tr><tr><td><code>/pr-comments</code></td><td>Pull GitHub PR review comments into Warp. <code>*</code></td></tr><tr><td><code>/profile</code></td><td>Switch the active <a href="agent-profiles-permissions.md">execution profile</a>.</td></tr><tr><td><code>/prompts</code></td><td>Search saved <a href="https://docs.warp.dev/knowledge-and-collaboration/warp-drive/prompts">prompts</a>.</td></tr><tr><td><code>/rename-tab</code></td><td>Rename the current tab. Include the new tab name as an argument (for example, <code>/rename-tab deploy</code>).</td></tr><tr><td><code>/rewind</code></td><td>Rewind to a previous point in the conversation.</td></tr><tr><td><code>/skills</code></td><td>Invoke a <a href="skills.md">skill</a> from a searchable menu.</td></tr><tr><td><code>/usage</code></td><td>Open <a href="https://docs.warp.dev/support-and-community/plans-and-billing">billing and usage</a> settings.</td></tr></tbody></table>
<table><thead><tr><th width="211.64453125">Slash Command</th><th>Description</th></tr></thead><tbody><tr><td><code>/add-mcp</code></td><td>Add a new <a href="mcp.md">MCP server</a>.</td></tr><tr><td><code>/add-prompt</code></td><td>Add a new <a href="https://docs.warp.dev/knowledge-and-collaboration/warp-drive/prompts">Agent Prompt</a> in Warp Drive.</td></tr><tr><td><code>/add-rule</code></td><td>Add a new <a href="rules.md">Global Rule</a> for the Agent.</td></tr><tr><td><code>/agent</code></td><td>Start a new <a href="interacting-with-agents/">agent conversation</a>. Optionally include a prompt to send immediately.</td></tr><tr><td><code>/changelog</code></td><td>Open the latest Warp <a href="https://docs.warp.dev/changelog">changelog</a>.</td></tr><tr><td><code>/cloud-agent</code></td><td>Start a new <a href="../cloud-agents/overview.md">cloud agent conversation</a>. <code>*</code></td></tr><tr><td><code>/compact</code></td><td>Free up context by summarizing conversation history.</td></tr><tr><td><code>/compact-and</code></td><td>Compact the current conversation and then send a follow-up prompt.</td></tr><tr><td><code>/conversations</code></td><td>Open <a href="interacting-with-agents/">conversation history</a>.</td></tr><tr><td><code>/cost</code></td><td>Toggle credit usage details in the current conversation.</td></tr><tr><td><code>/create-environment</code></td><td>Create a <a href="../cloud-agents/environments.md">Warp Environment</a> (Docker image + repos) via guided setup. <code>*</code></td></tr><tr><td><code>/create-new-project</code></td><td>Have the Agent walk you through creating a new coding project. <code>*</code></td></tr><tr><td><code>/export-to-clipboard</code></td><td>Export the current conversation to clipboard in markdown format.</td></tr><tr><td><code>/export-to-file</code></td><td>Export the current conversation to a markdown file.</td></tr><tr><td><code>/feedback</code></td><td>Send feedback to the Warp team. Only the Agent-drafted flow consumes credits. See <a href="https://docs.warp.dev/support-and-community/troubleshooting-and-support/sending-us-feedback#using-feedback-in-warp">Using <code>/feedback</code> in Warp</a> for details. <code>*</code></td></tr><tr><td><code>/fork</code></td><td><a href="interacting-with-agents/conversation-forking.md">Forks the current conversation</a> into a new thread with the full context and history of the original. <br><br>You can optionally include a prompt that will be sent immediately in the forked conversation.</td></tr><tr><td><code>/fork-and-compact</code></td><td><a href="interacting-with-agents/conversation-forking.md">Forks the current conversation</a> and automatically compacts the forked version.<br><br>Useful when you want a fresh, summarized starting point that preserves relevant context while trimming the rest.</td></tr><tr><td><code>/fork-from</code></td><td>Open a searchable menu to <a href="interacting-with-agents/conversation-forking.md">fork the conversation</a> from a specific query. Select a query to create a fork that includes everything up to that point.</td></tr><tr><td><code>/index</code></td><td>Index the current codebase using <a href="codebase-context.md">Codebase Context</a>.</td></tr><tr><td><code>/init</code></td><td>Index the current codebase and generate an <a href="rules.md">AGENTS.md file</a>. <code>*</code></td></tr><tr><td><code>/model</code></td><td>Switch the base agent model for the current conversation.</td></tr><tr><td><code>/new</code></td><td>Start a new <a href="interacting-with-agents/">agent conversation</a> (alias for <code>/agent</code>).</td></tr><tr><td><code>/open-code-review</code></td><td>Open the <a href="https://docs.warp.dev/code/code-review">code review</a> pane.</td></tr><tr><td><code>/open-file</code></td><td>Open a file for editing in Warp's <a href="https://docs.warp.dev/code/code-editor">code editor</a>.</td></tr><tr><td><code>/open-mcp-servers</code></td><td>View the status of your <a href="mcp.md">MCP servers</a>.</td></tr><tr><td><code>/open-project-rules</code></td><td>Open the <a href="rules.md#project-rules">Project Rules</a> file (<code>AGENTS</code>).</td></tr><tr><td><code>/open-repo</code></td><td>Switch to another indexed repository.</td></tr><tr><td><code>/open-rules</code></td><td>View all of your global and project <a href="rules.md">rules</a>.</td></tr><tr><td><code>/open-settings-file</code></td><td>Open the Warp <a href="https://docs.warp.dev/terminal/settings">settings file</a> (<code>settings.toml</code>) in Warp's code editor.</td></tr><tr><td><code>/open-skill</code></td><td>Open an interactive menu to browse and edit project or global <a href="skills.md">skills</a>.</td></tr><tr><td><code>/orchestrate</code></td><td>Break a task into subtasks and run them in parallel with multiple agents. <code>*</code></td></tr><tr><td><code>/plan</code></td><td>Prompt the Agent to do some research and create a <a href="planning.md">plan</a> for a task.</td></tr><tr><td><code>/pr-comments</code></td><td>Pull GitHub PR review comments into Warp. <code>*</code></td></tr><tr><td><code>/profile</code></td><td>Switch the active <a href="agent-profiles-permissions.md">execution profile</a>.</td></tr><tr><td><code>/prompts</code></td><td>Search saved <a href="https://docs.warp.dev/knowledge-and-collaboration/warp-drive/prompts">prompts</a>.</td></tr><tr><td><code>/rename-tab</code></td><td>Rename the current tab. Include the new tab name as an argument (for example, <code>/rename-tab deploy</code>).</td></tr><tr><td><code>/rewind</code></td><td>Rewind to a previous point in the conversation.</td></tr><tr><td><code>/skills</code></td><td>Invoke a <a href="skills.md">skill</a> from a searchable menu.</td></tr><tr><td><code>/usage</code></td><td>Open <a href="https://docs.warp.dev/support-and-community/plans-and-billing">billing and usage</a> settings.</td></tr></tbody></table>

{% hint style="warning" %}
Slash commands marked with a `*` consume credits to complete the task.
Expand Down
2 changes: 1 addition & 1 deletion docs/enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Warp Enterprise serves three primary audiences:
### Security and compliance
* **SOC 2 Type II certified** - Meets enterprise security and compliance requirements
* **Zero Data Retention (ZDR)** - No customer data is retained, stored, or used for training by contracted LLM providers
* **Open source client** - Warp's client code is published under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp) for security review and audit
* **Open source client** - Warp's client code is published under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp) for security review and audit
* **Bring Your Own LLM (BYOLLM)** - Route inference through your own cloud infrastructure (AWS Bedrock)
* **Flexible deployment** - Choose Warp-hosted or hybrid deployment models
* **Telemetry controls** - Configure what data is collected at the team level
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Warp's security philosophy centers on **transparency and developer control**:
* **Real-time monitoring** - Use Warp's [Network Log](https://docs.warp.dev/support-and-community/privacy-and-security/network-log) to monitor all network requests in real time
* **Opt-out controls** - Disable telemetry and crash reporting at any time while retaining full functionality
* **Team-level enforcement** - Admins can configure telemetry and data collection policies for the entire organization
* **Open source client** - Warp's client code is published under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp), so security teams can audit the codebase directly. See [Contributing to Warp](https://docs.warp.dev/support-and-community/community/contributing) for the source repository and the security reporting process.
* **Open source client** - Warp's client code is published under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp), so security teams can audit the codebase directly. See [Contributing to Warp](https://docs.warp.dev/support-and-community/community/contributing) for the source repository and the security reporting process.

## What telemetry does Warp collect and why?

Expand Down
2 changes: 1 addition & 1 deletion docs/support-and-community/community/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: >-

# Contributing to Warp

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), and there's room for every kind of contribution — from a one-line bug report to a full feature PR, a new theme, or a workflow that ships to every Warp user. For the full code contribution flow, see [`CONTRIBUTING.md`](https://github.com/warpdotdev/warp/blob/master/CONTRIBUTING.md).
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), and there's room for every kind of contribution — from a one-line bug report to a full feature PR, a new theme, or a workflow that ships to every Warp user. For the full code contribution flow, see [`CONTRIBUTING.md`](https://github.com/warpdotdev/warp/blob/master/CONTRIBUTING.md).

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 [SUGGESTION] The LICENSE link in this sentence was updated from master to main (good fix), but the CONTRIBUTING.md link in the same sentence still points to master. Both CONTRIBUTING.md and CODE_OF_CONDUCT.md (line 44) also still reference master. Those links currently return HTTP 200 so they aren't broken today, but updating them to main would make the file consistent and more resilient if the master branch redirect is ever removed.\n\nsuggestion\nWarp's client is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/main/LICENSE) at [`warpdotdev/warp`](https://github.com/warpdotdev/warp), and there's room for every kind of contribution — from a one-line bug report to a full feature PR, a new theme, or a workflow that ships to every Warp user. For the full code contribution flow, see [`CONTRIBUTING.md`](https://github.com/warpdotdev/warp/blob/main/CONTRIBUTING.md).\n


## Ways you can contribute

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Warp doesn’t currently offer discounts for students or non-profits. We recomme
For open source teams, two paths are available:

* The [Oz Open Source Partnership](https://docs.warp.dev/support-and-community/community/open-source-partnership) program offers free Oz agent credits to high-impact open source projects.
* Warp's client itself is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE), so you can build, run, and contribute to it directly. See [Contributing to Warp](https://docs.warp.dev/support-and-community/community/contributing) for the flow.
* Warp's client itself is open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL), so you can build, run, and contribute to it directly. See [Contributing to Warp](https://docs.warp.dev/support-and-community/community/contributing) for the flow.

### Where is Warp Drive data for my team stored?

Expand Down
2 changes: 1 addition & 1 deletion docs/support-and-community/privacy-and-security/privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Our philosophy is complete transparency and control over any data leaving your m
* Read a complete list of [all the telemetry events](privacy.md#exhaustive-telemetry-table) that get sent for app analytics
* Monitor telemetry in real-time with Warp's native [Network Log](network-log.md)
* [Opt out](privacy.md#how-to-disable-telemetry-and-crash-reporting) of telemetry at any time
* Read and audit Warp's client source code at [`warpdotdev/warp`](https://github.com/warpdotdev/warp), open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE)
* Read and audit Warp's client source code at [`warpdotdev/warp`](https://github.com/warpdotdev/warp), open source under [AGPL v3](https://github.com/warpdotdev/warp/blob/master/LICENSE-AGPL)

## What telemetry data does Warp collect and why?

Expand Down
Loading