← ClaudeAtlas

shipkit-masterlisted

Master orchestrator — dispatches direction, planning, and shipping loops sequentially. Auto-loaded via session-start hook.
stefan-stepzero/shipkit · ★ 1 · AI & Automation · score 78
Install: claude install-skill stefan-stepzero/shipkit
# shipkit-master - Master Orchestrator **Purpose**: Sequential loop orchestrator. Dispatches direction → planning → shipping, with each loop managing its own internal feedback cycle via dedicated reviewers. **Auto-loaded** at every session start via `shipkit-session-start.py` hook. --- ## Architecture ``` Master (sequencer — this skill) ├→ /shipkit-orch-direction (fork → orch-direction) → strategic artifacts + review ├→ /shipkit-orch-planning (fork → orch-planning) → definitions/specs + review └→ /shipkit-orch-shipping (fork → orch-shipping) → implementation + verification ``` Each loop orchestrator runs a **dispatch-assess-redispatch** cycle internally. Feedback stays within loops. The master stays a simple sequencer. ## Dispatch ``` 1. Dispatch /shipkit-orch-direction → blocks until direction stable 2. Dispatch /shipkit-orch-planning → blocks until planning stable 3. Dispatch /shipkit-orch-shipping → blocks until shipping complete 4. Done → termination protocol ``` ## State Reads/writes `.shipkit/orchestration.json` for crash recovery and session continuity. If the file exists, skip completed loops and resume at the active one. ## User Input - **Explicit skill invocation** → route directly, bypass loop dispatch - **Keyword match** → consult `references/routing-tables.md` - **Open-ended request** → classify to a loop, dispatch that loop - **Input destabilizes outer loop** → block inner loops, switch to affected loop (see `references/input-cla