What problem does it solve? Handling one-off, untracked coding requests often pollutes the tracked backlog or forces manual worktree, branch, and PR management. This Skill provides a middle dispatch tier between conversational steering and full backlog processing: it mints a disposable issue, spins a dedicated worker in an isolated worktree, runs review and validation gates, and brings back a PR — all through the daemon's MCP interface. ## Core Features & Use Cases - Approval-gated dispatch: Drafts a detailed Task and Definition of Done and requires explicit maintainer approval before any worker is dispatched. - Multiple dispatch modes: direct-PR (default), no-mistakes (hardened pre-PR pipeline), local-only (approved local fast-forward merge), and --scout for read-only investigations that post a report comment and mutate nothing. - Lane isolation and observability: Disposable issues carry lane:go or lane:scout labels so fleet drains never pick them up, and workers are stamped with origin=go/origin=scout for status tracking. - Use Case: A maintainer needs a quick one-off fix that should not become a tracked backlog item. They run /go "fix the flaky login test" --dod "test passes 10 consecutive runs", approve the drafted Task and DoD, and receive a PR that auto-closes the disposable issue on merge. ## Quick Start Ask the agent to dispatch an ad-hoc task with /go followed by your quoted demand, then approve the drafted Task and Definition of Done when prompted.