PR Summary banner
ChrisWiles ChrisWiles

PR Summary

Git community intermediate

Description

Generate a pull request summary for the current branch.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

Repository README

This is the README for ChrisWiles/claude-code-showcase, shared by 6 entries in this directory. It describes the repository, not this entry specifically.


description: Generate a summary for the current branch changes allowed-tools: Bash(git:*)

PR Summary

Generate a pull request summary for the current branch.

Instructions

  1. **Analyze changes**:

    git log main..HEAD --oneline
    git diff main...HEAD --stat
  2. **Generate summary** with:

    • Brief description of what changed
    • List of files modified
    • Breaking changes (if any)
    • Testing notes
  3. **Format as PR body**:

    ## Summary
    [1-3 bullet points describing the changes]
    
    ## Changes
    - [List of significant changes]
    
    ## Test Plan
    - [ ] [Testing checklist items]