Skill for creating parallel development plans with multiple developers. Leverages git worktree for branch strategy, task dependency analysis, critical path calculation, developer role assignment, and timeline creation. Use for requests like "create a parallel development plan", "I want to develop with multiple people simultaneously", "divide work with worktree", or "maximize development parallelization". Also supports on-demand parallel tasks for quick fixes with requests like "fix XX in parallel", "do YY with worktree", or "add parallel task".
View on GitHubhiroshi75/ccplugins
parallel-dev-plugin
January 21, 2026
Select agents to install to:
npx add-skill https://github.com/hiroshi75/ccplugins/blob/main/parallel-dev-plugin/skills/plan-parallel-dev/SKILL.md -a claude-code --skill plan-parallel-devInstallation paths:
.claude/skills/plan-parallel-dev/# Parallel Development Planning Create implementation plans to maximize parallelization of feature development with multiple developers. Also supports on-demand parallel tasks (bug fixes, feature additions) for completed projects. ## Usage Modes This skill has two modes: ### Mode A: Initial Parallel Development (Planning Mode) Used immediately after project initialization (right after `uv init`, `create-react-app`, etc.) when developing multiple features in parallel. **Trigger Phrases**: - "Create a parallel development plan" - "I want to develop with multiple people simultaneously" - "Divide work with worktree" - "Maximize development parallelization" **Workflow**: 9-step workflow (described below) to create a plan and start multiple tasks simultaneously. ### Mode B: Maintenance Parallel Development (Quick Task Mode) Used for bug fixes and feature additions to projects with existing implementations. Start work immediately without a plan document. **Trigger Phrases**: - "Fix XX in parallel" - "Handle XX in parallel" - "Do YY with worktree" - "Add parallel task: XX" - "Do this with worktree: XX" **Workflow**: See "Quick Task Workflow" section for details. ### Mode Selection Guide | Situation | Recommended Mode | | ----------------------------------------------- | ------------------------------------------ | | Right after project initialization, parallel features | A | | Single bug fix to existing project | B (single task) | | Medium-scale feature addition to existing project | B (multiple tasks + merge coordinator) | --- ## Workflow (Mode A: Initial Parallel Development) ``` 1. Understand Requirements └─→ Collect list of features to develop └─→ Confirm tech stack (BE/FE/Infrastructure, etc.) 2. Task Decomposition └─→ Split each feature into independent tasks └─→ Granularity: whichever is sm