Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub urso/claudev --plugin miscHow this skill is triggered — by the user, by Claude, or both
Slash command
/misc:pr-descriptionhaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate a pull request title and description based on changes between the current branch and main. Outputs the description for the user to copy or use with `gh pr create`.
Generates concise branch summaries for PR descriptions by analyzing git diffs and commit history.
Reads the current branch diff and commit messages to generate a structured GitHub PR description (summary, changes, testing) and optionally create or update the PR via the gh CLI.
Drafts conventional commit PR titles and Shopware 5-section descriptions for core PRs targeting trunk. Analyzes branch against trunk, uses session context, asks for missing info.
Share bugs, ideas, or general feedback.
Generate a pull request title and description based on changes between the current branch and main. Outputs the description for the user to copy or use with gh pr create.
$ARGUMENTS
Parse for:
--detailed for a more thorough description (optional)--story <story-file> for additional context (optional)!git rev-parse --abbrev-ref HEAD
!git merge-base main HEAD
!git log --oneline main..HEAD
!git diff --stat main...HEAD
!git diff main...HEAD
If the diff summary is empty, report and exit:
No changes found between current branch and main.
If on main, report and exit:
Already on main. Create or switch to a feature branch first.
If --story provided, read the file to understand the motivation behind the work.
From the commits and diff, identify:
Title:
Body (default / concise mode):
## Summary section with 1-3 bullet points covering what changed and why## Test plan section with a brief checklist of how to verifyBody (--detailed mode):
## Summary section with a paragraph explaining the motivation and approach## Changes section with grouped bullet points by area/file## Test plan section with a thorough checklist## Breaking changes or ## Migration notes## Suggested PR
**Title:** <title>
**Body:**
<body in markdown>