@trashcodermaker/pi-pr-review-handler 1.1.0 → 1.1.2
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 +2 -2
- package/package.json +1 -1
- package/skills/pr-review-handler/SKILL.md +1 -1
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.
|
|
3
|
+
"version": "1.1.2",
|
|
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 |
|
|
44
|
+
| Pi | inline fallback (no native subtask mechanism) |
|
|
45
45
|
| Claude Code | Task tool |
|
|
46
46
|
| Cursor | background agent |
|
|
47
47
|
| Gemini CLI / OpenCode / others | native subtask mechanism if available |
|