execute-parallel-plan

Execute DAG-based parallel plans with concurrent subagents and failure handling.

2|Updated Nov 6, 2015
One-click install
npx skills add https://github.com/ahoym/dotfiles --skill execute-parallel-plan
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: execute-parallel-plan
Source: https://github.com/ahoym/dotfiles/tree/main/.claude/commands/execute-parallel-plan
Command: npx skills add https://github.com/ahoym/dotfiles --skill execute-parallel-plan

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates the execution of complex, multi-agent plans, ensuring tasks are completed in the correct order and dependencies are managed efficiently.

Core Features & Use Cases

  • DAG-based Scheduling: Executes plans with dependencies defined in a Directed Acyclic Graph (DAG).
  • Subagent Coordination: Launches, monitors, and manages concurrent subagents.
  • Failure Handling & Resumption: Diagnoses and resolves agent failures, with support for resuming interrupted executions.
  • Use Case: Coordinate a team of specialized agents to refactor a large codebase, where each agent depends on the successful completion of others.

Quick Start

Execute the parallel plan defined in the file 'refactor-plan.yaml'.

Frequently Asked Questions about execute-parallel-plan

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

FAQPage Schema
How do I orchestrate parallel execution of subagents with dependencies?▼

You can orchestrate parallel subagent execution by defining dependencies in a Directed Acyclic Graph (DAG). The Skill schedules concurrent agents based on this DAG, managing task order and verifying outputs automatically.

What is DAG-based scheduling for complex agentic workflows?▼

DAG-based scheduling organizes multi-agent plan execution by mapping task dependencies in a Directed Acyclic Graph. This ensures subagents launch concurrently only when their upstream dependencies are successfully completed.

Can I resume an interrupted parallel plan if a subagent fails?▼

Yes, interrupted parallel plans can be resumed. The Skill diagnoses and handles subagent failures during execution, allowing the workflow to restart from the point of interruption without losing progress.

How do I coordinate a team of specialized agents to refactor a codebase?▼

Define your refactoring plan with inter-agent dependencies in a structured file. The Skill coordinates the specialized agents by launching concurrent subagents, verifying outputs, and managing failures across the workflow.

Do I need to define dependencies before executing concurrent subagents?▼

Yes, dependencies must be defined in a Directed Acyclic Graph before execution. This structure is required for the Skill to correctly schedule concurrent subagents and verify that outputs are ready for downstream tasks.