orchestration-workflow

Manage multi-agent orchestration workflows across Plan and Execute modes.

Updated Dec 25, 2025
One-click install
npx skills add https://github.com/Zeliper/z-coder --skill orchestration-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: orchestration-workflow
Source: https://github.com/Zeliper/z-coder/tree/main/.claude/skills/orchestration-workflow
Command: npx skills add https://github.com/Zeliper/z-coder --skill orchestration-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill orchestrates the whole workflow, deciding when to spawn search, coder, builder, and task-management agents, and how Plan vs Execute modes are used.

Core Features & Use Cases

  • Plan vs Execute Modes: Decide whether to present a plan or execute immediately.
  • Parallel Information Gathering: Spawn codebase-search-agent, reference-agent, and web-search-agent in parallel.
  • Structured Workflow: Define the Step-by-step execution flow and responsibilities.

Quick Start

Use orchestration-workflow to determine the best approach for a new TASK-001, then switch to Execute Mode to begin Step 1.

Frequently Asked Questions about orchestration-workflow

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

FAQPage Schema
How do I coordinate multiple agents to work on complex tasks in parallel?

Multi-agent orchestration manages the spawning and coordination of parallel agents—search, codebase analysis, code execution, and task management—across Plan and Execute modes. The workflow decides when to activate each agent, enforces access controls (blocking direct edits and searches), and collects results for decision-driven branching, reducing manual coordination overhead.

What's the best way to structure a workflow that uses Plan vs Execute modes?

Plan mode presents a structured approach before execution; Execute mode runs it immediately. Orchestration-workflow handles mode switching by reading task files and config, spawning agents conditionally, managing parallel Task tool invocations, and applying result-driven branching. This separation lets you review strategy before committing resources.

How do I handle agent spawning and result collection across multiple phases?

The workflow manages initialization, parallel agent spawning, phase execution, and archival by mapping agents to tasks, invoking them in parallel, collecting outputs, and applying retry logic for builds. Result collection feeds branching logic, including USER_INPUT_REQUIRED handling, so downstream actions adapt to what agents return.

Can I use orchestration for build, test, and archival workflows together?

Yes. The workflow enforces a unified orchestration layer covering build/test phases with retry logic, commit generation, test-case creation, and archive integration. It manages the full lifecycle—from initialization through execution to result storage—while maintaining access controls and phase sequencing.

What constraints apply when orchestrating agent workflows?

Direct search, code edits, and document writing are prohibited at the orchestration layer; agents handle those tasks instead. The workflow enforces read-only access to config.json and task files, manages parallel spawning limits implicitly through Task tool design, and requires USER_INPUT_REQUIRED handling for decisions that need human input.