orchestrate

Decompose high-level objectives into independent tasks for parallel agent execution.

1|Updated Jan 20, 2026
One-click install
npx skills add https://github.com/elsolal/Skillz-Claude-Codex-And-More --skill orchestrate-elsolal
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: orchestrate
Source: https://github.com/elsolal/Skillz-Claude-Codex-And-More/tree/main/.claude/skills/orchestrate
Command: npx skills add https://github.com/elsolal/Skillz-Claude-Codex-And-More --skill orchestrate-elsolal

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Decomposes a high-level objective into independent tasks, dispatches them to parallel agents, and aggregates results into a coordinated outcome.

Core Features & Use Cases

  • Decompose goals into discrete, actionable tasks that can be executed in isolation
  • Dispatch work in parallel across multiple agents with safe, bounded concurrency
  • Aggregate results, detect conflicts, and present a final, unified report
  • Validate decomposition with the user and maintain state throughout the workflow

Quick Start

Provide a complex objective to the orchestrator and have it break it into parallel tasks across agents.

Frequently Asked Questions about orchestrate

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

FAQPage Schema
How do I break down a complex objective into parallel tasks for multiple agents?

To break down a complex objective into parallel tasks, you provide the high-level goal to an orchestrator. It decomposes the objective into discrete, independent subtasks and dispatches them across multiple agents for isolated execution.

What is multi-agent task orchestration and when do I need it?

Multi-agent task orchestration coordinates the execution of independent subtasks across parallel agents. You need it for complex goals with parallelizable subtasks, no inter-task state sharing, and a need for aggregated results.

Can I use parallel task dispatch for goals that require inter-task state sharing?

No, parallel task dispatch is applicable for scenarios with no inter-task state sharing. You should only use this orchestration approach when subtasks can be executed in isolation without depending on each other's live state.

What's the best way to aggregate results from parallel agents into a unified report?

The best way to aggregate results from parallel agents is to use an orchestrator that collects individual outputs, detects conflicts, and compiles them into a final, coordinated report with automated monitoring and safety checks.

Does multi-agent orchestration validate task decomposition before dispatching work?

Yes, multi-agent orchestration validates the task decomposition with the user before dispatching work. It maintains state throughout the workflow to ensure safe, bounded concurrency during parallel execution.