parallel-tasks
2
总安装量
2
周安装量
#66551
全站排名
安装命令
npx skills add https://github.com/himicoswilson/himi-claude-plugins --skill parallel-tasks
Agent 安装分布
trae-cn
2
gemini-cli
2
claude-code
2
github-copilot
2
codex
2
kimi-cli
2
Skill 文档
Parallel Tasks
Create git worktrees for parallel task execution with separate Claude sessions (macOS only).
Script
"${CLAUDE_PLUGIN_ROOT}/scripts/wt-parallel.sh" \
--branches "branch1|branch2" \
--prompts "prompt1|prompt2"
Workflow
- Parse tasks from user request (maximum 3)
- Generate branch names:
prefix/description(max 50 chars)- Prefixes:
feature/(default),bugfix/,hotfix/,release/
- Prefixes:
- Confirm with user via AskUserQuestion before creating anything:
- Task descriptions
- Branch names
- Initial prompts for each Claude session
- Execute script after approval
- Report results – which tasks succeeded/failed
Examples
Input: “Implement user auth and product search at the same time”
Parsed:
- Task 1:
feature/user-authâ “Implement user authentication…” - Task 2:
feature/product-searchâ “Implement product search…”
Input: “Fix the login bug and cart calculation issue in parallel”
Parsed:
- Task 1:
bugfix/loginâ “Fix the login bug…” - Task 2:
bugfix/cart-calculationâ “Fix the cart calculation issue…”