From 04ce9463f024d8acf4ddb27450c2b6d2e903fea2 Mon Sep 17 00:00:00 2001 From: hongyi-chen Date: Tue, 19 May 2026 22:08:53 +0000 Subject: [PATCH] docs(harnesses): note multi-harness orchestration is in beta Add a short inline mention on the harnesses overview and the multi-agent orchestration overview that mixing Warp Agent, Claude Code, and Codex inside a single workflow is in beta and available to all users. Kept low-key (no callouts, no separate section) per the existing inline (beta) precedent on Deployment Patterns. Co-Authored-By: Oz --- src/content/docs/agent-platform/cloud-agents/faqs.mdx | 4 ++++ .../docs/agent-platform/cloud-agents/harnesses/index.mdx | 2 +- .../docs/agent-platform/cloud-agents/orchestration/index.mdx | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/content/docs/agent-platform/cloud-agents/faqs.mdx b/src/content/docs/agent-platform/cloud-agents/faqs.mdx index 3d367628..30670fe9 100644 --- a/src/content/docs/agent-platform/cloud-agents/faqs.mdx +++ b/src/content/docs/agent-platform/cloud-agents/faqs.mdx @@ -118,6 +118,10 @@ The cloud agents platform is intentionally flexible. As the developer, you decid Interactive agents can plan work and spawn subagents to parallelize tasks. Cloud agents provide the building blocks for running and coordinating multiple concurrent agents, rather than enforcing a fixed workflow. +### Can a single workflow use more than one harness? + +Yes. Multi-harness orchestration lets a Warp Agent parent dispatch Claude Code or Codex subagents inside a single workflow. It's in beta and available to all users. See [Harnesses in Oz](/agent-platform/cloud-agents/harnesses/) and [Multi-agent orchestration](/agent-platform/cloud-agents/orchestration/) for the parent/child model. + ### Why focus on orchestration primitives instead of immediately adopting new agent standards? We believe durable infrastructure matters more than transient standards. The cloud agents platform is designed to provide stable building blocks—agent runs, environments, auditability, steering, and coordination—that orchestration frameworks and emerging standards can plug into over time. diff --git a/src/content/docs/agent-platform/cloud-agents/harnesses/index.mdx b/src/content/docs/agent-platform/cloud-agents/harnesses/index.mdx index b7e00642..d43cf4c5 100644 --- a/src/content/docs/agent-platform/cloud-agents/harnesses/index.mdx +++ b/src/content/docs/agent-platform/cloud-agents/harnesses/index.mdx @@ -7,7 +7,7 @@ sidebar: label: "Overview" --- -Oz can run third-party agents — [Claude Code](/agent-platform/cloud-agents/harnesses/claude-code/) and [Codex](/agent-platform/cloud-agents/harnesses/codex/) — as cloud agents alongside Warp Agent. You choose the harness (agent runtime) that fits the task; the platform around the run stays the same. +Oz can run third-party agents — [Claude Code](/agent-platform/cloud-agents/harnesses/claude-code/) and [Codex](/agent-platform/cloud-agents/harnesses/codex/) — as cloud agents alongside Warp Agent. You choose the harness (agent runtime) that fits the task; the platform around the run stays the same. Multi-harness orchestration — using more than one harness in a single workflow — is in beta and available to all users. ## What stays the same diff --git a/src/content/docs/agent-platform/cloud-agents/orchestration/index.mdx b/src/content/docs/agent-platform/cloud-agents/orchestration/index.mdx index cdaa7a5a..f50e0c20 100644 --- a/src/content/docs/agent-platform/cloud-agents/orchestration/index.mdx +++ b/src/content/docs/agent-platform/cloud-agents/orchestration/index.mdx @@ -27,7 +27,7 @@ The parent and child don't have to run in the same place. Orchestration supports * **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. -Children can also run with a different agent runtime than the parent. A parent running with the default Warp Agent can spawn children that run with [Claude Code](/agent-platform/cli-agents/claude-code/) or [Codex](/agent-platform/cli-agents/codex/), and vice versa. +Children can also run with a different agent runtime than the parent. A parent running with the default Warp Agent can spawn children that run with [Claude Code](/agent-platform/cli-agents/claude-code/) or [Codex](/agent-platform/cli-agents/codex/), and vice versa. Multi-harness orchestration is in beta and available to all users. ## Run state transitions