issue-orchestratelisted
Install: claude install-skill nolte/claude-shared
# Issue Orchestration
Implements `spec/project/issue-orchestration/`. The skill is the generalist
orchestrator that comprehends a raw GitHub issue, decomposes it into atomic
specialist-ready work packages, dispatches the hands-on work to the most
specialised available Claude skill or agent, and verifies the result through the
standard pull-request gate. It never performs a work package's editing itself when
a matching specialist exists; the quality-bearing core is the persistent
pre-analysis artifact that prepares each sub-problem so a specialist can implement
it completely.
## Why this is a skill, not an agent
- **Externally-visible mutations gate on operator confirmation.** Issue-scope
confirmation, the classification call, the pre-analysis approval, the route
decision, each specialist dispatch, and the PR title / body are mid-flow operator
dialogues; an agent's fire-and-forget shape would miss them.
- **Orchestrator pattern (per `skill-vs-agent`).** The work is *analyse, decompose,
route, dispatch, verify*; the dispatched specialist does the editing. The
orchestrator stays in the main thread and chains other skills (`feature-decompose`
or `roadmap-plan` for the pipeline route, `quality-gate`, `pull-request-create`).
- **Multi-phase state accumulates across prompts.** A decomposition, a route
decision, and a sequence of per-package dispatches span many turns; a skill's
persistent instruction context and the resumable-work envelope fit this naturally.
- Co