Use this file to discover all available pages before exploring further.
Dispatch lets you mix and match models per task. Use Claude for deep reasoning, GPT for broad generation, Gemini for speed — all through one interface.
Edit ~/.dispatch/config.yaml or use natural language:
/dispatch create a security-reviewer alias using opus
This generates:
aliases: security-reviewer: model: opus prompt: > You are a security-focused reviewer. Prioritize OWASP Top 10 vulnerabilities, auth flaws, and injection risks.
aliases: perf-reviewer: model: sonnet prompt: > You are a performance optimization expert. Focus on algorithmic complexity, database queries, and bundle size.
/dispatch use opus-5.0 to review this architecture
Dispatcher: opus-5.0 not in config. Checking availability...Dispatcher: Found opus-5.0 via agent models. Adding to config with claude backend.Dispatcher: Dispatched architecture-review using opus-5.0.
Detection: Model ID contains opus, sonnet, or haiku (including versioned variants like sonnet-4.6, opus-4.5-thinking)Backend:claude (when Claude Code CLI is available)Command:claude -p --dangerously-skip-permissions (no --model flag)Examples:
opus
sonnet
haiku
claude-opus-4-6
sonnet-4.5-thinking
Detection: Model ID contains gpt, codex, o1, o3, or o4-miniBackend:codex (when Codex CLI is available), fallback to cursorCommand:codex exec --full-auto -C "$(pwd)" --model <model-id>Examples:
gpt-5.3-codex
gpt-5.3-codex-spark
o1-preview
o3-mini
Detection: Any model not matching Claude or OpenAI patternsBackend:cursor (when Cursor CLI is available)Command:agent -p --force --workspace "$(pwd)" --model <model-id>Examples:
Pre-launch sweep for a fullstack SaaS app using multiple models:
/dispatch we launch Thursday, need a full pre-launch sweep:1) security audit the auth flow (JWT, sessions, password reset) and the stripe payment integration. use opus, do it in a worktree2) performance - load test the top 5 API endpoints, find N+1 queries, check db indexes on users/orders/products tables. sonnet in a worktree3) frontend audit - accessibility (WCAG 2.1 AA), bundle size, flag any components missing error boundaries. dispatch sonnet4) generate OpenAPI specs for every endpoint that's missing one. use gemini5) error handling audit - find uncaught exceptions, missing try/catch, inconsistent error response formats across all API routes. sonnet, worktreeask me if anything is unclear. security is highest priority - flaganything critical immediately
Result:
All 5 workers dispatched with their monitors. Here's the summary:Security (worktree): ● security-audit — Opus 4-6 (worktree): Full auth + payment security reviewPerformance (worktree): ● perf-audit — Sonnet 4-6 (worktree): API load testing + DB index reviewFrontend (single worker): ● frontend-audit — Sonnet 4-6: Accessibility, bundle size, error boundariesDocs (single worker): ● api-docs — Gemini 2.5 Flash: Generate missing OpenAPI specsError handling (worktree): ● error-handling — Sonnet 4-6 (worktree): Uncaught exceptions + error format auditAll running in background. Five workers, three models, three worktrees —your session wrote five checklists and is idle. Dispatch more work or say"status" anytime.
See the Configuration guide for details on editing your config and the Parallel Tasks guide for managing multiple concurrent workers.