What problem does it solve? Merging Bitbucket pull requests from an automated workflow requires validating PR state, mapping merge strategies to Bitbucket's API, handling branch deletion semantics, and recording merge results consistently. This Skill performs those steps as an internal delegate called by the merge-pr workflow with fully resolved inputs. ## Core Features & Use Cases - State validation before merge: Fetches the PR and refuses to merge when the state is not OPEN, failing closed when the state cannot be determined. - Strategy and deletion mapping: Maps squash, merge, and rebase strategies to Bitbucket's mergeStrategy values and maps deletion strategies to closeSourceBranch, refusing the unmappable 'both' option. - Merge artifact recording: Writes a timestamped merge artifact to the ticket directory so downstream steps like capture-lede-decision can read the merge result. - Use Case: A merge-pr orchestration flow resolves a Bitbucket PR URL, composes the merge title and body, and delegates to this Skill to execute the merge and save the artifact. ## Quick Start Ask the merge-pr workflow to merge the resolved Bitbucket pull request with the chosen strategy and let this delegate validate, merge, and record the result.