← ClaudeAtlas

relay-dispatchlisted

Dispatch implementation tasks via worktree isolation. Use when delegating work to an executor, running background dispatches, or parallelizing independent tasks.
sungjunlee/dev-relay · ★ 0 · Code & Development · score 72
Install: claude install-skill sungjunlee/dev-relay
## Inputs - Env: optional `RELAY_SKILL_ROOT` defaults to `skills`. - Files: dispatch prompt (`--prompt-file` or `--prompt`), required evaluation artifact or legacy rubric via `--rubric-file`, optional Done Criteria file, request/leaf ids, copied files, and retained run manifest. - Sibling scripts: `${RELAY_SKILL_ROOT:-skills}/relay-dispatch/scripts/dispatch.js`. # Relay Dispatch ## Use when - Delegating implementation to an executor (`codex`, `claude`, `opencode`, `pi`, `antigravity`, `cursor`, `cline`) via worktree isolation - Resuming a same-run after a `changes_requested` review - Running background or parallel dispatches for independent tasks ## Do not use when - Authoring rubrics or planning — use `relay-plan` - Reviewing executor output — use `relay-review` - Task lacks frozen Done Criteria — anchor it via `relay-ready` first ## Usage ```bash # Foreground (blocking — simple tasks, default executor: codex) node "${RELAY_SKILL_ROOT:-skills}/relay-dispatch/scripts/dispatch.js" . -b feature-auth -p "..." --rubric-file rubric.yaml # Detached (recommended for long/background work; survives caller shell exit) node "${RELAY_SKILL_ROOT:-skills}/relay-dispatch/scripts/dispatch.js" . -b feature-auth -p "..." --rubric-file rubric.yaml --detach --json # Same-run resume after a changes-requested review node "${RELAY_SKILL_ROOT:-skills}/relay-dispatch/scripts/dispatch.js" . --run-id issue-42-20260403120000000 --prompt-file review-round-2-redispatch.md # With explicit executo