What problem does it solve? Before a pull request goes to review, several independent checks must run in the right order: verifying the branch still integrates with an advanced base branch, running comment/convention/test reviews, applying fixes, committing, and deciding whether the PR description needs updating. Doing this manually is error-prone and easy to sequence incorrectly. ## Core Features & Use Cases - Base Integration Verification: Uses a temporary git worktree to merge the latest base branch and run builds/tests without dirtying the working tree, catching breakage that branch-only CI misses. - Sequential Review Orchestration: Invokes review-comments, review-conventions, and review-tests skills in order, then applies [must] fixes and reports skipped [imo]/[nits] suggestions with reasons. - Commit and PR Description Finalization: Delegates committing to the cp skill and conditionally calls update-pr-description only when the diff and description have diverged. - Use Case: After finishing a feature branch, ask to finalize the PR; the skill verifies base integration, runs all three reviews, fixes violations, pushes commits, and refreshes the PR description in one pass. ## Quick Start Ask the assistant to finalize the current pull request before review, optionally providing a PR number or URL.