prreviewbuddy 0.12.17 → 0.14.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/README.md +16 -4
- package/dist/{log-CFa7EzgZ.js → log-Cpp-UmrO.js} +1524 -711
- package/dist/main.js +524 -45
- package/dist/server.js +49 -10
- package/package.json +1 -1
- package/static/workspace.js +0 -0
package/README.md
CHANGED
|
@@ -22,8 +22,13 @@ prreviewbuddy review --base main compare against a base branch of your choos
|
|
|
22
22
|
prreviewbuddy review --fresh review this branch again, keeping the existing review
|
|
23
23
|
|
|
24
24
|
prreviewbuddy open list your reviews and open the index
|
|
25
|
-
prreviewbuddy open <
|
|
25
|
+
prreviewbuddy open <review> open one review
|
|
26
26
|
prreviewbuddy update bring the newest review of this repository up to date
|
|
27
|
+
|
|
28
|
+
prreviewbuddy agents which coding agents you have
|
|
29
|
+
prreviewbuddy review --agent <agent> review with a named one
|
|
30
|
+
prreviewbuddy config set agent <agent>
|
|
31
|
+
remember which to use when you do not name one
|
|
27
32
|
```
|
|
28
33
|
|
|
29
34
|
Run it from inside the repository you want reviewed.
|
|
@@ -31,12 +36,19 @@ Run it from inside the repository you want reviewed.
|
|
|
31
36
|
## What you need
|
|
32
37
|
|
|
33
38
|
- **Node 20 or newer**, and **git**.
|
|
34
|
-
- **
|
|
39
|
+
- **A coding agent**, installed and signed in. It does the analysis. Any one of
|
|
40
|
+
[Claude Code](https://claude.com/claude-code), [Codex CLI](https://developers.openai.com/codex/cli)
|
|
41
|
+
or [Gemini CLI](https://github.com/google-gemini/gemini-cli). Run `prreviewbuddy agents` to see
|
|
42
|
+
which of them this machine has.
|
|
35
43
|
- **[GitHub CLI](https://cli.github.com/)** (`gh`), signed in, if you want the pull request
|
|
36
44
|
conversation read. Without it the review still runs, on the code alone, and says so.
|
|
37
45
|
|
|
38
|
-
There is no account
|
|
39
|
-
|
|
46
|
+
There is no account and no API key. PR Review Buddy uses a coding agent installed on your machine
|
|
47
|
+
and that agent's existing authentication; it never sees a token and never asks you for one.
|
|
48
|
+
|
|
49
|
+
With more than one agent installed and none chosen, the first review asks which to use and offers
|
|
50
|
+
to remember the answer. A review keeps the agent it was made with, so a later question about it is
|
|
51
|
+
answered by whichever agent wrote it.
|
|
40
52
|
|
|
41
53
|
If you keep more than one Claude profile, set `CLAUDE_CONFIG_DIR` in the shell you run this from.
|
|
42
54
|
A review pins the environment it was created in, so it will keep using whichever profile it
|