pr-assistant
Installation
SKILL.md
PR Assistant
Assists with creating well-structured pull requests by analyzing changes and generating comprehensive PR descriptions.
Core Philosophy
Human-in-the-loop: This skill generates PR drafts that MUST be reviewed and approved by the user before submission. Never auto-create PRs without explicit confirmation.
Workflow
1. Analyze Changes
First, gather context about the current branch:
# Get current branch and target branch
CURRENT_BRANCH=$(git branch --show-current)
TARGET_BRANCH=${TARGET_BRANCH:-main}