| name | pr-description |
| description | Generate a PR description for the current branch against your base branch. |
PR Description
Invocation
This skill defaults to running in the Developer persona. If you are not already running as Developer (for example, the user invoked /pr-description directly or you are the parent agent), delegate execution to a Developer subagent and stop. If you are already running as Developer, continue with the steps below.
Objective
Generate a copyable PR description for the current branch relative to your base branch.
Instructions
- Analyze the branch diff with
git diff <base-branch>...HEAD.
- Read recent commits with
git log <base-branch>...HEAD --oneline.
- If there are no branch changes relative to your base branch, stop and report that clearly.
- Read
templates/pr-description-template.md.
- Fill the template with a concise title, summary, change list, testing notes, and related specs or briefs when present.
- Output the final description inside a single fenced
markdown block for easy copy-paste.
- Suggest
/draft-pr as the next step.