@trashcodermaker/pi-pr-review-handler 1.1.0 → 1.1.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 CHANGED
@@ -34,13 +34,13 @@ Checkpoints pause for confirmation after triage verdicts and before posting repl
34
34
  This is the Pi-scoped package. If you use Claude Code, Cursor, Gemini CLI, OpenCode, or another harness, install the generic package instead:
35
35
 
36
36
  ```bash
37
- npm install pr-review-handler
37
+ npm install @trashcodermaker/pr-review-handler
38
38
  ```
39
39
 
40
40
  Or grab the skill directly:
41
41
 
42
42
  ```bash
43
- npx skills add JI4JUN/pr-review-handler
43
+ npx skills add JI4JUN/pr-review-handler --skill pr-review-handler
44
44
  ```
45
45
 
46
46
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trashcodermaker/pi-pr-review-handler",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Systematically process GitHub PR review comments: triage for validity, fix code, and post replies. Pi package — install with `pi install npm:@trashcodermaker/pi-pr-review-handler`.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -41,7 +41,7 @@ Agent specs live in `agents/` relative to this skill (`agents/triage-agent.md`,
41
41
 
42
42
  | Platform | Dispatch mechanism |
43
43
  |----------|-------------------|
44
- | Pi | `subagent` tool (fresh context per thread) |
44
+ | Pi | inline fallback (Pi has no native subagent mechanism). Recommend installing the [`pi-subagents`](https://github.com/nicobailon/pi-subagents) extension (`pi install npm:pi-subagents`) to gain a `subagent` tool with fresh-context dispatch per thread. |
45
45
  | Claude Code | Task tool |
46
46
  | Cursor | background agent |
47
47
  | Gemini CLI / OpenCode / others | native subtask mechanism if available |