multi-agent-orchestrator

Coordinate DAG-style multi-skill pipelines with input/output paths and approval gates.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

multi-agent-orchestrator provides a framework to run DAG-style multi-skill pipelines with explicit input/output paths, gates between steps, a centralized run log, and shared handoff artifacts to reduce coordination overhead and errors.

Core Features & Use Cases

  • Explicit DAG structure for cross-domain pipelines (e.g., research → product → marketing) with clear inputs and outputs.
  • Built-in handoff artifacts such as pipeline-state.md, APPROVAL.md, and RUNLOG.md to enable auditable, human-in-the-loop workflows.
  • Flexible triggering via cron or webhooks, with persistent session state to support multi-day or multi-step chains.

Quick Start

Copy the templates into workspace/drafts/orchestration/<YYYY-MM-DD>-<run-slug>/ for a new run and follow the steps in dag.md to execute the first skill.

Frequently Asked Questions about multi-agent-orchestrator

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

FAQPage Schema
How do I orchestrate a multi-skill automation pipeline with approval gates?

To orchestrate a multi-skill automation pipeline with approval gates, define an explicit DAG structure with clear input/output paths and use built-in handoff artifacts like APPROVAL.md to control execution. This framework coordinates cross-domain chains deterministically.

What is a DAG-style workflow for cross-domain chains like research and marketing?

A DAG-style workflow for cross-domain chains coordinates sequential tasks—such as research to product to marketing—using directed acyclic graphs. It maps explicit inputs and outputs to ensure deterministic handoffs and reduce coordination errors across multiple skills.

How do I track multi-day execution state in a workflow pipeline?

You track multi-day execution state in a workflow pipeline by using a centralized run log and persistent session state. Artifacts like RUNLOG.md and pipeline-state.md provide auditable records to support multi-step chains over extended periods.

How to start a DAG pipeline run for cross-skill orchestration?

To start a DAG pipeline run for cross-skill orchestration, copy the provided templates into a dated workspace directory such as drafts/orchestration/<YYYY-MM-DD>-<run-slug>/. Follow the steps in dag.md to execute the first skill.

Can I trigger workflow pipelines via cron or webhooks?

Yes, you can trigger workflow pipelines via cron or webhooks. This flexible triggering capability, combined with persistent session state, supports automated and controlled execution for multi-day or multi-step automation chains.

When should I not use a DAG approach for automation orchestration?

You should not use a DAG approach for automation orchestration when your tasks require non-deterministic, highly dynamic branching rather than explicit, pre-defined input/output paths. DAGs are designed for controlled, auditable execution with clear handoff gates.