Metadata-Version: 2.4
Name: prpolish
Version: 0.1.0
Summary: A CLI tool to generate PR titles and descriptions for Git repositories
Home-page: https://github.com/yashg4509/prpolish
Author: Yash Gupta
Author-email: ysgupta@wisc.edu
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: GitPython
Requires-Dist: pyperclip
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

<!-- HERO SECTION -->
<p align="center">
  <img src="https://img.shields.io/badge/AI%20PR%20Helper-%F0%9F%9A%80-blueviolet?style=for-the-badge" alt="AI PR Helper"/>
</p>
<h1 align="center">prpolish: AI-Powered PR Helper</h1>
<p align="center">
  <b>Supercharge your pull requests with AI-generated titles, descriptions, and quality checks!</b><br/>
  <i>Make every PR shine ✨</i>
</p>

<!-- BADGES -->
<p align="center">
  <a href="https://pypi.org/project/prpolish/"><img src="https://img.shields.io/pypi/v/prpolish?style=for-the-badge&color=blue" alt="PyPI version"></a>
  <a href="https://github.com/YOUR_GITHUB/prpolish/actions"><img src="https://img.shields.io/github/actions/workflow/status/YOUR_GITHUB/prpolish/ci.yml?branch=main&style=for-the-badge" alt="Build Status"></a>
  <a href="https://github.com/YOUR_GITHUB/prpolish/blob/main/LICENSE"><img src="https://img.shields.io/github/license/YOUR_GITHUB/prpolish?style=for-the-badge&color=success" alt="License"></a>
  <a href="https://github.com/YOUR_GITHUB/prpolish/stargazers"><img src="https://img.shields.io/github/stars/YOUR_GITHUB/prpolish?style=for-the-badge&color=yellow" alt="Stars"></a>
</p>

---

<!-- DEMO GIF/IMAGE -->
<p align="center">
  <img src="https://user-images.githubusercontent.com/6388707/235325123-2e7e6b8e-2e7e-4b7e-8e2e-2e7e6b8e2e7e.gif" alt="Demo" width="600"/>
  <br/>
  <i>Above: Example of prpolish generating a beautiful PR description and running vibe checks</i>
</p>

---

## <img src="https://twemoji.maxcdn.com/v/latest/svg/1f4a1.svg" width="24"/> Features

- <b>PR Title & Description Generator:</b> AI-powered, context-aware, and customizable.
- <b>Vibe Check Warnings:</b> Flags low-quality commits, missing tests, and more.
- <b>CLI Interface:</b> Simple, interactive, and scriptable.
- <b>Custom Templates:</b> Use your own PR templates (string or file).
- <b>LLM-Powered:</b> Uses OpenAI GPT for best results, with fallback heuristics.
- <b>Failsafe Defaults:</b> Always allows user editing and review.

---

## <img src="https://twemoji.maxcdn.com/v/latest/svg/1f680.svg" width="24"/> Quickstart

```bash
# 1. Install dependencies
pip install -r requirements.txt

# 2. (Optional) Install GitHub CLI for auto PR creation
# https://cli.github.com/

# 3. Run the CLI from your repo root
python -m prpolish.cli generate
```

---

## <img src="https://twemoji.maxcdn.com/v/latest/svg/1f527.svg" width="24"/> CLI Commands

<details>
<summary><b>Show all commands & options</b></summary>

```bash
# Generate PR title and description
python -m prpolish.cli generate [--template <str|path>] [--save, -s title|description|both] [--fast, -f]

# Generate only the PR title
ython -m prpolish.cli generate-title [--template <str|path>] [--save, -s]

# Generate only the PR description
python -m prpolish.cli generate-desc [--template <str|path>] [--save, -s]

# Install and authenticate GitHub CLI
ython -m prpolish.cli setup-gh
```
</details>

---

## LLM-Powered PR Descriptions

1. Get your OpenAI API key from <a href="https://platform.openai.com/account/api-keys" target="_blank">OpenAI</a>
2. Set it in your environment:

```bash
export OPENAI_API_KEY=sk-...
```

If no API key is set, the tool falls back to a heuristic generator.

---

## Custom PR Templates

You can provide your own template for the PR description using the `--template` flag. This can be either a string or a path to a file containing your template. 

If you already have a `pull_request_template.md`, it will automatically detect it and use it.

---

## Project Structure

```text
prpolish/
├── __init__.py
├── cli.py
├── pr_description.py
├── vibe_check.py
├── git_utils.py
├── clipboard.py
```

---

## <img src="https://twemoji.maxcdn.com/v/latest/svg/1f512.svg" width="24"/> License

<p align="center">
  <a href="https://github.com/YOUR_GITHUB/prpolish/blob/main/LICENSE"><img src="https://img.shields.io/github/license/YOUR_GITHUB/prpolish?style=flat-square&color=success" alt="License"></a>
</p>

<p align="center">
  <sub>Made by <a href="https://github.com/yashg4509">@yashg4509</a></sub>
</p> 
