smithery.ai

parallel-claude

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.

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,351 B
  • docs SUMMARY.md 145 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Parallel Claude Launcher

Launch N Claude instances in parallel using tmux + git worktrees to tackle beads tasks concurrently.

Workflow

Step 1: Show Available Tasks

bd ready

Format output as table:

ID Pri Type Title
abc P1 bug Fix memory leak
def P2 task Add validation

Step 2: Analyze & Recommend Groupings

Evaluate tasks for parallelization:

Good candidates:

  • Different files/modules (no merge conflicts)
  • No dependencies between them
  • Similar priority

Bad candidates:

  • Same files (merge conflicts!)
  • One depends on another
  • Integration + unit tests on same code

Hard limit: Max 4 tasks per group

Step 3: Present Options with AskUserQuestion

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"
      }
    ]
  }]
}

Step 4: Launch

Once user selects, launch directly (script claims issues automatically):

.claude/skills/parallel-claude/scripts/launch.sh abc def

Monitoring (tell user)

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

Cleanup (tell user)

# 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