What problem does it solve? When implementation work is done, developers often face an ambiguous decision about how to integrate the branch, risking broken merges, forgotten worktrees, or accidentally deleted work. This Skill structures the end-of-branch workflow so tests are verified first and every integration path is handled safely. ## Core Features & Use Cases - Test Gate Before Integration: Runs the project's test suite and blocks any merge or PR until all tests pass. - Four Structured Options: Presents exactly four choices—merge locally, push and create a PR, keep the branch as-is, or discard the work—then executes the chosen git workflow. - Safe Cleanup and Discard Protection: Requires typed confirmation before deleting branches and cleans up git worktrees only for the appropriate options. - Use Case: After finishing a feature branch in a git worktree, invoke this Skill to verify tests, create a pull request with a summary and test plan via gh pr create, and remove the worktree. ## Quick Start Ask the assistant to finish the current development branch and choose whether to merge it, open a pull request, keep it, or discard it.