workflow-orchestrator

Orchestrate cross-skill workflows by reading hook definitions and triggering follow-up actions.

69|11|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/zhaono1/agent-playbook --skill workflow-orchestrator-zhaono1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: workflow-orchestrator
Source: https://github.com/zhaono1/agent-playbook/tree/main/skills/workflow-orchestrator
Command: npx skills add https://github.com/zhaono1/agent-playbook --skill workflow-orchestrator-zhaono1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Coordinates and automates cross-skill workflows by reading hook definitions and triggering follow-up actions at milestones.

Core Features & Use Cases

  • Milestone-driven automation: Orchestrates a chain of skills in response to PRD creation, implementation, and other key milestones.
  • Hook-based execution: Reads and respects hooks (after_complete, on_error) to determine which skills run and in what mode.
  • Observability: Logs progress and context to session-logger for traceability across the workflow.

Quick Start

Define milestone hooks in the skills' SKILL.md to enable automated workflow chaining.

Frequently Asked Questions about workflow-orchestrator

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

FAQPage Schema
How do I automate multi-skill workflow orchestration for end-to-end project milestones?

Multi-skill workflow orchestration is automated by defining milestone hooks in your SKILL.md files, which trigger follow-up actions across multiple skills automatically. This coordinates cross-skill workflows like PRD creation and implementation handoffs without manual intervention.

What are hook definitions and how do they coordinate cross-skill workflows?

Hook definitions in SKILL.md files specify triggers like after_complete and on_error to determine which skills run next and in what mode. They enable milestone-driven automation by chaining skills together based on execution outcomes.

Can I control the execution mode when triggering follow-up actions across multiple skills?

Yes, you can control execution modes using mode-based triggers defined in your hooks. Supported modes include auto, background, and ask_first, allowing you to dictate whether follow-up actions run immediately, silently, or require user confirmation.

How do I track progress and context during cross-skill workflow coordination?

You can track progress and context during cross-skill workflow coordination through built-in observability features. The orchestrator logs progress and contextual data to session-logger, ensuring full traceability across the entire workflow lifecycle.

Do I need to install any dependencies to automate milestone-driven workflows?

No additional dependencies are required to automate milestone-driven workflows. You only need to define the appropriate hook definitions in your existing skills' SKILL.md files to enable automated workflow chaining and milestone-based handoffs.

What's the best way to handle errors during automated multi-skill execution?

The best way to handle errors during automated multi-skill execution is by defining on_error hooks in your SKILL.md. These hooks allow the orchestrator to trigger specific follow-up actions or recovery skills when a milestone fails.