
bitbucket-cloud
Handle Bitbucket Cloud PR operations. Use for "PR", "pull request", "review" when repo is on bitbuck
by vkkotha|Open Source
Bitbucket Cloud PR Operations
Platform Detection
Run git remote -v to verify this is Bitbucket Cloud (bitbucket.org):
- SSH format:
git@bitbucket.org:workspace/repo.git - HTTPS format:
https://bitbucket.org/workspace/repo.git - Extract: workspace =
workspace, repository =repo
Status Indicators
When listing or displaying PRs, use these status emojis based on PR state:
| Condition | Status |
|---|---|
| Draft | 📝 Draft |
| Open | ✅ Open |
| Merged | 🔀 Merged |
| Declined | ❌ Declined |
Output Format
Display PRs in a table with columns: | # | Title | Author | Branch | Status | Updated |
Example:
| 42 | Add authentication feature | alice | feature/auth | ✅ Open | 1/22/2026 |
| 41 | Update dependencies | bob | chore/deps | 📝 Draft | 1/20/2026 |
PR Review
When reviewing a PR:
- Fetch PR details and diff
- Analyze for bugs, security issues, performance, and code quality
- Present findings as:
## PR Review: #<NUM> - <TITLE> - List issues with file references:
file_path:line_number - Provide verdict: APPROVE, REQUEST_CHANGES, or COMMENT
- Post comments/approve via MCP tools if requested