pr-message-writer

Installation
SKILL.md

PR Message Writer

Write comprehensive, well-structured pull request descriptions by analyzing code changes and following established best practices for technical documentation.

Workflow

Step 1: Gather Context

  1. Determine the main branch:

    git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'
    

    Falls back to main or master if not set.

  2. Find the merge base:

    MAIN_BRANCH=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@' || echo "main")
    MERGE_BASE=$(git merge-base HEAD origin/$MAIN_BRANCH)
    
Installs
15
GitHub Stars
19
First Seen
Apr 14, 2026
pr-message-writer — krzysztofsurdy/code-virtuoso