pi-pr-review 1.6.0 → 1.6.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/.pi/npm/.gitignore +2 -0
- package/.pi/settings.json +5 -0
- package/README.md +6 -6
- package/package.json +19 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pi-pr-review
|
|
2
2
|
|
|
3
|
-
A model-agnostic GitHub pull
|
|
3
|
+
A parallel, model-agnostic AI code reviewer for GitHub pull requests in the [Pi coding agent](https://pi.dev).
|
|
4
4
|
|
|
5
5
|
Pass a PR number and pi will:
|
|
6
6
|
|
|
@@ -21,19 +21,19 @@ No model name is hardcoded anywhere. The package ships an extension that adds **
|
|
|
21
21
|
|
|
22
22
|
## Install
|
|
23
23
|
|
|
24
|
-
Install
|
|
24
|
+
Install the published npm package in user scope:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
pi install
|
|
27
|
+
pi install npm:pi-pr-review
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
Or project scope
|
|
30
|
+
Or install it in project scope so the dependency is shareable with your team and automatically installed when the project is trusted:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
pi install -l
|
|
33
|
+
pi install -l npm:pi-pr-review
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
For local development only, you can point pi at a checkout with `pi install ./pi-pr-review` (add `-l` for project scope).
|
|
37
37
|
|
|
38
38
|
### Alternative: use the template without packaging
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-pr-review",
|
|
3
|
-
"version": "1.6.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.6.1",
|
|
4
|
+
"description": "Parallel AI code review for GitHub pull requests in the Pi coding agent, with model-agnostic tiered subagents, structured findings, optional verification, and safe COMMENT-only publishing.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
7
|
+
"pi-extension",
|
|
8
|
+
"pi",
|
|
9
|
+
"pi-coding-agent",
|
|
10
|
+
"pr-review",
|
|
7
11
|
"code-review",
|
|
12
|
+
"ai-code-review",
|
|
13
|
+
"ai-review",
|
|
8
14
|
"github",
|
|
15
|
+
"github-pr",
|
|
9
16
|
"pull-request",
|
|
10
|
-
"
|
|
17
|
+
"pull-request-review",
|
|
18
|
+
"code-reviewer",
|
|
19
|
+
"code-quality",
|
|
20
|
+
"review",
|
|
21
|
+
"automation",
|
|
22
|
+
"llm",
|
|
23
|
+
"subagents",
|
|
24
|
+
"parallel",
|
|
25
|
+
"multi-agent",
|
|
26
|
+
"developer-tools"
|
|
11
27
|
],
|
|
12
28
|
"license": "MIT",
|
|
13
29
|
"repository": {
|