From superpowers
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies. Integrated with tmux-workflow for observability and session-distiller for context management.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:dispatching-parallel-agentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Speed up development by offloading independent tasks to parallel **Worker Agents** (Gemini-3-Flash) while you (GLM-5.1) coordinate from the **Orchestrator** pane.
Speed up development by offloading independent tasks to parallel Worker Agents (Gemini-3-Flash) while you (GLM-5.1) coordinate from the Orchestrator pane.
Group your implementation plan into chunks that don't touch the same files.
src/auth/*.tssrc/models/*.tssrc/routes/*.tsBefore spawning agents, you MUST extract the current state so the workers aren't lost. Use the Session Distiller:
For each task, use the spawn_agent tool. In the message to the agent, pass the Context Checkpoint generated in Step 2, assign them a Worker ID, and tell them to log their progress.
Example Dispatch Command:
# 1. Create the pane in tmux (run this yourself)
bash ~/.codex/superpowers/skills/tmux-workflow/scripts/tmux-manager.sh add-worker "worker-1" "Auth Implementation"
# 2. Spawn the agent (use spawn_agent tool)
# Prompt: "You are a worker agent.
# Here is your Context Checkpoint: [Paste Distilled Context Here].
# Log progress using:
# bash ~/.codex/superpowers/skills/dispatching-parallel-agents/scripts/worker-log.sh worker-1 progress 'Message'"
Watch the tmux panes. Each pane tails its own log file (/tmp/codex-logs/worker-id.log). You'll see real-time updates as the sub-agents work.
Once agents finish, they will report back in the main session. Review their work, run tests, and commit.
npx claudepluginhub hangsiahong/superpowers-koompi --plugin superpowersGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.