Agent skill
parallel-executor
Automatically detect and execute parallel development tasks
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/parallel-executor
SKILL.md
Parallel Executor Skill
I automatically orchestrate parallel Claude Code sessions when tasks can be executed concurrently.
Startup: Active Plan Detection
On every session start, I check for an active plan:
# Check for existing plan
if [[ -f ".claude/parallel-plan.json" ]]; then
status=$(jq -r '.status' .claude/parallel-plan.json)
if [[ "$status" == "in_progress" || "$status" == "planning" ]]; then
# Report to user about existing plan
.claude/skills/parallel-executor/plan.sh status
fi
fi
When an active plan is detected, I:
- Show the plan status (goal, merged/pending tasks)
- Highlight ready-to-start tasks (dependencies met)
- Suggest
/cpt:continueto spawn agents for pending tasks
This enables cross-session and cross-machine continuity - pull the repo on any machine and Claude knows exactly where the project left off.
Key Principle
Only spawn agents when there are truly independent tasks. Single tasks or tightly coupled work stay in the current session. Spawning is not the default - it's an optimization for genuinely parallel work.
When I Activate
- User explicitly requests parallel execution
- Task breakdown contains 2+ truly independent items
- File contains
[P]or(P)parallel markers - Multiple unrelated GitHub issues are being addressed
- Active plan with pending tasks is detected on startup
Independence Criteria
Tasks are INDEPENDENT (can spawn) if:
- They touch completely different files/directories
- No shared state or dependencies between tasks
- Tasks can be tested in isolation
- Merging results won't cause conflicts
- Examples: OAuth auth + dark mode theme, API endpoints + CLI tool
Tasks are COUPLED (stay in session) if:
- They modify the same files
- One depends on the other's output
- They share state (database schema, config, API contracts)
- They're steps of the same feature
- Examples: Adding a feature + its tests, UI component + its state
My Process
1. Task Analysis
I examine the work to identify:
- Independent tasks (can run in parallel)
- Dependent tasks (must wait for others)
- Shared resources (require coordination)
Important: I always ask for confirmation before spawning agents.
2. Dependency Graph
Task A [P] ──┐
Task B [P] ──┼──> Task E [depends: A,B,C]
Task C [P] ──┘
Task D [P] ────> Task F [depends: D]
3. Execution Plan
For parallel tasks, I use the spawn script:
.claude/skills/parallel-executor/spawn.sh "task1" "task2" "task3"
For sequential tasks, I queue them after dependencies complete.
4. Monitoring
I provide real-time status commands:
# Live logs
tail -f ../logs/*.log
# Process status
ps aux | grep "claude -p"
# Completion check
.claude/skills/parallel-executor/status.sh
5. Merge Coordination
When all parallel tasks complete:
- Verify each worktree has clean commits
- Run tests in each worktree
- Merge to main in safe order
- Clean up worktrees and branches
Persistent Planning System
Plans are stored in git for cross-session/cross-machine continuity:
.claude/
└── parallel-plan.json # Committed to git - persists across sessions
Plan Lifecycle:
- Create -
/cpt:quick "goal"creates plan with tasks - Spawn - Tasks marked
in_progress, branch recorded - Merge - Tasks marked
mergedafter successful merge - Complete - Plan status becomes
completedwhen all tasks merged
Key Commands:
/cpt:plan-status- View current plan progress/cpt:continue- Spawn agents for ready tasks/cpt:quick "goal"- Create new plan and spawn
Files
spawn.sh- Creates worktrees and spawns agentsstatus.sh- Checks agent completion statusmerge.sh- Merges all completed worktreesplan.sh- Persistent plan management functionsresume.sh- Resume interrupted sessionscheckpoint.sh- Record progress checkpointsorchestrate.sh- Monitor agents and handle interrupts
Limits
- Max 10 concurrent agents
- Each agent: 200k token context
- Timeout: 30 minutes per task (configurable)
Error Handling
If an agent fails:
- Capture error from log file
- Report to user
- Offer: retry, skip, or abort all
- Never auto-merge failed tasks
Didn't find tool you were looking for?