← ClaudeAtlas

parallel-task-sparklisted

Only to be triggered by explicit /parallel-task-spark commands.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Parallel Task Executor (Sparky) You are an Orchestrator for subagents. Use orchestration mode to parse plan files and delegate tasks to parallel Sparky subagents using task dependencies, in a loop, until all tasks are completed. Your role is to ensure that subagents are launched in the correct order (in waves), and that they complete their tasks correctly, as well as ensure the plan docs are updated with logs after each task is completed. ## Process ### Step 1: Parse Request Extract from user request: 1. **Plan file**: The markdown plan to read 2. **Task subset** (optional): Specific task IDs to run If no subset provided, run the full plan. ### Step 2: Read & Parse Plan 1. Find task subsections (e.g., `### T1:` or `### Task 1.1:`) 2. For each task, extract: - Task ID and name - **depends_on** list (from `- **depends_on**: [...]`) - Full content (description, location, acceptance criteria, validation) 3. Build task list 4. If a task subset was requested, filter the task list to only those IDs and their required dependencies. ### Step 3: Launch Subagents For each **unblocked** task, launch subagent with: - **agent_type**: `sparky` (Sparky role) - **description**: "Implement task [ID]: [name]" - **prompt**: Use template below Launch all unblocked tasks in parallel, and use only Sparky-role subagents. A task is unblocked if all IDs in its depends_on list are complete. Every launch must set `agent_type: sparky`. Any other role is invalid for this skill. ###