Skip to content

Commit 34990aa

Browse files
authored
Merge branch 'main' into oz/docs/snapshot-declarations
2 parents a1e84de + 0c9c2f0 commit 34990aa

29 files changed

Lines changed: 260 additions & 65 deletions

File tree

src/content/docs/agent-platform/capabilities/full-terminal-use.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,14 @@ The behavior differs based on where you start the long-running command:
107107
1. Run an interactive command (e.g., `python`, `psql`)
108108
2. Press `⌘↩` (macOS) or `Ctrl+Shift+Enter` (Windows/Linux), or use `⌘I` (macOS) / `Ctrl+I` (Windows/Linux), to tag in the agent
109109
3. The input switches to Agent Mode with full controls
110-
4. When you exit, an agent conversation block appears in your terminal blocklist
110+
4. When you exit, an agent conversation block appears in your terminal block list
111111
5. Click the block to reopen the full conversation with your LRC interaction context
112112
</TabItem>
113113
<TabItem label="From agent view">
114114
1. The agent runs an interactive command as part of your conversation
115115
2. Use `⌘↩` (macOS) or `Ctrl+Shift+Enter` (Windows/Linux) to tag in if the agent isn't already interacting
116116
3. The UI stays the same since you're already in agent view
117-
4. When you exit, the interaction remains part of your conversation. No separate block is created in the terminal blocklist
117+
4. When you exit, the interaction remains part of your conversation. No separate block is created in the terminal block list
118118
5. Commands run in agent view are automatically included as context
119119
</TabItem>
120120
</Tabs>

src/content/docs/agent-platform/cloud-agents/deployment-patterns.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deployment Patterns
2+
title: Deployment patterns
33
description: >-
44
Common architectures for deploying cloud agents, including CLI-only,
55
Oz-hosted, and self-hosted execution patterns.

src/content/docs/agent-platform/cloud-agents/faqs.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Yes. Cloud agent runs execute in a full Linux environment and behave like a loca
5757

5858
The cloud agents platform supports self-hosting the **agent sandbox** (the execution environment) on your own infrastructure. The **control plane**—which handles orchestration, tracking, and auditability—remains Warp-managed and is not self-hosted.
5959

60-
Self-hosted execution is available on **Enterprise** plans. See [Self-Hosting](/agent-platform/cloud-agents/self-hosting/) and [Deployment Patterns](/agent-platform/cloud-agents/deployment-patterns/) for details.
60+
Self-hosted execution is available on **Enterprise** plans. See [Self-hosting](/agent-platform/cloud-agents/self-hosting/) and [Deployment patterns](/agent-platform/cloud-agents/deployment-patterns/) for details.
6161

6262
:::note
6363
[Bring Your Own Key (BYOK)](/support-and-community/plans-and-billing/bring-your-own-api-key/) does not apply to cloud agents. BYOK keys are stored locally on your device and cannot be passed to cloud-hosted or self-hosted agent runs. All cloud agent runs consume [Warp credits](/support-and-community/plans-and-billing/credits/).
@@ -203,7 +203,7 @@ With self-hosting, repositories are cloned and stored only on your infrastructur
203203
* **Execution plane (your infrastructure)** — Repository clones, build artifacts, runtime secrets, and container filesystem state stay on the machines you control.
204204
* **Control plane (Warp-hosted)** — Session transcripts (which include code context from agent interactions), orchestration metadata, and LLM inference route through Warp's backend under [Zero Data Retention (ZDR)](/enterprise/security-and-compliance/security-overview/#zero-data-retention-zdr) agreements. Warp does not persistently store your source code or use it for model training.
205205

206-
See [Self-Hosting](/agent-platform/cloud-agents/self-hosting/) for deployment options and [Security Overview](/enterprise/security-and-compliance/security-overview/) for full details.
206+
See [Self-hosting](/agent-platform/cloud-agents/self-hosting/) for deployment options and [Security Overview](/enterprise/security-and-compliance/security-overview/) for full details.
207207

208208
### Can I use `oz agent run` in CI or existing runners?
209209

@@ -226,7 +226,7 @@ Yes. LLM inference routes through Warp's backend, which has [Zero Data Retention
226226
The [unmanaged architecture](/agent-platform/cloud-agents/self-hosting/unmanaged/) is well-suited for large monorepos because agents run directly in your pre-provisioned environment — there is no Docker image build or repo cloning step. For the [managed architecture](/agent-platform/cloud-agents/self-hosting/#managed-architecture), the Docker backend supports volume mounts (`-v` flag) to mount a pre-existing repo checkout from the host into task containers. With the Kubernetes backend, use `pod_template` to configure persistent volume claims or pre-populated storage for the same purpose.
227227

228228
:::note
229-
The managed architecture supports three execution backends: **Docker** (default), **Kubernetes**, and **Direct** (no container runtime). The Kubernetes backend runs each task as a Kubernetes Job and includes a Helm chart for deployment. See [Self-Hosting](/agent-platform/cloud-agents/self-hosting/#choosing-a-managed-backend) for details on choosing a backend.
229+
The managed architecture supports three execution backends: **Docker** (default), **Kubernetes**, and **Direct** (no container runtime). The Kubernetes backend runs each task as a Kubernetes Job and includes a Helm chart for deployment. See [Self-hosting](/agent-platform/cloud-agents/self-hosting/#choosing-a-managed-backend) for details on choosing a backend.
230230
:::
231231

232232
### Do Kubernetes pods provide enough sandboxing for self-hosted agents?

src/content/docs/agent-platform/cloud-agents/managing-cloud-agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Managing Cloud Agents
2+
title: Managing cloud agents
33
description: >-
44
Monitor and manage cloud agent activity across your team with Warp's
55
centralized management view, including filtering, status tracking, and

src/content/docs/agent-platform/cloud-agents/overview.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Cloud agents run on the [Oz Platform](/agent-platform/cloud-agents/platform/), w
5757

5858
The exact way tasks are triggered and executed depends on your deployment model (for example CLI-only, Warp-hosted orchestration, or self-hosted execution). Those options are covered in the [Deployment Patterns](/agent-platform/cloud-agents/deployment-patterns/) pages.
5959

60-
For teams that need execution to stay within their network boundary, self-hosting supports two architectures: a **managed** worker daemon that lets Oz orchestrate agents in Docker containers on your machines, and an **unmanaged** mode where you run `oz agent run` directly in your CI, Kubernetes, or dev environment. See [Self-Hosting](/agent-platform/cloud-agents/self-hosting/) for details.
60+
For teams that need execution to stay within their network boundary, self-hosting supports two architectures: a **managed** worker daemon that lets Oz orchestrate agents in Docker containers on your machines, and an **unmanaged** mode where you run `oz agent run` directly in your CI, Kubernetes, or dev environment. See [Self-hosting](/agent-platform/cloud-agents/self-hosting/) for details.
6161

6262
### What you get by default
6363

@@ -146,6 +146,7 @@ If your credit balance reaches zero, cloud agent runs will not be able to execut
146146
* [Oz Platform](/agent-platform/cloud-agents/platform/) — CLI, Oz API/SDK, orchestration, tasks, environments, hosts, integrations, and more.
147147
* [Harnesses](/agent-platform/cloud-agents/harnesses/) — pick between Warp Agent, Claude Code, and Codex for any cloud agent run.
148148
* [Agent identities](/agent-platform/cloud-agents/agents/) — team-scoped bot accounts that own and execute cloud agent runs.
149+
* [Multi-agent orchestration](/agent-platform/cloud-agents/orchestration/) — coordinate a parent agent and its child agents across local and cloud runs to build supervisor/worker, fan-out, critic, DAG, and swarm workflows.
149150
* [Skills as Agents](/agent-platform/cloud-agents/skills-as-agents/) — run agents based on reusable skill definitions from the CLI, web app, API, or on a schedule.
150151
* [Oz CLI](/reference/cli/) — shows how to run agents in non-interactive mode from CI, scripts, or remote machines, including auth and common commands.
151152
* [Environments](/agent-platform/cloud-agents/environments/) — explains how environments provide the runtime context (repo, image, startup commands) for agent tasks.

src/content/docs/agent-platform/cloud-agents/platform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ With self-hosting:
185185
* This is used when teams want code and execution to remain on their own systems rather than being cloned or executed in Warp's cloud.
186186

187187
:::note
188-
**Enterprise feature**: Self-hosted execution requires an Enterprise plan. See [Self-Hosting](/agent-platform/cloud-agents/self-hosting/) for setup instructions.
188+
**Enterprise feature**: Self-hosted execution requires an Enterprise plan. See [Self-hosting](/agent-platform/cloud-agents/self-hosting/) for setup instructions.
189189
:::
190190

191191
---

src/content/docs/agent-platform/cloud-agents/warp-hosting.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Warp-hosted agents
33
description: >-
4-
Run Oz cloud agents on Warp's infrastructure. Warp handles scaling, isolation, and performance for agent execution.
4+
Run cloud agents on Warp's infrastructure. Warp handles scaling, isolation, and performance for agent execution.
55
sidebar:
66
label: "Warp-hosted agents"
77
---
88

9-
Warp's managed infrastructure lets your team easily run Oz cloud agent workloads in fast and secure sandboxes.
9+
Warp's managed infrastructure lets your team run cloud agent workloads in fast, secure sandboxes.
1010

1111
Use Warp-hosted agents to quickly get started with Oz, without needing to configure compute resources or maintain services.
1212

src/content/docs/agent-platform/local-agents/agent-context/blocks-as-context.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Attach terminal output blocks to your agent prompts so the agent can understand
1212

1313
Warp’s Agent can use blocks from your Agent conversations as context to better understand your queries and generate more relevant responses.
1414

15-
You can attach a block directly from the terminal blocklist by clicking the AI sparkles icon on it and selecting “Attach as context.”
15+
You can attach a block directly from the terminal block list by clicking the AI sparkles icon on it and selecting “Attach as context.”
1616

1717
<figure>
1818
![From a block of output, attach the block and ask Agent Mode to remove all untracked files.](../../../../../assets/agent-platform/remove_all_untracked_files.png)
@@ -77,8 +77,8 @@ The most common use case is to ask the AI to fix an error. You can attach the er
7777

7878
Blocks in Warp belong to either the terminal view or a specific agent conversation:
7979

80-
* **Terminal blocks** - Commands you run directly in the terminal. These always appear in your terminal blocklist and can be attached as context to multiple conversations.
81-
* **Agent conversation blocks** - Commands executed within an agent conversation (either by you or the agent). These only appear within that specific conversation and don't clutter your terminal blocklist.
80+
* **Terminal blocks** - Commands you run directly in the terminal. These always appear in your terminal block list and can be attached as context to multiple conversations.
81+
* **Agent conversation blocks** - Commands executed within an agent conversation (either by you or the agent). These only appear within that specific conversation and don't clutter your terminal block list.
8282

8383
This separation keeps your terminal view clean while preserving full context within each conversation.
8484

src/content/docs/agent-platform/local-agents/interacting-with-agents/conversation-forking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can also access this conversation view from the conversation chip in the cur
4141

4242
#### **2. From the footer of the most recent AI response block**
4343

44-
In any conversation in the blocklist, click the **fork button** in the footer of the most recent AI block. A new conversation opens in a separate pane with the full context of the original.
44+
In any conversation in the block list, click the **fork button** in the footer of the most recent AI block. A new conversation opens in a separate pane with the full context of the original.
4545

4646
![Fork conversation button in the footer of the most recent agent response block](../../../../../assets/agent-platform/conversation-forking-footer.png)
4747

src/content/docs/agent-platform/local-agents/interacting-with-agents/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ If you switch models during a conversation, the context usage indicator updates
142142

143143
Warp automatically detects when your query has shifted to a new topic. When this happens, it suggests starting a new conversation instead of continuing in the same context.
144144

145-
These options appear in the blocklist, where you can decide whether to branch off into a new conversation or keep going with the current one.
145+
These options appear in the block list, where you can decide whether to branch off into a new conversation or keep going with the current one.
146146

147-
![Suggestion in the blocklist to start a new conversation when Warp detects a topic shift.](../../../../../assets/agent-platform/conversation-segmentation.png)
147+
![Suggestion in the block list to start a new conversation when Warp detects a topic shift.](../../../../../assets/agent-platform/conversation-segmentation.png)
148148

149149
You can also create a new conversation manually at any time by using the keyboard shortcut, opening a new tab, or opening a new pane.
150150

0 commit comments

Comments
 (0)