ghreview 1.0.0 → 1.0.1
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.
- package/.github/workflows/test-and-release.yml +4 -3
- package/CHANGELOG.md +17 -0
- package/README.md +20 -2
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -10
|
@@ -27,6 +27,10 @@ jobs:
|
|
|
27
27
|
needs: test
|
|
28
28
|
runs-on: ubuntu-latest
|
|
29
29
|
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
|
|
30
|
+
permissions:
|
|
31
|
+
contents: write
|
|
32
|
+
issues: write
|
|
33
|
+
pull-requests: write
|
|
30
34
|
steps:
|
|
31
35
|
- name: Checkout
|
|
32
36
|
uses: actions/checkout@v4.2.2
|
|
@@ -39,9 +43,6 @@ jobs:
|
|
|
39
43
|
- name: Install dependencies
|
|
40
44
|
run: |
|
|
41
45
|
npm install --no-progress --no-save
|
|
42
|
-
- name: Build
|
|
43
|
-
run: |
|
|
44
|
-
npm run build
|
|
45
46
|
- name: Release
|
|
46
47
|
env:
|
|
47
48
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
## [1.0.1](https://github.com/rvagg/ghreview/compare/v1.0.0...v1.0.1) (2025-07-28)
|
|
2
|
+
|
|
3
|
+
### Trivial Changes
|
|
4
|
+
|
|
5
|
+
* bump ([ed0f6d9](https://github.com/rvagg/ghreview/commit/ed0f6d9b16c52566b1238f4b5ccdc362f5660d82))
|
|
6
|
+
|
|
7
|
+
## 1.0.0 (2025-07-28)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* publish ([b405eb4](https://github.com/rvagg/ghreview/commit/b405eb4cff0d13e856da0aeee895d7601d9f3763))
|
|
12
|
+
* update publish perms ([62009ef](https://github.com/rvagg/ghreview/commit/62009ef718d06664efb3ac5a001e5b84fe5364a0))
|
|
13
|
+
|
|
14
|
+
### Trivial Changes
|
|
15
|
+
|
|
16
|
+
* **docs:** expand workflow description ([5dd5671](https://github.com/rvagg/ghreview/commit/5dd5671f455dfa83bda88a1f8e0fab2fa9d836af))
|
|
17
|
+
* initial release ([2a1891d](https://github.com/rvagg/ghreview/commit/2a1891d9c7661f3bb761a8d2dfa36da1287fcea3))
|
package/README.md
CHANGED
|
@@ -1,10 +1,28 @@
|
|
|
1
1
|
# ghreview
|
|
2
2
|
|
|
3
|
+
[](https://nodei.co/npm/ghreview/)
|
|
4
|
+
|
|
3
5
|
GitHub PR-based code review workflow for AI-assisted development.
|
|
4
6
|
|
|
5
7
|
## Overview
|
|
6
8
|
|
|
7
|
-
`ghreview`
|
|
9
|
+
`ghreview` bridges the gap between AI-assisted coding and GitHub's superior code review interface. It allows you to review AI-generated code changes using GitHub's familiar PR review tools while keeping your local repository pristine.
|
|
10
|
+
|
|
11
|
+
### Why?
|
|
12
|
+
|
|
13
|
+
- **Clean local state**: Your working directory remains exactly as it was - no commits, no branch switches, no git operations visible in your project
|
|
14
|
+
- **Familiar workflow**: Use GitHub's excellent PR review interface with inline comments, suggestions, and discussions
|
|
15
|
+
- **Private reviews**: Use a dedicated private repository for reviews, keeping your AI interactions separate from your main project
|
|
16
|
+
- **Zero footprint**: Creates temporary branches and commits in a separate review repository, immediately cleaning up after pushing
|
|
17
|
+
- **AI-friendly output**: Collects all feedback in a structured format that's easy to paste back to your AI assistant
|
|
18
|
+
|
|
19
|
+
### How?
|
|
20
|
+
|
|
21
|
+
1. You work with your AI assistant and have uncommitted changes in your project
|
|
22
|
+
2. `ghreview init` pushes your current state to a dedicated review repository without affecting your local git state
|
|
23
|
+
3. You review the changes on GitHub using all the familiar tools
|
|
24
|
+
4. `ghreview collect` gathers your feedback in a format optimized for AI consumption
|
|
25
|
+
5. Your local repository remains untouched throughout - as if git was never involved
|
|
8
26
|
|
|
9
27
|
## Quick Start
|
|
10
28
|
|
|
@@ -182,4 +200,4 @@ npm test
|
|
|
182
200
|
|
|
183
201
|
## License
|
|
184
202
|
|
|
185
|
-
Apache-2.0
|
|
203
|
+
Apache-2.0
|
package/package.json
CHANGED