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
1 change: 0 additions & 1 deletion src/components/GuidesLanding.astro
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const GUIDE_CATEGORIES: Record<string, string> = {
'agent-workflows/how-to-edit-agent-code-in-warp': 'agents',
'agent-workflows/using-images-as-context-with-warp': 'agents',
'agent-workflows/understanding-your-codebase': 'agents',
'agent-workflows/running-multiple-agents-at-once-with-warp': 'agents',
'agent-workflows/warp-for-product-managers': 'agents',
'agent-workflows/warp-vs-claude-code': 'agents',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ tags:
- "agents"

---
import VideoEmbed from '@components/VideoEmbed.astro';

Use multiple coding agents, including Warp Agent, Claude Code, Codex, and other CLI agents, when work can be split into independent tasks, reviewed from separate branches, or delegated to cloud agents while you keep working locally. In Warp, you can coordinate agents in three ways:

Expand Down Expand Up @@ -133,6 +134,8 @@ Agent notifications are currently supported for Claude Code, Codex, and OpenCode
<figcaption>Agent approval notification.</figcaption>
</figure>

<VideoEmbed url="https://youtu.be/w0bJFC0u0pE?si=XdP88cSCMXTK6Ec5" title="Running multiple agents at once in Warp" />

## 4. Compare outputs from different agents

A practical use of parallel agents is running the same task in different Git worktrees, with different agents, to compare their approaches. For example, prompt both Claude Code and Codex with the following:
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion src/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,6 @@ export const sidebarTopics: StarlightSidebarTopicsUserConfig = [
{ slug: 'guides/agent-workflows/how-to-review-prs-like-a-senior-dev', label: 'Review PRs like a senior dev' },
{ slug: 'guides/agent-workflows/using-images-as-context-with-warp', label: 'Use images as context for agents' },
{ slug: 'guides/agent-workflows/understanding-your-codebase', label: 'Understand a large codebase with agents' },
{ slug: 'guides/agent-workflows/running-multiple-agents-at-once-with-warp', label: 'Coordinate agents on separate tasks' },
],
},
{
Expand Down
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2405,6 +2405,11 @@
"destination": "/terminal/warpify/ssh/",
"statusCode": 308
},
{
"source": "/guides/agent-workflows/running-multiple-agents-at-once-with-warp",
"destination": "/guides/agent-workflows/how-to-run-multiple-ai-coding-agents/",
"statusCode": 308
},
{
"source": "/how-does-warp-compare/performance",
"destination": "/terminal/comparisons/performance/",
Expand Down
Loading