agent-orchestrator

Coordinates autonomous sub-agents to decompose macro tasks and execute subtasks via inbox/outbox protocol.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/chadyi-king/mission-control-workspace --skill agent-orchestrator-chadyi-king
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-orchestrator
Source: https://github.com/chadyi-king/mission-control-workspace/tree/main/skills/agent-orchestrator
Command: npx skills add https://github.com/chadyi-king/mission-control-workspace --skill agent-orchestrator-chadyi-king

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Orchestrates complex, multi-agent workflows by decomposing macro tasks into autonomous subtasks, spawning specialized sub-agents, and consolidating results into a coherent final deliverable.

Core Features & Use Cases

  • Task decomposition and parallel execution of subtasks by dedicated agents
  • Dynamic generation of sub-agent SKILL.md files and provisioning of workspaces
  • Phase-based lifecycle management with status tracking and dissolution after completion
  • Reliable file-based communication via inbox/outbox and optional references/assets for richer context

Quick Start

Launch a macro task and let the orchestrator automatically create, coordinate, and merge sub-agent outputs.

Frequently Asked Questions about agent-orchestrator

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

FAQPage Schema
How do I coordinate autonomous sub-agents for complex multi-step projects?

You coordinate autonomous sub-agents by using an orchestrator to decompose macro tasks into subtasks, spawn specialized agents, and execute them in parallel across domains. The orchestrator manages the lifecycle and consolidates results into a final deliverable.

How does file-based communication work for multi-agent workflows?

File-based communication for multi-agent workflows uses a standardized inbox and outbox protocol for agent interaction. This protocol includes status tracking to ensure reliable message passing and coordination without direct API coupling between sub-agents.

What is task decomposition in multi-agent orchestration?

Task decomposition in multi-agent orchestration is the process of breaking down a macro task into autonomous subtasks. The orchestrator dynamically generates sub-agent SKILL.md files, provisions workspaces, and assigns each subtask to a dedicated agent for parallel execution.

Do I need a standardized SKILL.md file to use multi-agent orchestration?

Yes, a standardized SKILL.md file at the root is required to use multi-agent orchestration. This file defines the sub-agent instructions, while optional scripts, references, and assets can be added to provide richer context for task execution.

When should I use multi-agent orchestration instead of a single workflow?

Use multi-agent orchestration when facing complex, multi-step projects requiring parallel task execution and dynamic agent creation across domains. It is ideal when a macro task needs to be decomposed into autonomous subtasks that require specialized handling.

What are the limitations of file-based communication for task orchestration?

File-based communication for task orchestration relies on reading and writing to inbox and outbox directories, which requires careful status tracking to prevent race conditions. It may introduce latency compared to direct memory calls during high-frequency agent interactions.