Convoy Commands
Orchestrate multiple agents working in parallel on related tasks.Overview
Convoys enable running multiple AI agents in parallel, combining their specialized expertise to tackle complex tasks more effectively. See the Convoys feature guide for conceptual overview.pan convoy start
Start a new convoy with a specific template:--files <pattern>- File pattern to analyze (e.g., “src/**/*.ts”)--pr-url <url>- Pull request URL to review--issue-id <id>- Issue ID to associate with convoy--project-path <path>- Project path (defaults to current directory)
pan convoy status
Check the status of a running convoy:- Overall convoy state (running, completed, failed)
- Individual agent progress
- Phase completion (e.g., parallel review phase vs synthesis phase)
- Output files generated
pan convoy list
List all convoys (running and completed):pan convoy stop
Stop a running convoy:- Kill all running agents in the convoy
- Mark the convoy as failed
- Preserve any output generated so far
Built-in Convoy Templates
| Template | Agents | Use Case |
|---|---|---|
code-review | correctness, security, performance, synthesis | Comprehensive code review |
planning | planner | Codebase exploration and planning |
triage | (dynamic) | Parallel issue triage |
health-monitor | monitor | Check health of running agents |
code-review Template
The code-review convoy uses specialized agents for parallel review: Phase 1 - Specialized Reviews (Parallel)- Correctness (Haiku) - Logic errors, edge cases, type safety
- Security (Sonnet) - OWASP Top 10, injection, XSS, auth issues
- Performance (Haiku) - N+1 queries, blocking ops, memory leaks
- Reads all three review files
- Removes duplicates (same issue found by multiple reviewers)
- Prioritizes findings (blocker → critical → high → medium → low)
- Generates unified report with action items
.claude/reviews/<timestamp>-correctness.md.claude/reviews/<timestamp>-security.md.claude/reviews/<timestamp>-performance.md.claude/reviews/<timestamp>-synthesis.md
Custom Convoy Templates
Create custom templates in~/.panopticon/convoy-templates/:
Convoy Execution Flow
Related Commands
- pan work issue - Spawn single work agent
- pan cloister start - Start AI lifecycle manager