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.
@@ -0,0 +1,2 @@
1
+ *
2
+ !.gitignore
@@ -0,0 +1,5 @@
1
+ {
2
+ "packages": [
3
+ "npm:pi-pr-review"
4
+ ]
5
+ }
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # pi-pr-review
2
2
 
3
- A model-agnostic GitHub pull-request review prompt for [pi](https://pi.dev).
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 straight from the public repo (user scope):
24
+ Install the published npm package in user scope:
25
25
 
26
26
  ```bash
27
- pi install git:github.com/10ego/pi-pr-review
27
+ pi install npm:pi-pr-review
28
28
  ```
29
29
 
30
- Or project scope (shareable with your team, auto-installed on trust):
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 git:github.com/10ego/pi-pr-review
33
+ pi install -l npm:pi-pr-review
34
34
  ```
35
35
 
36
- You can also install from a local checkout by pointing at the package directory, e.g. `pi install ./pi-pr-review` (add `-l` for project scope).
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.0",
4
- "description": "Model-agnostic GitHub PR code review prompt for pi. Pass a PR number; it derives the base and head branches from the PR in the current repo, reviews the diff, and returns structured JSON findings.",
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
- "prompt-template"
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": {