What problem does it solve? Shipping a finished task involves many easy-to-forget steps: resolving leftover PR feedback, running the right tests, writing retrospective feedback, merging, and cleaning up the worktree. This Skill walks through that entire finalization checklist so nothing is skipped before a branch lands on main. ## Core Features & Use Cases - Pre-merge verification: Checks prerequisites (feature branch, clean tree, open PR), resolves outstanding review threads via the address-feedback skill, and runs typecheck plus affected unit and E2E tests. - Structured feedback capture: Creates a feedback.md retrospective from a template covering problems faced, reflections, and useful context, then commits it before merging. - Merge and cleanup: Squash-merges the PR with gh pr merge --squash --delete-branch, exits the worktree, pulls latest main, and verifies the squashed commit landed. - Use Case: After executing a planned task in an isolated worktree and getting PR approval, invoke this Skill to ship the branch with a complete audit trail. ## Quick Start Complete and merge the current task branch after all PR feedback is addressed.