Launch multiple Claude Code instances in parallel using tmux and git worktrees to tackle beads tasks concurrently. Use when user mentions parallel execution, multi-agent, parallel claude, or wants to run multiple Claude instances simultaneously on different tasks.
Launch N Claude instances in parallel using tmux + git worktrees to tackle beads tasks concurrently.
bd ready
Format output as table:
| ID | Pri | Type | Title | |----|-----|------|-------| | abc | P1 | bug | Fix memory leak | | def | P2 | task | Add validation |
Evaluate tasks for parallelization:
Good candidates:
Bad candidates:
Hard limit: Max 4 tasks per group
CRITICAL: Present pre-analyzed groupings, not individual tasks.
{
"questions": [{
"question": "Which parallel grouping would you like to run?",
"header": "Parallel",
"multiSelect": false,
"options": [
{
"label": "Auth + UI bugs (Recommended)",
"description": "abc, def | Different modules, no overlap"
},
{
"label": "All 3 independent tasks",
"description": "abc, def, ghi | Touch separate dirs"
},
{
"label": "Single task: abc",
"description": "Safe if unsure about conflicts"
}
]
}]
}
Once user selects, launch directly (script claims issues automatically):
.claude/skills/parallel-claude/scripts/launch.sh abc def
tmux Navigation:
Ctrl+B, arrows - Switch panes
Ctrl+B, z - Zoom/unzoom pane
Ctrl+B, d - Detach (instances keep running)
Reattach:
tmux attach-session -t claude-parallel
# Check status
.claude/skills/parallel-claude/scripts/launch.sh --status
# Kill tmux only
.claude/skills/parallel-claude/scripts/launch.sh --kill
# Full cleanup (tmux + worktrees)
.claude/skills/parallel-claude/scripts/launch.sh --cleanup
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer