@diegopetrucci/pi-extensions 0.1.31 → 0.1.32
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 +4 -1
- package/extensions/review/LICENSE +201 -0
- package/extensions/review/README.md +38 -0
- package/extensions/review/index.ts +2095 -0
- package/extensions/review/package.json +29 -0
- package/package.json +3 -2
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@diegopetrucci/pi-review",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A standalone pi extension that adds /review and /end-review commands adapted from mitsuhiko/agent-stuff.",
|
|
5
|
+
"keywords": ["pi-package", "pi", "review", "code-review", "git", "github"],
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/diegopetrucci/pi-extensions.git",
|
|
10
|
+
"directory": "extensions/review"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"index.ts",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"pi": {
|
|
21
|
+
"extensions": [
|
|
22
|
+
"index.ts"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
27
|
+
"@earendil-works/pi-tui": "*"
|
|
28
|
+
}
|
|
29
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diegopetrucci/pi-extensions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"description": "A collection of pi extensions for context management, workflow audits, review-comment triage, notifications, safety guards, GitHub research, repo-local knowledge, todos, tool rendering, and model/provider helpers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"terminal",
|
|
9
9
|
"agent"
|
|
10
10
|
],
|
|
11
|
-
"license": "MIT",
|
|
11
|
+
"license": "MIT AND Apache-2.0",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "git+https://github.com/diegopetrucci/pi-extensions.git"
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"./extensions/confirm-destructive/index.ts",
|
|
48
48
|
"./extensions/notify/index.ts",
|
|
49
49
|
"./extensions/openai-fast/index.ts",
|
|
50
|
+
"./extensions/review/index.ts",
|
|
50
51
|
"./extensions/todo/index.ts",
|
|
51
52
|
"./extensions/triage-comments/index.ts"
|
|
52
53
|
],
|