skills/dispatching-parallel-agents/SKILL.md
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.
npx skillsauth add hangsiahong/koompi-agent-bundle dispatching-parallel-agentsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
data-ai
Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always
tools
Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions