This is the orchestration playbook for Eve Horizon's job decomposition model. It walks you through depth-based recursion (EPIC = 3 levels, Story = 2), how to spawn child jobs with fully self-contained descriptions, and when to parallelize versus execute directly. The key insight is context protection: orchestrators plan and dispatch, they don't read large files or accumulate outputs. You set a target depth at the root, pass it down, and each job decides whether to decompose or execute based on where it sits in the tree. Relations encode dependencies, control signals manage waiting states, and the default is direct execution unless parallelism or scope genuinely demands splitting. Useful if you're building multi-step workflows and need a mental model for how decomposition and blocking should work together.
npx skills add https://github.com/incept5/eve-skillpacks --skill eve-orchestration