parallel-task

Launch parallel subagents to execute plan tasks concurrently.

239|30|Updated Jan 22, 2026
One-click install
npx skills add https://github.com/jdrhyne/agent-skills --skill parallel-task-jdrhyne
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: parallel-task
Source: https://github.com/jdrhyne/agent-skills/tree/main/skills/parallel-task
Command: npx skills add https://github.com/jdrhyne/agent-skills --skill parallel-task-jdrhyne

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates the execution of complex plans by running multiple subagents in parallel to complete tasks concurrently, reducing time-to-value and improving throughput.

Core Features & Use Cases

  • Parallel task execution: Launch multiple subagents to work on independent tasks within a plan.
  • Plan parsing & orchestration: Read plan files, identify sprints/phases, and enumerate tasks with dependencies.
  • Monitoring & logging: Track progress, summarize results, and surface blockers for prompt resolution.
  • Use Case: When a plan contains several tasks that can run in parallel (e.g., data collection, transformation, and validation), this Skill coordinates them to finish faster.

Quick Start

Run the skill with a plan file: /parallel-task plans/example-plan.md If multiple sprints are present, specify the sprint number to execute. The Skill will spawn parallel subagents and return an execution summary.

Frequently Asked Questions about parallel-task

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute multiple independent tasks from a plan in parallel?

Parallel subagent orchestration works by parsing a plan file to identify sprints and enumerating independent tasks. The skill spawns multiple subagents to execute these tasks concurrently, returning an execution log, summary, and final validation checkpoint.

What is parallel subagent orchestration for plan execution?

Parallel subagent orchestration automates complex plan execution by launching multiple subagents concurrently to handle independent tasks. It monitors progress, surfaces blockers for resolution, and reduces overall time-to-value by improving execution throughput.

How do I run a specific sprint from my plan file using parallel execution?

To run a specific sprint, provide the plan file path and specify the sprint number. The skill parses the plan file, enumerates tasks within the selected sprint, and spawns parallel subagents to execute those tasks concurrently.

Can I use parallel-task to coordinate data collection and transformation simultaneously?

Yes, you can use it to coordinate data collection, transformation, and validation simultaneously. If your plan contains independent tasks, the skill spawns parallel subagents to handle each task concurrently, delivering an execution summary upon completion.

Does parallel subagent execution work without external dependencies?

Yes, parallel subagent execution works without external dependencies. The skill operates independently to parse plan files, orchestrate concurrent subagents, monitor progress, and return execution logs alongside a final validation checkpoint.

What are the limitations of orchestrating parallel subagents for plan tasks?

The primary limitation is task dependency; parallel subagents work best on independent tasks within a sprint. If tasks require strict sequential execution, concurrent orchestration may surface blockers that require resolution before proceeding.