From atlassian-suite
This skill should be used when the user asks to "create a PR", "open pull request", "raise PR", "create bitbucket PR from current branch", or runs `/atlassian-suite:pr-create`. Creates a Bitbucket PR with default reviewers, source/destination branches, and a Jira-aware description.
npx claudepluginhub acendas/acendas-marketplace --plugin atlassian-suiteThis skill is limited to using the following tools:
Open a Bitbucket PR with sensible defaults.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Open a Bitbucket PR with sensible defaults.
$1 = Repo slug.
$2 = Source branch.
$3 = Optional destination (default main).
$4 = Optional title (else derive from branch / latest commit).
Validate branches via mcp__acendas-atlassian__list_branches. If source is missing, report and stop.
Derive title if not provided:
feature/PROJ-123-foo-bar), pull the issue summary via mcp__acendas-atlassian__jira_get_issue and use [PROJ-123] {summary}.git log -1 --pretty=%s (Bash).Compose description.
Jira: {KEY} and a one-line summary.## Changes section with bullet points from git log {dest}..{source} --pretty="- %s" (Bash, capped at 20 lines).## Test plan placeholder for the user to fill in.Confirm the payload with the user before creating (title, description preview, dest branch).
Create via mcp__acendas-atlassian__create_pull_request with use_default_reviewers=true. Report the new PR URL.
git push -u origin {branch}.[DRAFT] to the title (Bitbucket Cloud doesn't have a native draft state).