Worker Dispatch Overview Spawns and manages worker Claude agents using the Task tool with . Workers run as parallel background agents monitored via TaskOutput . Core principle: Workers are isolated, scoped, and expendable. State lives in GitHub, not in workers. Key optimization: Pre-extract issue context BEFORE spawning. Workers receive focused context, not raw issues. Worktree Isolation (MANDATORY) CRITICAL: Every worker MUST have its own git worktree. Workers NEVER operate in the main repository. Orchestrator responsibility: Create worktree BEFORE spawning worker. Worker responsibility: Ver…