What problem does it solve? Verifying that a package's pull request actually works on real hardware requires manually locating the PR, resolving its worktree and commit SHA, and extracting acceptance criteria from the package spec. This Skill automates that preparation and hands off a complete, correct context to the hardware-verifier agent. ## Core Features & Use Cases - PR Discovery: Finds the package's most recent open or closed pull request using the GitHub CLI. - Spec Extraction: Reads the package spec at .astroray_plan/packages/<pkg>*.md to pull the acceptance gate list and most recent binding for smoke-checking. - Worktree Resolution: Resolves the PR's branch worktree path and head SHA, verifying the worktree exists via git worktree list. - Reactive Mode: Can be triggered automatically when a PR carries the needs-verifier label, extracting the package name from the PR title. - Use Case: After a package PR is opened in the Astroray renderer repository, run the verify command to dispatch a hardware-verifier agent with the correct worktree, expected SHA, and acceptance gates. ## Quick Start Run /verify pkg241 to spawn the hardware-verifier agent for that package's most recent pull request.