Parallel Task Runner
Coordinate plan files by launching multiple parallel subagents for unblocked tasks.
How to use it
Claude Code
- Run the line below. It pulls the whole folder into
~/.claude/skills/parallel-task, including the files SKILL.md points to. - Describe your job in plain words. Claude Code follows the skill from there.
npx degit jdrhyne/agent-skills/skills/parallel-task#main ~/.claude/skills/parallel-taskFor one project only, change the path to .claude/skills/parallel-task. This skill also uses plan.md, user-profile-plan.md — copying SKILL.md alone won't be enough. See the folder on GitHub.
Claude (web or desktop app)
- On this page open ⋯ → Download .md.
- Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
- Pick the file and Save. Claude shows the name and description and runs a security scan.
- Check the skill is switched on.
- Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
- ChatGPT: make a Project and paste it into Instructions.
- Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
- Check which app you pasted it into — the steps above name the right one.
- Some skills need the paid tier of Claude or ChatGPT.
Paste into Claude, ChatGPT or Cursor.
Source of Parallel Task Runner
Show the full text159 lines
| name | description | credits |
|---|---|---|
| parallel-task | Coordinate plan files by launching multiple parallel subagents for unblocked tasks. Triggers on explicit "/parallel-task" commands. | | Original skill by [@am-will](https://github.com/am-will) |
Parallel Task Runner
Use Orchestration Mode. Parse plan files and delegate tasks to parallel subagents.
Safety Boundaries
- Do not launch subagents for tasks that share write scope until the dependency is resolved.
- Do not continue past blockers silently; surface the blocked task and stop that branch of work.
- Do not mark tasks complete until validation from the plan has actually been checked.
- Do not run this skill unless the user explicitly invoked
/parallel-taskor clearly asked for parallel agent work.
Process
Step 1: Parse Request
Extract from user request:
- Plan file: The markdown plan to read
- Sprint/Phase (optional): Which section to run
If sprint not provided, ask user which to run.
Step 2: Read & Parse Plan
- Find sprint/phase section (e.g.,
## Sprint 1:) - Extract task subsections (e.g.,
### Task 1.1:) - For each task, extract:
- Task ID and name
- Full content (description, location, acceptance criteria, validation)
- Build task list
Step 3: Launch Subagents
For each task, launch subagent with:
- description: "Implement task [ID]: [name]"
- prompt: Use template below
If there are multiple unblocked tasks, launch multiple subagents in parallel.
Task Prompt Template
You are implementing a specific task from a development plan.
## Context
- Plan: [filename] - [sprint/phase]
- Goals: [relevant overview from plan]
- Dependencies: [prerequisites for this task]
- Related tasks: [tasks in same sprint]
- Constraints: [risks from plan]
## Your Task
**Task [ID]: [Name]**
Location: [File paths]
Description: [Full description]
Acceptance Criteria:
[List from plan]
Validation:
[Tests or verification from plan]
## Instructions
1. Examine and explore the plan, all relevant files & dependencies. Ensure ambiguities are cleared up.
2. Implement changes for all acceptance criteria
3. Keep work **atomic and committable**
4. For each file: read first, edit carefully, preserve formatting
5. Run validation if feasible
6. Return summary of:
- Files modified/created
- Changes made
- How criteria are satisfied
- Validation performed or deferred
## Important
- Be careful with paths
- Stop and describe blockers if encountered
- Focus on this specific task
Step 4: Monitor & Log
After subagents complete:
- Collect results
- ALWAYS mark completed tasks and update with:
- Concise work log
- Files modified/created
- Errors or gotchas encountered
Step 5: Repeat
Now, pause and read the whole plan again to see what new tasks are unblocked.
Start back at step 3. Continue launching agents on unblocked tasks in parallel.
Repeat this loop until the plan is done.
Do not stop until the plan is fully completed or you encounter a blocker.
Step 6: Validate
After completing all tasks, validate the plan's success by checking the final state against the original plan. Perform available tests and ensure success. If there are any issues, address them before marking the plan as complete.
After validation, provide a summary of:
- Files modified/created
- Changes made
- How criteria are satisfied
- Validation performed or deferred
Error Handling
- Sprint not found: List available sprints/phases
- Parse failure: Show what was tried, ask for clarification
Example Usage
/parallel-task plan.md
/parallel-task ./plans/auth-plan.md sprint 2
/parallel-task user-profile-plan.md phase 1
Run Summary Template
# Sprint/Phase Run Summary
## Tasks Assigned: [N]
### Completed
- Task [ID]: [Name] - [Brief summary]
### Issues
- Task [ID]: [Name]
- Issue: [What went wrong]
- Resolution: [How resolved or what's needed]
### Blocked
- Task [ID]: [Name]
- Blocker: [What's preventing completion]
- Next Steps: [What needs to happen]
## Overall Status
[Completion summary]
## Files Modified
[List of changed files]
## Next Steps
[Recommendations]
| 1 | |
| 2 | name parallel-task |
| 3 | description Coordinate plan files by launching multiple parallel subagents for unblocked tasks. Triggers on explicit "/parallel-task" commands. |
| 4 | credits | |
| 5 | Original skill by [@am-will](https://github.com/am-will) |
| 6 | |
| 7 | |
| 8 | # Parallel Task Runner |
| 9 | |
| 10 | Use Orchestration Mode. Parse plan files and delegate tasks to parallel subagents. |
| 11 | |
| 12 | ## Safety Boundaries |
| 13 | |
| 14 | Do not launch subagents for tasks that share write scope until the dependency is resolved. |
| 15 | Do not continue past blockers silently; surface the blocked task and stop that branch of work. |
| 16 | Do not mark tasks complete until validation from the plan has actually been checked. |
| 17 | Do not run this skill unless the user explicitly invoked `/parallel-task` or clearly asked for parallel agent work. |
| 18 | |
| 19 | ## Process |
| 20 | |
| 21 | ### Step 1: Parse Request |
| 22 | |
| 23 | Extract from user request: |
| 24 | **Plan file**: The markdown plan to read |
| 25 | **Sprint/Phase** (optional): Which section to run |
| 26 | |
| 27 | If sprint not provided, ask user which to run. |
| 28 | |
| 29 | ### Step 2: Read & Parse Plan |
| 30 | |
| 31 | Find sprint/phase section (e.g., `## Sprint 1:`) |
| 32 | Extract task subsections (e.g., `### Task 1.1:`) |
| 33 | For each task, extract: |
| 34 | Task ID and name |
| 35 | Full content (description, location, acceptance criteria, validation) |
| 36 | Build task list |
| 37 | |
| 38 | ### Step 3: Launch Subagents |
| 39 | |
| 40 | For each task, launch subagent with: |
| 41 | **description**: "Implement task [ID]: [name]" |
| 42 | **prompt**: Use template below |
| 43 | |
| 44 | If there are multiple unblocked tasks, launch multiple subagents in parallel. |
| 45 | |
| 46 | ### Task Prompt Template |
| 47 | |
| 48 | |
| 49 | You are implementing a specific task from a development plan. |
| 50 | |
| 51 | ## Context |
| 52 | - Plan: [filename] - [sprint/phase] |
| 53 | - Goals: [relevant overview from plan] |
| 54 | - Dependencies: [prerequisites for this task] |
| 55 | - Related tasks: [tasks in same sprint] |
| 56 | - Constraints: [risks from plan] |
| 57 | |
| 58 | ## Your Task |
| 59 | **Task [ID]: [Name]** |
| 60 | |
| 61 | Location: [File paths] |
| 62 | Description: [Full description] |
| 63 | |
| 64 | Acceptance Criteria: |
| 65 | [List from plan] |
| 66 | |
| 67 | Validation: |
| 68 | [Tests or verification from plan] |
| 69 | |
| 70 | ## Instructions |
| 71 | 1. Examine and explore the plan, all relevant files & dependencies. Ensure ambiguities are cleared up. |
| 72 | 2. Implement changes for all acceptance criteria |
| 73 | 3. Keep work **atomic and committable** |
| 74 | 4. For each file: read first, edit carefully, preserve formatting |
| 75 | 5. Run validation if feasible |
| 76 | 6. Return summary of: |
| 77 | - Files modified/created |
| 78 | - Changes made |
| 79 | - How criteria are satisfied |
| 80 | - Validation performed or deferred |
| 81 | |
| 82 | ## Important |
| 83 | - Be careful with paths |
| 84 | - Stop and describe blockers if encountered |
| 85 | - Focus on this specific task |
| 86 | |
| 87 | |
| 88 | ### Step 4: Monitor & Log |
| 89 | |
| 90 | After subagents complete: |
| 91 | Collect results |
| 92 | **ALWAYS mark completed tasks** and update with: |
| 93 | Concise work log |
| 94 | Files modified/created |
| 95 | Errors or gotchas encountered |
| 96 | |
| 97 | ### Step 5: Repeat |
| 98 | |
| 99 | Now, pause and read the whole plan again to see what new tasks are unblocked. |
| 100 | |
| 101 | Start back at step 3. Continue launching agents on unblocked tasks in parallel. |
| 102 | |
| 103 | Repeat this loop until the plan is done. |
| 104 | |
| 105 | Do not stop until the plan is fully completed or you encounter a blocker. |
| 106 | |
| 107 | ## Step 6: Validate |
| 108 | |
| 109 | After completing all tasks, validate the plan's success by checking the final state against the original plan. Perform available tests and ensure success. If there are any issues, address them before marking the plan as complete. |
| 110 | |
| 111 | After validation, provide a summary of: |
| 112 | Files modified/created |
| 113 | Changes made |
| 114 | How criteria are satisfied |
| 115 | Validation performed or deferred |
| 116 | |
| 117 | ## Error Handling |
| 118 | |
| 119 | Sprint not found: List available sprints/phases |
| 120 | Parse failure: Show what was tried, ask for clarification |
| 121 | |
| 122 | ## Example Usage |
| 123 | |
| 124 | |
| 125 | /parallel-task plan.md |
| 126 | /parallel-task ./plans/auth-plan.md sprint 2 |
| 127 | /parallel-task user-profile-plan.md phase 1 |
| 128 | |
| 129 | |
| 130 | ## Run Summary Template |
| 131 | |
| 132 | |
| 133 | # Sprint/Phase Run Summary |
| 134 | |
| 135 | ## Tasks Assigned: [N] |
| 136 | |
| 137 | ### Completed |
| 138 | - Task [ID]: [Name] - [Brief summary] |
| 139 | |
| 140 | ### Issues |
| 141 | - Task [ID]: [Name] |
| 142 | - Issue: [What went wrong] |
| 143 | - Resolution: [How resolved or what's needed] |
| 144 | |
| 145 | ### Blocked |
| 146 | - Task [ID]: [Name] |
| 147 | - Blocker: [What's preventing completion] |
| 148 | - Next Steps: [What needs to happen] |
| 149 | |
| 150 | ## Overall Status |
| 151 | [Completion summary] |
| 152 | |
| 153 | ## Files Modified |
| 154 | [List of changed files] |
| 155 | |
| 156 | ## Next Steps |
| 157 | [Recommendations] |
| 158 | |
| 159 |
Discussion
Browse more free Claude skills.