Skip to content
Closed
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
1 change: 1 addition & 0 deletions src/content/docs/agent-platform/capabilities/planning.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,4 @@ As the agent executes your plan, you'll review code changes and may want to scal

* **[Interactive Code Review](/agent-platform/local-agents/interactive-code-review/)** - Leave inline comments on agent-generated diffs and have the agent revise in one pass.
* **[Cloud Agents quickstart](/agent-platform/cloud-agents/quickstart/)** - Run agents in the cloud for longer tasks, background automation, or parallel work across repos.
* **[Multi-agent orchestration](/agent-platform/cloud-agents/orchestration/)** - When `/plan` proposes orchestration, a parent agent spawns child agents to parallelize work. Review the orchestration config in the plan card before children launch.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Warp Agent is the same agent runtime that powers Agent Mode in the Warp terminal
* **Full terminal and tool access** - Runs commands, edits files, reads logs, executes tests, navigates repos, and calls MCP servers, giving cloud runs the same toolbelt Warp Agent uses locally.
* **Platform-native context** - Reads [Codebase Context](/agent-platform/capabilities/codebase-context/), applies [Rules](/agent-platform/capabilities/rules/), reuses saved [Skills](/agent-platform/capabilities/skills/), and respects Memory and Warp Drive context with no extra setup.
* **Multi-repo execution** - Clones every repo configured on the [environment](/agent-platform/cloud-agents/environments/) and works across them in a single run.
* **Cross-harness orchestration parent** - A Warp Agent parent run can spawn Claude Code or Codex [subagents](/agent-platform/cloud-agents/overview/) and coordinate their outputs. Other harnesses cannot act as parents in a multi-harness orchestration.
* **Cross-harness orchestration parent** - A Warp Agent parent run can spawn Claude Code or Codex [subagents](/agent-platform/cloud-agents/orchestration/) and coordinate their outputs. Other harnesses cannot act as parents in a multi-harness orchestration.
* **No extra credentials** - Warp Agent uses your existing Warp account and credits. There's no separate API key to configure.

## How it works
Expand All @@ -38,7 +38,7 @@ Warp Agent is the orchestration host for multi-harness runs. A typical pattern l
2. The parent dispatches Claude Code subagents for steps that need careful review and Codex subagents for high-volume edits.
3. The parent collects results, resolves conflicts, and returns a single final output (a PR, a report, a Slack reply).

Subagents run in the same environment as the parent and share the same secrets, MCP servers, and integrations. The transcript shows the full tree, so reviewers can see exactly which subagent did what.
Subagents run in the same environment as the parent and share the same secrets, MCP servers, and integrations. The transcript shows the full tree, so reviewers can see exactly which subagent did what. For the full parent/child model, run state transitions, messaging, and common patterns, see [Multi-agent orchestration](/agent-platform/cloud-agents/orchestration/). To start an orchestrated run, see [Running orchestrated agents](/agent-platform/cloud-agents/orchestration/multi-agent-runs/).

## When to choose Warp Agent

Expand Down
4 changes: 3 additions & 1 deletion src/content/docs/agent-platform/cloud-agents/platform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ oz agent run ...

### Warp Orchestrator

The orchestration layer manages the lifecycle of cloud agent tasks. It creates tasks, tracks state transitions, and is the system of record for what’s running and what ran.
The orchestration layer manages the lifecycle of cloud agent tasks. It creates tasks, tracks state transitions, and is the system of record for what's running and what ran.

The orchestrator also powers [multi-agent orchestration](/agent-platform/cloud-agents/orchestration/), where a parent agent spawns and coordinates child agents across local and cloud runs. See [Running orchestrated agents](/agent-platform/cloud-agents/orchestration/multi-agent-runs/) for how to start orchestrated runs from the CLI, slash commands, the web app, or the API.

#### What the orchestrator does

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,4 @@ Now that you've run your first cloud agent, automate recurring work or connect a
* **[Scheduled Agents quickstart](/agent-platform/cloud-agents/triggers/scheduled-agents-quickstart/)** - Set up an agent to run on a cron schedule for recurring tasks like weekly dependency checks.
* **[Integrations quickstart](/agent-platform/cloud-agents/integrations/quickstart/)** - Connect Oz to Slack and Linear so your team can trigger agents from mentions and issues.
* **[Skills](/agent-platform/capabilities/skills/)** - Turn successful agent workflows into reusable instructions you can schedule, trigger, or share.
* **[Multi-agent orchestration](/agent-platform/cloud-agents/orchestration/)** - Coordinate a parent agent and child agents to parallelize work, delegate specialized tasks, or verify output across local and cloud runs.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ Suggested skills appear on the Agents page under the **Suggested** filter.
* [Skills](/agent-platform/capabilities/skills/) — How to create skills and skill file format
* [Environments](/agent-platform/cloud-agents/environments/) — Configure repositories and runtime context for cloud agents
* [Scheduled Agents](/agent-platform/cloud-agents/triggers/scheduled-agents/) — Run agents automatically on a cron schedule
* [Multi-agent orchestration](/agent-platform/cloud-agents/orchestration/) — Use skills within orchestrated workflows where a parent agent coordinates child agents
* [Oz Web App](/agent-platform/cloud-agents/oz-web-app/) — Visual interface for managing cloud agents
* [Oz CLI](/reference/cli/) — Command-line interface for running agents
* [Oz API & SDK](/reference/api-and-sdk/) — Programmatic access to cloud agents
Loading