worker-orchestration

Installation
SKILL.md

Worker Orchestration

Coordinate multiple background workers.

When to Use This Skill

  • Multiple background jobs need coordination
  • Jobs have dependencies on each other
  • Need to prevent conflicting concurrent execution
  • Want automatic disabling of failing workers

Core Concepts

  1. Scheduling - Run workers on intervals
  2. Dependencies - Worker A must complete before B starts
  3. Blocking - Workers that can't run concurrently
  4. Auto-disable - Stop workers after consecutive failures

TypeScript Implementation

Related skills
Installs
30
GitHub Stars
780
First Seen
Jan 25, 2026