Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ The parent (the "writer") proposes a solution, then spawns a critic child to rev

### Review swarm (cloud → cloud)

A scheduled or webhook-triggered parent spawns one cloud child per open pull request to run reviews in parallel. Each child posts its findings as a comment and exits. The parent fans in the results and posts a summary back to the triggering system.
A [scheduled](/agent-platform/cloud-agents/triggers/scheduled-agents/) or webhook-triggered parent spawns one cloud child per open pull request to run reviews in parallel. Each child posts its findings as a comment and exits. The parent fans in the results and posts a summary back to the triggering system.

### DAG

Expand Down
1 change: 1 addition & 0 deletions src/content/docs/agent-platform/cloud-agents/platform.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ The orchestrator:
* Tracks lifecycle state (created → running → completed/failed) and associated metadata.
* Exposes task lifecycle operations via the [Oz CLI](/reference/cli/) and a [REST API](/reference/api-and-sdk/) (create tasks, query history, and inspect status/outputs).
* Powers SDKs (TypeScript/Python) for programmatic usage on top of the orchestrator API.
* Supports [multi-agent orchestration](/agent-platform/cloud-agents/orchestration/) for parent/child workflows, fan-out, and review swarms.

#### When teams use the API/SDK

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,6 @@ Carefully review prompts and schedules before deploying them broadly, especially

Scheduled Agents are best when work should happen on a predictable cadence.

If you want an agent to run in response to an event, such as a Slack mention, PR update, or issue change, use triggered cloud agents instead.
If you want an agent to run in response to an event, such as a Slack mention, PR update, or issue change, use [integrations](/agent-platform/cloud-agents/integrations/) to trigger cloud agents instead.

Many teams use both together: triggers for reactive workflows, and Scheduled Agents for proactive maintenance.
Many teams use both together: [triggers](/agent-platform/cloud-agents/triggers/) for reactive workflows, and Scheduled Agents for proactive maintenance.
Loading