pullwise 0.2.0__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pullwise-0.2.0 → pullwise-0.4.0}/PKG-INFO +43 -3
- {pullwise-0.2.0 → pullwise-0.4.0}/README.md +42 -1
- pullwise-0.4.0/pr_pilot/__init__.py +1 -0
- pullwise-0.4.0/pr_pilot/analyzer.py +550 -0
- pullwise-0.4.0/pr_pilot/cli.py +382 -0
- pullwise-0.4.0/pr_pilot/templates.py +231 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/pullwise.egg-info/PKG-INFO +43 -3
- {pullwise-0.2.0 → pullwise-0.4.0}/pyproject.toml +4 -2
- pullwise-0.4.0/tests/test_analyzer.py +320 -0
- pullwise-0.2.0/pr_pilot/__init__.py +0 -1
- pullwise-0.2.0/pr_pilot/analyzer.py +0 -232
- pullwise-0.2.0/pr_pilot/cli.py +0 -183
- pullwise-0.2.0/pr_pilot/templates.py +0 -93
- pullwise-0.2.0/tests/test_analyzer.py +0 -162
- {pullwise-0.2.0 → pullwise-0.4.0}/pr_pilot/github_client.py +0 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/pullwise.egg-info/SOURCES.txt +0 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/pullwise.egg-info/dependency_links.txt +0 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/pullwise.egg-info/entry_points.txt +0 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/pullwise.egg-info/requires.txt +0 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/pullwise.egg-info/top_level.txt +0 -0
- {pullwise-0.2.0 → pullwise-0.4.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pullwise
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: AI-powered PR descriptions, labels, and code review using OpenAI
|
|
5
5
|
License: MIT
|
|
6
6
|
Project-URL: Homepage, https://github.com/albertusreza/pr-pilot
|
|
@@ -10,7 +10,6 @@ Keywords: github,pull-request,openai,ai,automation,devtools,cli,github-actions
|
|
|
10
10
|
Classifier: Development Status :: 3 - Alpha
|
|
11
11
|
Classifier: Environment :: Console
|
|
12
12
|
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
14
13
|
Classifier: Programming Language :: Python :: 3
|
|
15
14
|
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
16
15
|
Requires-Python: >=3.9
|
|
@@ -19,7 +18,7 @@ Requires-Dist: openai>=1.0.0
|
|
|
19
18
|
Provides-Extra: dev
|
|
20
19
|
Requires-Dist: pytest; extra == "dev"
|
|
21
20
|
|
|
22
|
-
#
|
|
21
|
+
# PullWise ✈️
|
|
23
22
|
|
|
24
23
|
[](https://pypi.org/project/pullwise/)
|
|
25
24
|
[](https://pypi.org/project/pullwise/)
|
|
@@ -28,6 +27,8 @@ Requires-Dist: pytest; extra == "dev"
|
|
|
28
27
|
|
|
29
28
|
**Stop writing PR descriptions.** Let AI do it.
|
|
30
29
|
|
|
30
|
+
> 📦 GitHub Action: [`albertusreza/pr-pilot`](https://github.com/marketplace/actions/pullwise) · PyPI: [`pullwise`](https://pypi.org/project/pullwise/)
|
|
31
|
+
|
|
31
32
|
`pr-pilot` is a GitHub Action + CLI that analyzes your diff and commit history, then automatically writes a clear, structured PR description — with a summary, change list, test plan, and labels.
|
|
32
33
|
|
|
33
34
|
```yaml
|
|
@@ -116,6 +117,11 @@ pr-pilot describe --markdown pr_description.md
|
|
|
116
117
|
| `pr-pilot review` | Get a senior-engineer-style code review in the terminal |
|
|
117
118
|
| `pr-pilot comment` | Post an AI review as a GitHub PR comment (updates on re-run, no spam) |
|
|
118
119
|
| `pr-pilot changelog` | Generate a `CHANGELOG.md` entry from commits since last tag |
|
|
120
|
+
| `pr-pilot reviewers` | Suggest reviewers based on git blame of changed files |
|
|
121
|
+
| `pr-pilot standup` | Generate a daily standup update from your recent commits |
|
|
122
|
+
| `pr-pilot todos` | Scan for TODO/FIXME comments and create GitHub issues from them |
|
|
123
|
+
| `pr-pilot commit` | Generate a Conventional Commit message from staged changes |
|
|
124
|
+
| `pr-pilot release` | Full release: changelog + git tag + GitHub release in one command |
|
|
119
125
|
|
|
120
126
|
## Usage
|
|
121
127
|
|
|
@@ -136,6 +142,40 @@ pr-pilot changelog
|
|
|
136
142
|
pr-pilot changelog --output CHANGELOG.md
|
|
137
143
|
```
|
|
138
144
|
|
|
145
|
+
```bash
|
|
146
|
+
# Generate a commit message from staged changes
|
|
147
|
+
pr-pilot commit
|
|
148
|
+
|
|
149
|
+
# Run git commit directly with the generated message
|
|
150
|
+
pr-pilot commit --commit
|
|
151
|
+
|
|
152
|
+
# Full release: bump version + write changelog + create GitHub release
|
|
153
|
+
pr-pilot release --repo owner/repo
|
|
154
|
+
|
|
155
|
+
# Preview release without publishing
|
|
156
|
+
pr-pilot release --repo owner/repo --dry-run
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
# Suggest reviewers for your current branch
|
|
161
|
+
pr-pilot reviewers --base main
|
|
162
|
+
|
|
163
|
+
# Post suggestion as a comment + assign on GitHub
|
|
164
|
+
pr-pilot reviewers --post --assign --repo owner/repo --pr 42
|
|
165
|
+
|
|
166
|
+
# Generate a standup from yesterday's commits
|
|
167
|
+
pr-pilot standup
|
|
168
|
+
|
|
169
|
+
# Generate from the last 3 days and copy to clipboard
|
|
170
|
+
pr-pilot standup --days 3 --copy
|
|
171
|
+
|
|
172
|
+
# Scan for TODO/FIXME and preview issues
|
|
173
|
+
pr-pilot todos
|
|
174
|
+
|
|
175
|
+
# Actually create GitHub issues from them
|
|
176
|
+
pr-pilot todos --create --repo owner/repo
|
|
177
|
+
```
|
|
178
|
+
|
|
139
179
|
### Auto-comment on every PR (GitHub Action)
|
|
140
180
|
|
|
141
181
|
```yaml
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# PullWise ✈️
|
|
2
2
|
|
|
3
3
|
[](https://pypi.org/project/pullwise/)
|
|
4
4
|
[](https://pypi.org/project/pullwise/)
|
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
**Stop writing PR descriptions.** Let AI do it.
|
|
9
9
|
|
|
10
|
+
> 📦 GitHub Action: [`albertusreza/pr-pilot`](https://github.com/marketplace/actions/pullwise) · PyPI: [`pullwise`](https://pypi.org/project/pullwise/)
|
|
11
|
+
|
|
10
12
|
`pr-pilot` is a GitHub Action + CLI that analyzes your diff and commit history, then automatically writes a clear, structured PR description — with a summary, change list, test plan, and labels.
|
|
11
13
|
|
|
12
14
|
```yaml
|
|
@@ -95,6 +97,11 @@ pr-pilot describe --markdown pr_description.md
|
|
|
95
97
|
| `pr-pilot review` | Get a senior-engineer-style code review in the terminal |
|
|
96
98
|
| `pr-pilot comment` | Post an AI review as a GitHub PR comment (updates on re-run, no spam) |
|
|
97
99
|
| `pr-pilot changelog` | Generate a `CHANGELOG.md` entry from commits since last tag |
|
|
100
|
+
| `pr-pilot reviewers` | Suggest reviewers based on git blame of changed files |
|
|
101
|
+
| `pr-pilot standup` | Generate a daily standup update from your recent commits |
|
|
102
|
+
| `pr-pilot todos` | Scan for TODO/FIXME comments and create GitHub issues from them |
|
|
103
|
+
| `pr-pilot commit` | Generate a Conventional Commit message from staged changes |
|
|
104
|
+
| `pr-pilot release` | Full release: changelog + git tag + GitHub release in one command |
|
|
98
105
|
|
|
99
106
|
## Usage
|
|
100
107
|
|
|
@@ -115,6 +122,40 @@ pr-pilot changelog
|
|
|
115
122
|
pr-pilot changelog --output CHANGELOG.md
|
|
116
123
|
```
|
|
117
124
|
|
|
125
|
+
```bash
|
|
126
|
+
# Generate a commit message from staged changes
|
|
127
|
+
pr-pilot commit
|
|
128
|
+
|
|
129
|
+
# Run git commit directly with the generated message
|
|
130
|
+
pr-pilot commit --commit
|
|
131
|
+
|
|
132
|
+
# Full release: bump version + write changelog + create GitHub release
|
|
133
|
+
pr-pilot release --repo owner/repo
|
|
134
|
+
|
|
135
|
+
# Preview release without publishing
|
|
136
|
+
pr-pilot release --repo owner/repo --dry-run
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Suggest reviewers for your current branch
|
|
141
|
+
pr-pilot reviewers --base main
|
|
142
|
+
|
|
143
|
+
# Post suggestion as a comment + assign on GitHub
|
|
144
|
+
pr-pilot reviewers --post --assign --repo owner/repo --pr 42
|
|
145
|
+
|
|
146
|
+
# Generate a standup from yesterday's commits
|
|
147
|
+
pr-pilot standup
|
|
148
|
+
|
|
149
|
+
# Generate from the last 3 days and copy to clipboard
|
|
150
|
+
pr-pilot standup --days 3 --copy
|
|
151
|
+
|
|
152
|
+
# Scan for TODO/FIXME and preview issues
|
|
153
|
+
pr-pilot todos
|
|
154
|
+
|
|
155
|
+
# Actually create GitHub issues from them
|
|
156
|
+
pr-pilot todos --create --repo owner/repo
|
|
157
|
+
```
|
|
158
|
+
|
|
118
159
|
### Auto-comment on every PR (GitHub Action)
|
|
119
160
|
|
|
120
161
|
```yaml
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.4.0"
|