What problem does it solve? Reviewing a GitHub pull request requires gathering PR metadata, confirming the local checkout matches the PR head commit, and locating the authoritative specification (ticket or PR description). Doing this manually is slow and error-prone, and reviewing against a mismatched HEAD produces invalid findings. ## Core Features & Use Cases - Single-call PR metadata fetch: Retrieves number, title, body, URL, head/base refs, and closing issue references with one gh pr view invocation. - HEAD verification with hard stop: Compares local HEAD against the PR's head commit and exits with a copy-pasteable gh pr checkout fix command on mismatch. - Ticket resolution cascade: Resolves the specification source in a fixed order: explicit override, first closing issue reference, PR body issue-reference parsing, or PR description alone. - Use Case: An agent running the review-pr workflow invokes this delegate to prepare a resolved-input record (merge-base SHA, diff base, spec sources, PR metadata) that is passed directly to review-branch for the actual review. ## Quick Start Ask the agent to prepare the review inputs for pull request 1024 by fetching its metadata and resolving its linked ticket.