What problem does it solve? When reviewing a pull request that claims to fix a bug in the LinkedIn MCP server, maintainers need proof that the fix actually works against the real LinkedIn site, not just a code read. This Skill automates that verification: it checks out the PR, restarts the MCP server on the PR branch, replays the exact tool call that failed on main, and diffs the outputs to produce a clear verdict. ## Core Features & Use Cases - Baseline Replay: Reuses the on-main failure baseline and tool-call metadata captured by /2-repro-issue, so the exact same MCP tool call is re-run on the PR branch. - Safe PR Checkout: Fetches the PR head into a detached HEAD, installs an EXIT trap to restore the original branch, and never edits, merges, or pushes. - Verdict Classification: Classifies the PR as fixes, fixes with concerns, does not fix, cannot run, or cannot verify (skill limitation), with evidence from the output diff. - Scraping Rule Audit: Audits the PR diff against CLAUDE.md rules for locale-independent detection, DOM-class selector avoidance, section-to-URL mapping, and test coverage. - Use Case: A maintainer asks "does PR #498 fix issue #470?" — the Skill checks out the PR, replays the failing get_person_profile call, diffs the JSON responses, and reports a verdict with audit flags. ## Quick Start Ask the assistant to verify PR #498 against the baseline captured earlier by running /2-repro-issue on the linked issue.