From dev-workflow
Create a pull request from the current branch. Activate when user asks to create a PR, open a pull request, submit for review, or says /create-pr.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-workflow:create-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. **Detect optional ticket ID** from current branch name:
Detect optional ticket ID from current branch name:
git branch --show-current<type>/<TICKET-ID>-short-description (e.g., feat/1234-add-feature)feat/1234-add-feature → 1234Fetch ticket context (if ticket exists):
<platform-cli> to fetch ticket details as secondary context when a ticket was detected or explicitly requestedAnalyze code changes (primary source for PR title):
git log develop..HEAD --onelinegit diff develop...HEAD --statgit diff develop...HEADGenerate PR title:
<TICKET-ID>: <concise summary> (e.g. 1234: bump dependency to 2.0.33)<concise summary>Create PR:
<platform-cli> to create the PR with the generated title and empty bodygh for GitHub, glab for GitLabSingle commit branch:
feat/1234-pydantic-bump1234: bump pydantic to 2.10.01234: pydantic version bump to 2.10.0Multi-commit follow-up branch:
fix/5678-merchant-screening5678: fix lint errors and update test snapshots
(code changes prioritized over ticket description)npx claudepluginhub alex-kopylov/zweihander --plugin dev-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.