---
title: "PR Summary"
description: "Generate a pull request summary for the current branch."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/pr-summary
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:37:02.321Z
license: CC-BY-4.0
attribution: "PR Summary — Claudary (https://claudary.paisolsolutions.com/skills/pr-summary)"
---

# PR Summary
Generate a pull request summary for the current branch.

## Overview

---
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**:
   ```bash
   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**:
   ```markdown
   ## Summary
   [1-3 bullet points describing the changes]

   ## Changes
   - [List of significant changes]

   ## Test Plan
   - [ ] [Testing checklist items]
   ```

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/pr-summary) · https://claudary.paisolsolutions.com
