@mzwing/pi-permission-auto-review 0.3.1 → 0.3.3
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/dist/index.d.ts +1 -2
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -35,9 +35,9 @@ pi install npm:@gotgenes/pi-permission-system # dependency
|
|
|
35
35
|
pi install npm:@mzwing/pi-permission-auto-review
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
Pi 0.84.2+ (0.84.x and 0.85.x) and `@gotgenes/pi-permission-system` 27.x
|
|
38
|
+
Pi 0.84.2+ (0.84.x and 0.85.x) and `@gotgenes/pi-permission-system` 27.x - 32.x are required.
|
|
39
39
|
|
|
40
|
-
The authorizer registers itself against the service keyed by its own session id, so a subagent's reviewer lands in
|
|
40
|
+
The authorizer registers itself against the service keyed by its own session id, so a subagent's reviewer lands in its own node. A node that relays its asks to a live parent session runs no chain of its own, and the parent session's reviewer decides for it.
|
|
41
41
|
|
|
42
42
|
## Enable
|
|
43
43
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|
|
2
2
|
//#region src/index.d.ts
|
|
3
|
-
|
|
3
|
+
export default function permissionAutoReviewExtension(pi: ExtensionAPI): void;
|
|
4
4
|
//#endregion
|
|
5
|
-
export { permissionAutoReviewExtension as default };
|
|
6
5
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mzwing/pi-permission-auto-review",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Codex-style automatic approval reviews for @gotgenes/pi-permission-system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authorizer",
|
|
@@ -48,21 +48,21 @@
|
|
|
48
48
|
"registry": "https://registry.npmjs.org/"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"zod": "4.5
|
|
51
|
+
"zod": "4.6.5"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@earendil-works/pi-ai": "0.
|
|
55
|
-
"@earendil-works/pi-coding-agent": "0.
|
|
56
|
-
"@gotgenes/pi-permission-system": "
|
|
57
|
-
"@types/node": "26.
|
|
58
|
-
"tsdown": "0.
|
|
54
|
+
"@earendil-works/pi-ai": "0.85.1",
|
|
55
|
+
"@earendil-works/pi-coding-agent": "0.85.1",
|
|
56
|
+
"@gotgenes/pi-permission-system": "32.1.0",
|
|
57
|
+
"@types/node": "26.6.1",
|
|
58
|
+
"tsdown": "0.23.0",
|
|
59
59
|
"typescript": "7.0.2",
|
|
60
|
-
"vitest": "
|
|
60
|
+
"vitest": "5.0.1"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"@earendil-works/pi-ai": "^0.84.2 || ^0.85.0",
|
|
64
64
|
"@earendil-works/pi-coding-agent": "^0.84.2 || ^0.85.0",
|
|
65
|
-
"@gotgenes/pi-permission-system": "^27.0.0 || ^28.0.0 || ^29.0.0"
|
|
65
|
+
"@gotgenes/pi-permission-system": "^27.0.0 || ^28.0.0 || ^29.0.0 || ^30.0.0 || ^31.0.0 || ^32.0.0"
|
|
66
66
|
},
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=24"
|